Package org.orekit.bodies
Interface JPLEphemeridesLoader.RawPVProvider
-
- Enclosing class:
- JPLEphemeridesLoader
public static interface JPLEphemeridesLoader.RawPVProvider
Interface for raw position-velocity retrieval.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PVCoordinates
getRawPV(AbsoluteDate date)
Get the position-velocity at date.<T extends org.hipparchus.RealFieldElement<T>>
FieldPVCoordinates<T>getRawPV(FieldAbsoluteDate<T> date)
Get the position-velocity at date.
-
-
-
Method Detail
-
getRawPV
PVCoordinates getRawPV(AbsoluteDate date)
Get the position-velocity at date.- Parameters:
date
- date at which the position-velocity is desired- Returns:
- position-velocity at the specified date
-
getRawPV
<T extends org.hipparchus.RealFieldElement<T>> FieldPVCoordinates<T> getRawPV(FieldAbsoluteDate<T> date)
Get the position-velocity at date.- Type Parameters:
T
- type of the field elements- Parameters:
date
- date at which the position-velocity is desired- Returns:
- position-velocity at the specified date
-
-