Class CycleSlipDetectorResults
- java.lang.Object
-
- org.orekit.estimation.measurements.gnss.CycleSlipDetectorResults
-
public class CycleSlipDetectorResults extends Object
This class is used to contains all the data computed within cycle-slip detector. All these parameters are what user can get from the detectors.- Since:
- 10.2
- Author:
- David Soulard
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AbsoluteDate
getBeginDate(Frequency f)
Return the date of validity beginning of the detector.Map<Frequency,List<AbsoluteDate>>
getCycleSlipMap()
Get the cycle slip Map with contains the results.AbsoluteDate
getEndDate(Frequency f)
Return the end date at the given frequency.String
getSatelliteName()
Get the satellite name.
-
-
-
Method Detail
-
getSatelliteName
public String getSatelliteName()
Get the satellite name.- Returns:
- satellite name
-
getEndDate
public AbsoluteDate getEndDate(Frequency f)
Return the end date at the given frequency.For dual-Frequency cycle-slip detector, the
Frequency
contained in the map is the higher frequency (e.g. for L1-L2 the frequency in the map will be L1)- Parameters:
f
- frequency- Returns:
- date of end of validity of the detectors
-
getBeginDate
public AbsoluteDate getBeginDate(Frequency f)
Return the date of validity beginning of the detector.- Parameters:
f
- frequency- Returns:
- AbsoluteDate
-
getCycleSlipMap
public Map<Frequency,List<AbsoluteDate>> getCycleSlipMap()
Get the cycle slip Map with contains the results.For dual-Frequency cycle-slip detector, the
Frequency
contained in the map is the higher frequency (e.g. for L1-L2 the frequency in the map will be L1)- Returns:
- cycle slip map containing the results
-
-