Class PythonMeasurementFilter<T extends ObservedMeasurement<T>>
- java.lang.Object
-
- org.orekit.estimation.measurements.filtering.PythonMeasurementFilter<T>
-
- Type Parameters:
T
- the type of the measurement
- All Implemented Interfaces:
MeasurementFilter<T>
public class PythonMeasurementFilter<T extends ObservedMeasurement<T>> extends Object implements MeasurementFilter<T>
Interface for measurement pre-processing filter.Pre-processing filters are used to disabled measurements before they are used during an orbit determination process. Example of pre-processing filters are:
- Minimum satellite elevation
- Minimum value of the signal-to-noise ratio
- Measurement residual
- Since:
- 10.2
- Author:
- Bryan Cazabonne, David Soulard
-
-
Constructor Summary
Constructors Constructor Description PythonMeasurementFilter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
filter(ObservedMeasurement<T> measurement, SpacecraftState state)
Apply a filter to an observed measurement.void
finalize()
Part of JCC Python interface to objectvoid
pythonDecRef()
Part of JCC Python interface to objectlong
pythonExtension()
Part of JCC Python interface to objectvoid
pythonExtension(long pythonObject)
Part of JCC Python interface to object
-
-
-
Method Detail
-
pythonExtension
public void pythonExtension(long pythonObject)
Part of JCC Python interface to object
-
pythonExtension
public long pythonExtension()
Part of JCC Python interface to object
-
finalize
public void finalize() throws Throwable
Part of JCC Python interface to object
-
pythonDecRef
public void pythonDecRef()
Part of JCC Python interface to object
-
filter
public void filter(ObservedMeasurement<T> measurement, SpacecraftState state)
Apply a filter to an observed measurement.If the observed measurement is rejected by the filter, the method
ObservedMeasurement.isEnabled()
will returnfalse
.- Specified by:
filter
in interfaceMeasurementFilter<T extends ObservedMeasurement<T>>
- Parameters:
measurement
- observed measurementstate
- current spacecraft state.
-
-