Class Phase

  • All Implemented Interfaces:
    Comparable<ComparableMeasurement>, ComparableMeasurement, ObservedMeasurement<Phase>, TimeStamped

    public class Phase
    extends AbstractMeasurement<Phase>
    Class modeling a phase measurement from a ground station.

    The measurement is considered to be a signal emitted from a spacecraft and received on a ground station. Its value is the number of cycles between emission and reception. The motion of both the station and the spacecraft during the signal flight time are taken into account. The date of the measurement corresponds to the reception on ground of the emitted signal.

    Since:
    9.2
    Author:
    Thierry Ceolin, Luc Maisonobe, Maxime Journot
    • Constructor Detail

      • Phase

        @Deprecated
        public Phase​(GroundStation station,
                     AbsoluteDate date,
                     double phase,
                     double wavelength,
                     double sigma,
                     double baseWeight)
        Simple constructor.

        This constructor uses 0 as the index of the propagator related to this measurement, thus being well suited for mono-satellite orbit determination.

        Parameters:
        station - ground station from which measurement is performed
        date - date of the measurement
        phase - observed value
        wavelength - phase observed value wavelength
        sigma - theoretical standard deviation
        baseWeight - base weight
      • Phase

        @Deprecated
        public Phase​(GroundStation station,
                     AbsoluteDate date,
                     double phase,
                     double wavelength,
                     double sigma,
                     double baseWeight,
                     int propagatorIndex)
        Simple constructor.
        Parameters:
        station - ground station from which measurement is performed
        date - date of the measurement
        phase - observed value
        wavelength - phase observed value wavelength
        sigma - theoretical standard deviation
        baseWeight - base weight
        propagatorIndex - index of the propagator related to this measurement
      • Phase

        public Phase​(GroundStation station,
                     AbsoluteDate date,
                     double phase,
                     double wavelength,
                     double sigma,
                     double baseWeight,
                     ObservableSatellite satellite)
        Simple constructor.
        Parameters:
        station - ground station from which measurement is performed
        date - date of the measurement
        phase - observed value
        wavelength - phase observed value wavelength
        sigma - theoretical standard deviation
        baseWeight - base weight
        satellite - satellite related to this measurement
        Since:
        9.3