Uses of Class
org.orekit.estimation.sequential.MeasurementDecorator
-
Packages that use MeasurementDecorator Package Description org.orekit.estimation.sequential 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 MeasurementDecorator Modifier and Type Method Description static 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 MeasurementDecorator Modifier and Type Method Description protected 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 MeasurementDecorator Modifier and Type Method Description NonLinearEvolutionKalmanModel. getEvolution(double previousTime, RealVector previousState, MeasurementDecorator measurement)NonLinearEvolutionSemiAnalyticalKalmanModel. getEvolution(double previousTime, RealVector previousState, MeasurementDecorator measurement)UnscentedEvolutionSemiAnalyticalUnscentedKalmanModel. getEvolution(double previousTime, RealVector[] sigmaPoints, MeasurementDecorator measurement)UnscentedEvolutionUnscentedKalmanModel. getEvolution(double previousTime, RealVector[] sigmaPoints, MeasurementDecorator measurement)RealVectorKalmanModel. getInnovation(MeasurementDecorator measurement, NonLinearEvolution evolution, RealMatrix innovationCovarianceMatrix)RealVectorSemiAnalyticalKalmanModel. getInnovation(MeasurementDecorator measurement, NonLinearEvolution evolution, RealMatrix innovationCovarianceMatrix)RealVectorSemiAnalyticalUnscentedKalmanModel. getInnovation(MeasurementDecorator measurement, RealVector predictedMeas, RealVector predictedState, RealMatrix innovationCovarianceMatrix)RealVectorUnscentedKalmanModel. getInnovation(MeasurementDecorator measurement, RealVector predictedMeas, RealVector predictedState, RealMatrix innovationCovarianceMatrix)RealVector[]SemiAnalyticalUnscentedKalmanModel. getPredictedMeasurements(RealVector[] predictedSigmaPoints, MeasurementDecorator measurement)RealVector[]UnscentedKalmanModel. getPredictedMeasurements(RealVector[] predictedSigmaPoints, MeasurementDecorator measurement)RealMatrixSemiAnalyticalUnscentedKalmanModel. getProcessNoiseMatrix(double previousTime, RealVector predictedState, MeasurementDecorator measurement)RealMatrixUnscentedKalmanModel. getProcessNoiseMatrix(double previousTime, RealVector predictedState, MeasurementDecorator measurement)Method parameters in org.orekit.estimation.sequential with type arguments of type MeasurementDecorator Modifier and Type Method Description DSSTPropagatorSemiAnalyticalKalmanModel. processMeasurements(List<ObservedMeasurement<?>> observedMeasurements, ExtendedKalmanFilter<MeasurementDecorator> filter)Process a single measurement.DSSTPropagatorSemiAnalyticalUnscentedKalmanModel. processMeasurements(List<ObservedMeasurement<?>> observedMeasurements, UnscentedKalmanFilter<MeasurementDecorator> filter)Process measurements.Constructor parameters in org.orekit.estimation.sequential with type arguments of type MeasurementDecorator Constructor Description SemiAnalyticalMeasurementHandler(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.
-