Class CombinedObservationData
- java.lang.Object
-
- org.orekit.estimation.measurements.gnss.CombinedObservationData
-
public class CombinedObservationData extends Object
Combined observation data.- Since:
- 10.1
- Author:
- Bryan Cazabonne
-
-
Constructor Summary
Constructors Constructor Description CombinedObservationData(double combinedValue, double combinedFrequency, CombinationType combinationType, MeasurementType measurementType, List<ObservationData> usedData)Constructor.CombinedObservationData(CombinationType combinationType, MeasurementType measurementType, double combinedValue, double combinedFrequencyMHz, List<ObservationData> usedData)Deprecated.as of 12.1, replaced byCombinedObservationData(double, double, CombinationType, MeasurementType, List)
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description CombinationTypegetCombinationType()Get the type of the combination of measurements used to build the instance.doublegetCombinedFrequency()Get the value of the combined frequency in MHz.doublegetCombinedMHzFrequency()Deprecated.as of 12.1, replaced bygetCombinedFrequency()MeasurementTypegetMeasurementType()Get the measurement type.List<ObservationData>getUsedObservationData()Get the list of observation data used to perform the combination of measurements.doublegetValue()Get the combined observed value.
-
-
-
Constructor Detail
-
CombinedObservationData
@Deprecated public CombinedObservationData(CombinationType combinationType, MeasurementType measurementType, double combinedValue, double combinedFrequencyMHz, List<ObservationData> usedData)
Deprecated.as of 12.1, replaced byCombinedObservationData(double, double, CombinationType, MeasurementType, List)Constructor.- Parameters:
combinationType- combination of measurements used to build the combined observation datameasurementType- measurement type used for the combination of measurementcombinedValue- combined observed value (may beDouble.NaNif combined observation not available)combinedFrequencyMHz- frequency of the combined observation data in MHz (may beDouble.NaNif combined frequency is not available)usedData- observation data used to perform the combination of measurements
-
CombinedObservationData
public CombinedObservationData(double combinedValue, double combinedFrequency, CombinationType combinationType, MeasurementType measurementType, List<ObservationData> usedData)Constructor.- Parameters:
combinedValue- combined observed value (may beDouble.NaNif combined observation not available)combinedFrequency- frequency of the combined observation data in Hz (may beDouble.NaNif combined frequency is not available)combinationType- combination of measurements used to build the combined observation datameasurementType- measurement type used for the combination of measurementusedData- observation data used to perform the combination of measurements- Since:
- 12.1
-
-
Method Detail
-
getValue
public double getValue()
Get the combined observed value.- Returns:
- observed value (may be
Double.NaNif observation not available)
-
getCombinedFrequency
public double getCombinedFrequency()
Get the value of the combined frequency in MHz.For the single frequency combinations, this method returns the common frequency of both measurements.
- Returns:
- value of the combined frequency in Hz
- Since:
- 12.1
-
getCombinedMHzFrequency
@Deprecated public double getCombinedMHzFrequency()
Deprecated.as of 12.1, replaced bygetCombinedFrequency()Get the value of the combined frequency in MHz.For the single frequency combinations, this method returns the common frequency of both measurements.
- Returns:
- value of the combined frequency in MHz
-
getCombinationType
public CombinationType getCombinationType()
Get the type of the combination of measurements used to build the instance.- Returns:
- the combination of measurements type
-
getMeasurementType
public MeasurementType getMeasurementType()
Get the measurement type.- Returns:
- measurement type
-
getUsedObservationData
public List<ObservationData> getUsedObservationData()
Get the list of observation data used to perform the combination of measurements.- Returns:
- a list of observation data
-
-