Package org.orekit.utils
Interface BoundedPVCoordinatesProvider
-
- All Superinterfaces:
PVCoordinatesProvider
- All Known Subinterfaces:
BoundedPropagator
- All Known Implementing Classes:
AggregateBoundedPropagator,Ephemeris,EphemerisSegmentPropagator,IntegratedEphemeris
public interface BoundedPVCoordinatesProvider extends PVCoordinatesProvider
Interface for bounded PV coordinates providers.- Since:
- 13.1
- Author:
- Romain Serra
- See Also:
PVCoordinatesProvider
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description AbsoluteDategetMaxDate()Get the last date of the range.AbsoluteDategetMinDate()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 Detail
-
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
static BoundedPVCoordinatesProvider of(PVCoordinatesProvider provider, TimeInterval interval)
Bound a given coordinates provider.- Parameters:
interval- time intervalprovider- input provider- Returns:
- bounded provider
-
-