Package org.orekit.utils
Interface BoundedPVCoordinatesProvider
- All Superinterfaces:
PVCoordinatesProvider
- All Known Subinterfaces:
BoundedPropagator
- All Known Implementing Classes:
AggregateBoundedPropagator,Ephemeris,EphemerisSegmentPropagator,IntegratedEphemeris
Interface for bounded PV coordinates providers.
- Since:
- 13.1
- Author:
- Romain Serra
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionGet the last date of the range.Get the first date of the range.static BoundedPVCoordinatesProviderof(PVCoordinatesProvider provider, TimeInterval interval) Bound a given coordinates provider.Methods inherited from interface org.orekit.utils.PVCoordinatesProvider
getPosition, getPVCoordinates, getVelocity
-
Method Details
-
getMinDate
AbsoluteDate getMinDate()Get the first date of the range.- Returns:
- the first date of the range
-
getMaxDate
AbsoluteDate getMaxDate()Get the last date of the range.- Returns:
- the last date of the range
-
of
Bound a given coordinates provider.- Parameters:
provider- input providerinterval- time interval- Returns:
- bounded provider
-