Class ObservationData
- java.lang.Object
-
- org.orekit.files.rinex.observation.ObservationData
-
public class ObservationData extends Object
Observation Data.- Since:
- 9.2
-
-
Constructor Summary
Constructors Constructor Description ObservationData(ObservationType observationType, double value, int lli, int signalStrength)Simple constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetLossOfLockIndicator()Get the Loss of Lock Indicator.ObservationTypegetObservationType()Get the observation type.intgetSignalStrength()Get the signal strength.doublegetValue()Get the observed value.
-
-
-
Constructor Detail
-
ObservationData
public ObservationData(ObservationType observationType, double value, int lli, int signalStrength)
Simple constructor.- Parameters:
observationType- observation typevalue- observed value (may beDouble.NaNif observation not available)lli- Loss of Lock IndicatorsignalStrength- signal strength
-
-
Method Detail
-
getObservationType
public ObservationType getObservationType()
Get the observation type.- Returns:
- observation type
-
getValue
public double getValue()
Get the observed value.- Returns:
- observed value (may be
Double.NaNif observation not available)
-
getLossOfLockIndicator
public int getLossOfLockIndicator()
Get the Loss of Lock Indicator.- Returns:
- Loss of Lock Indicator
-
getSignalStrength
public int getSignalStrength()
Get the signal strength.- Returns:
- signal strength
-
-