Interface EstimationsProvider
public interface EstimationsProvider
Interface for retrieving estimated measurements during orbit determination.
Implementations of this interface are provided by the orbit
determination engine to user so they can monitor
the orbit determination process.
- Since:
- 8.0
- Author:
- Luc Maisonobe
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptiongetEstimatedMeasurement(int index) Get one estimated measurement.intGet the number of evaluations available.
-
Method Details
-
getNumber
int getNumber()Get the number of evaluations available.- Returns:
- number of evaluations available
-
getEstimatedMeasurement
Get one estimated measurement.- Parameters:
index- index of the estimated measurement, must be between 0 andgetNumber()- 1, chronologically sorted- Returns:
- estimated measurement at specified index
-