Package org.orekit.utils
Interface WaypointPVBuilder.InterpolationFactory
- Enclosing class:
WaypointPVBuilder
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Factory interface, creating the
PVCoordinatesProvider instances between the provided waypoints.-
Method Summary
Modifier and TypeMethodDescriptioncreate(AbsoluteDate date1, GeodeticPoint point1, AbsoluteDate date2, GeodeticPoint point2, OneAxisEllipsoid body) Create aPVCoordinatesProviderwhich interpolates between the provided waypoints.
-
Method Details
-
create
PVCoordinatesProvider create(AbsoluteDate date1, GeodeticPoint point1, AbsoluteDate date2, GeodeticPoint point2, OneAxisEllipsoid body) Create aPVCoordinatesProviderwhich interpolates between the provided waypoints.- Parameters:
date1- the first waypoint's datepoint1- the first waypoint's locationdate2- the second waypoint's datepoint2- the second waypoint's locationbody- the body on which the waypoints are defined- Returns:
- a
PVCoordinatesProviderproviding the locations at times between the waypoints.
-