Class ObservableSatellite
- java.lang.Object
-
- org.orekit.estimation.measurements.AbstractMeasurementObject
-
- org.orekit.estimation.measurements.ObservableSatellite
-
- All Implemented Interfaces:
MeasurementObject,ParameterDriversProvider
public class ObservableSatellite extends AbstractMeasurementObject
Class modeling a satellite that can be observed.- Since:
- 9.3
- Author:
- Luc Maisonobe
-
-
Field Summary
-
Fields inherited from interface org.orekit.estimation.measurements.MeasurementObject
ACCELERATION_SUFFIX, DRIFT_SUFFIX, OFFSET_SUFFIX
-
-
Constructor Summary
Constructors Constructor Description ObservableSatellite(int propagatorIndex)Simple constructor.ObservableSatellite(int propagatorIndex, String name)Simple constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object other)intgetPropagatorIndex()Get the index of the propagator related to this satellite.inthashCode()-
Methods inherited from class org.orekit.estimation.measurements.AbstractMeasurementObject
addParameterDriver, createEmptyQuadraticClock, extractFieldPVCoordinatesProvider, extractPVCoordinatesProvider, getName, getParametersDrivers, getQuadraticClockModel
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.orekit.estimation.measurements.MeasurementObject
getClockAccelerationDriver, getClockDriftDriver, getClockOffsetDriver, getQuadraticFieldClock
-
Methods inherited from interface org.orekit.utils.ParameterDriversProvider
getNbParametersDriversValue, getParameterDriver, getParameters, getParameters, getParameters, getParameters, getParametersAllValues, getParametersAllValues, isSupported
-
-
-
-
Constructor Detail
-
ObservableSatellite
public ObservableSatellite(int propagatorIndex)
Simple constructor.This constructor builds a default name based on the propagator index.
- Parameters:
propagatorIndex- index of the propagator related to this satellite
-
ObservableSatellite
public ObservableSatellite(int propagatorIndex, String name)Simple constructor.- Parameters:
propagatorIndex- index of the propagator related to this satellitename- satellite name (if null, a default name built from index will be used)- Since:
- 13.0
-
-