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 int
getLossOfLockIndicator()
Get the Loss of Lock Indicator.ObservationType
getObservationType()
Get the observation type.int
getSignalStrength()
Get the signal strength.double
getValue()
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.NaN
if 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.NaN
if 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
-
-