Class PythonScheduler<T extends ObservedMeasurement<T>>
- java.lang.Object
-
- org.orekit.estimation.measurements.generation.PythonScheduler<T>
-
- All Implemented Interfaces:
Scheduler<T>
public class PythonScheduler<T extends ObservedMeasurement<T>> extends Object implements Scheduler<T>
-
-
Constructor Summary
Constructors Constructor Description PythonScheduler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
finalize()
Part of JCC Python interface to objectSortedSet<T>
generate(List<OrekitStepInterpolator> interpolators)
Generate a sequence of measurements.void
init(AbsoluteDate start, AbsoluteDate end)
Initialize scheduler at the start of a measurements generation.void
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
-
init
public void init(AbsoluteDate start, AbsoluteDate end)
Initialize scheduler at the start of a measurements generation.This method is called once at the start of the measurements generation. It may be used by the scheduler to initialize some internal data if needed, typically
initializing builders
.- Specified by:
init
in interfaceScheduler<T extends ObservedMeasurement<T>>
- Parameters:
start
- start of the measurements time spanend
- end of the measurements time span
-
generate
public SortedSet<T> generate(List<OrekitStepInterpolator> interpolators)
Generate a sequence of measurements.- Specified by:
generate
in interfaceScheduler<T extends ObservedMeasurement<T>>
- Parameters:
interpolators
- interpolators for spacecraft states- Returns:
- generated measurements
-
-