Package org.orekit.estimation.sequential
Class EskfMeasurementHandler
- java.lang.Object
-
- org.orekit.estimation.sequential.EskfMeasurementHandler
-
- All Implemented Interfaces:
OrekitStepHandler
@Deprecated public class EskfMeasurementHandler extends Object implements OrekitStepHandler
Deprecated.- Since:
- 11.1
- Author:
- Julie Bayard, Bryan Cazabonne, Maxime Journot
-
-
Constructor Summary
Constructors Constructor Description EskfMeasurementHandler(SemiAnalyticalKalmanModel model, ExtendedKalmanFilter<MeasurementDecorator> filter, List<ObservedMeasurement<?>> observedMeasurements, AbsoluteDate referenceDate)
Deprecated.Simple constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description void
handleStep(OrekitStepInterpolator interpolator)
Deprecated.Handle the current step.void
init(SpacecraftState s0, AbsoluteDate t)
Deprecated.Initialize step handler at the start of a propagation.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.orekit.propagation.sampling.OrekitStepHandler
finish
-
-
-
-
Constructor Detail
-
EskfMeasurementHandler
public EskfMeasurementHandler(SemiAnalyticalKalmanModel model, ExtendedKalmanFilter<MeasurementDecorator> filter, List<ObservedMeasurement<?>> observedMeasurements, AbsoluteDate referenceDate)
Deprecated.Simple constructor.- Parameters:
model
- semi-analytical kalman modelfilter
- kalman filter instanceobservedMeasurements
- list of observed measurementsreferenceDate
- reference date
-
-
Method Detail
-
init
public void init(SpacecraftState s0, AbsoluteDate t)
Deprecated.Initialize step handler at the start of a propagation.This method is called once at the start of the propagation. It may be used by the step handler to initialize some internal data if needed.
The default method does nothing
- Specified by:
init
in interfaceOrekitStepHandler
- Parameters:
s0
- initial statet
- target time for the integration
-
handleStep
public void handleStep(OrekitStepInterpolator interpolator)
Deprecated.Handle the current step.- Specified by:
handleStep
in interfaceOrekitStepHandler
- Parameters:
interpolator
- interpolator set up for the current step
-
-