Class PythonInterpolationGrid
- java.lang.Object
-
- org.orekit.propagation.semianalytical.dsst.utilities.PythonInterpolationGrid
-
- All Implemented Interfaces:
InterpolationGrid
public class PythonInterpolationGrid extends Object implements InterpolationGrid
-
-
Field Summary
Fields Modifier and Type Field Description protected long
pythonObject
Part of JCC Python interface to object
-
Constructor Summary
Constructors Constructor Description PythonInterpolationGrid()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
finalize()
double[]
getGridPoints(double stepStart, double stepEnd)
Get grid points that are within the current step.void
pythonDecRef()
long
pythonExtension()
void
pythonExtension(long pythonObject)
-
-
-
Method Detail
-
pythonExtension
public void pythonExtension(long pythonObject)
-
pythonExtension
public long pythonExtension()
-
finalize
public void finalize() throws Throwable
-
pythonDecRef
public void pythonDecRef()
-
getGridPoints
public double[] getGridPoints(double stepStart, double stepEnd)
Description copied from interface:InterpolationGrid
Get grid points that are within the current step.The step is defined by its start and its end time.
- Specified by:
getGridPoints
in interfaceInterpolationGrid
- Parameters:
stepStart
- start of the stepstepEnd
- end of the step- Returns:
- time points between start and end
-
-