Class ObservableSatellite
- java.lang.Object
-
- org.orekit.estimation.measurements.ObservableSatellite
-
public class ObservableSatellite extends Object
Class modeling a satellite that can be observed.- Since:
- 9.3
- Author:
- Luc Maisonobe
-
-
Field Summary
Fields Modifier and Type Field Description static String
CLOCK_OFFSET_PREFIX
Prefix for clock offset parameter driver, the propagator index will be appended to it.
-
Constructor Summary
Constructors Constructor Description ObservableSatellite(int propagatorIndex)
Simple constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ParameterDriver
getClockOffsetDriver()
Get the clock offset parameter driver.int
getPropagatorIndex()
Get the index of the propagator related to this satellite.
-
-
-
Field Detail
-
CLOCK_OFFSET_PREFIX
public static final String CLOCK_OFFSET_PREFIX
Prefix for clock offset parameter driver, the propagator index will be appended to it.- See Also:
- Constant Field Values
-
-
Method Detail
-
getPropagatorIndex
public int getPropagatorIndex()
Get the index of the propagator related to this satellite.- Returns:
- index of the propagator related to this satellite
-
getClockOffsetDriver
public ParameterDriver getClockOffsetDriver()
Get the clock offset parameter driver.The offset value is defined as the value in seconds that must be subtracted from the satellite clock reading of time to compute the real physical date. The offset is therefore negative if the satellite clock is slow and positive if it is fast.
- Returns:
- clock offset parameter driver
-
-