Class PythonBatchLSObserver
- java.lang.Object
-
- org.orekit.estimation.leastsquares.PythonBatchLSObserver
-
- All Implemented Interfaces:
BatchLSObserver
public class PythonBatchLSObserver extends Object implements BatchLSObserver
-
-
Constructor Summary
Constructors Constructor Description PythonBatchLSObserver()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
evaluationPerformed(int iterationsCount, int evaluationsCount, Orbit[] orbits, ParameterDriversList estimatedOrbitalParameters, ParameterDriversList estimatedPropagatorParameters, ParameterDriversList estimatedMeasurementsParameters, EstimationsProvider evaluationsProvider, LeastSquaresProblem.Evaluation lspEvaluation)
Notification callback for the end of each evaluation.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
-
evaluationPerformed
public void evaluationPerformed(int iterationsCount, int evaluationsCount, Orbit[] orbits, ParameterDriversList estimatedOrbitalParameters, ParameterDriversList estimatedPropagatorParameters, ParameterDriversList estimatedMeasurementsParameters, EstimationsProvider evaluationsProvider, LeastSquaresProblem.Evaluation lspEvaluation)
Notification callback for the end of each evaluation. Extension point for Python.- Specified by:
evaluationPerformed
in interfaceBatchLSObserver
- Parameters:
iterationsCount
- iterations countevaluationsCount
- evaluations countorbits
- current estimated orbitsestimatedOrbitalParameters
- estimated orbital parametersestimatedPropagatorParameters
- estimated propagator parametersestimatedMeasurementsParameters
- estimated measurements parametersevaluationsProvider
- provider for measurements evaluations resulting from the current estimated orbit (this is an unmodifiable view of the current evaluations, its content is changed at each iteration)lspEvaluation
- current evaluation of the underlyingleast squares problem
-
-