Class SmoothedObservationDataSet
- java.lang.Object
-
- org.orekit.estimation.measurements.filtering.SmoothedObservationDataSet
-
public class SmoothedObservationDataSet extends Object
Container used to store smoothed observation data along with the original data set it originates from.- Since:
- 11.2
- Author:
- Louis Aucouturier
-
-
Constructor Summary
Constructors Constructor Description SmoothedObservationDataSet(ObservationData smoothedObsData, ObservationDataSet obsDataSet)Simple constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ObservationDataSetgetDataSet()Get the original observation data set used to compute the smoothed observation data.ObservationDatagetSmoothedData()Get the smoothed observation data.
-
-
-
Constructor Detail
-
SmoothedObservationDataSet
public SmoothedObservationDataSet(ObservationData smoothedObsData, ObservationDataSet obsDataSet)
Simple constructor.- Parameters:
smoothedObsData- smoothed observation dataobsDataSet- original observation data set used to compute the smoothed observation data
-
-
Method Detail
-
getSmoothedData
public ObservationData getSmoothedData()
Get the smoothed observation data.- Returns:
- the smoothed observation data
-
getDataSet
public ObservationDataSet getDataSet()
Get the original observation data set used to compute the smoothed observation data.- Returns:
- the original observation data set used to compute the smoothed observation data
-
-