Uses of Class
org.orekit.estimation.sequential.MeasurementDecorator
Packages that use MeasurementDecorator
Package
Description
The sequential package provides an implementation of a
Kalman Filter engine to perform an orbit determination.
-
Uses of MeasurementDecorator in org.orekit.estimation.sequential
Methods in org.orekit.estimation.sequential that return MeasurementDecoratorModifier and TypeMethodDescriptionstatic MeasurementDecoratorKalmanEstimatorUtil.decorate(ObservedMeasurement<?> observedMeasurement, AbsoluteDate referenceDate) Decorate an observed measurement.static MeasurementDecoratorKalmanEstimatorUtil.decorateUnscented(ObservedMeasurement<?> observedMeasurement, AbsoluteDate referenceDate) Decorate an observed measurement for an Unscented Kalman Filter.Methods in org.orekit.estimation.sequential that return types with arguments of type MeasurementDecoratorModifier and TypeMethodDescriptionprotected abstract KalmanFilter<MeasurementDecorator> AbstractKalmanEstimator.getKalmanFilter()Get the Hipparchus filter.protected KalmanFilter<MeasurementDecorator> KalmanEstimator.getKalmanFilter()Get the Hipparchus filter.protected KalmanFilter<MeasurementDecorator> SemiAnalyticalKalmanEstimator.getKalmanFilter()Get the Hipparchus filter.protected KalmanFilter<MeasurementDecorator> SemiAnalyticalUnscentedKalmanEstimator.getKalmanFilter()Get the Hipparchus filter.protected KalmanFilter<MeasurementDecorator> UnscentedKalmanEstimator.getKalmanFilter()Get the Hipparchus filter.Methods in org.orekit.estimation.sequential with parameters of type MeasurementDecoratorModifier and TypeMethodDescriptionKalmanModel.getEvolution(double previousTime, RealVector previousState, MeasurementDecorator measurement) SemiAnalyticalKalmanModel.getEvolution(double previousTime, RealVector previousState, MeasurementDecorator measurement) SemiAnalyticalUnscentedKalmanModel.getEvolution(double previousTime, RealVector[] sigmaPoints, MeasurementDecorator measurement) UnscentedKalmanModel.getEvolution(double previousTime, RealVector[] sigmaPoints, MeasurementDecorator measurement) KalmanModel.getInnovation(MeasurementDecorator measurement, NonLinearEvolution evolution, RealMatrix innovationCovarianceMatrix) SemiAnalyticalKalmanModel.getInnovation(MeasurementDecorator measurement, NonLinearEvolution evolution, RealMatrix innovationCovarianceMatrix) SemiAnalyticalUnscentedKalmanModel.getInnovation(MeasurementDecorator measurement, RealVector predictedMeas, RealVector predictedState, RealMatrix innovationCovarianceMatrix) UnscentedKalmanModel.getInnovation(MeasurementDecorator measurement, RealVector predictedMeas, RealVector predictedState, RealMatrix innovationCovarianceMatrix) SemiAnalyticalUnscentedKalmanModel.getPredictedMeasurements(RealVector[] predictedSigmaPoints, MeasurementDecorator measurement) UnscentedKalmanModel.getPredictedMeasurements(RealVector[] predictedSigmaPoints, MeasurementDecorator measurement) SemiAnalyticalUnscentedKalmanModel.getProcessNoiseMatrix(double previousTime, RealVector predictedState, MeasurementDecorator measurement) UnscentedKalmanModel.getProcessNoiseMatrix(double previousTime, RealVector predictedState, MeasurementDecorator measurement) Method parameters in org.orekit.estimation.sequential with type arguments of type MeasurementDecoratorModifier and TypeMethodDescriptionSemiAnalyticalKalmanModel.processMeasurements(List<ObservedMeasurement<?>> observedMeasurements, ExtendedKalmanFilter<MeasurementDecorator> filter) Process a single measurement.SemiAnalyticalUnscentedKalmanModel.processMeasurements(List<ObservedMeasurement<?>> observedMeasurements, UnscentedKalmanFilter<MeasurementDecorator> filter) Process measurements.Constructor parameters in org.orekit.estimation.sequential with type arguments of type MeasurementDecoratorModifierConstructorDescriptionSemiAnalyticalMeasurementHandler(SemiAnalyticalProcess model, KalmanFilter<MeasurementDecorator> filter, List<ObservedMeasurement<?>> observedMeasurements, AbsoluteDate referenceDate) Simple constructor.SemiAnalyticalMeasurementHandler(SemiAnalyticalProcess model, KalmanFilter<MeasurementDecorator> filter, List<ObservedMeasurement<?>> observedMeasurements, AbsoluteDate referenceDate, boolean isUnscented) Simple constructor.