Package org.orekit.files.ilrs
Class CPF.CPFCoordinate
- java.lang.Object
-
- org.orekit.utils.PVCoordinates
-
- org.orekit.utils.TimeStampedPVCoordinates
-
- org.orekit.files.ilrs.CPF.CPFCoordinate
-
- All Implemented Interfaces:
Serializable
,Blendable<PVCoordinates>
,TimeShiftable<PVCoordinates>
,TimeStamped
- Enclosing class:
- CPF
public static class CPF.CPFCoordinate extends TimeStampedPVCoordinates
A single record of position and possibility velocity in an SP3 file.- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class org.orekit.utils.PVCoordinates
ZERO
-
-
Constructor Summary
Constructors Constructor Description CPFCoordinate(AbsoluteDate date, Vector3D position, int leap)
Constructor with null velocity vector.CPFCoordinate(AbsoluteDate date, Vector3D position, Vector3D velocity, int leap)
Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getLeap()
Get the leap second flag (= 0 or the value of the new leap second).-
Methods inherited from class org.orekit.utils.TimeStampedPVCoordinates
getDate, shiftedBy, toString, toString, toTaylorProvider
-
Methods inherited from class org.orekit.utils.PVCoordinates
blendArithmeticallyWith, crossProduct, estimateVelocity, getAcceleration, getAngularVelocity, getMomentum, getPosition, getVelocity, negate, normalize, positionShiftedBy, toDerivativeStructurePV, toDerivativeStructureVector, toUnivariateDerivative1PV, toUnivariateDerivative1Vector, toUnivariateDerivative2PV, toUnivariateDerivative2Vector
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.orekit.time.TimeStamped
durationFrom
-
-
-
-
Constructor Detail
-
CPFCoordinate
public CPFCoordinate(AbsoluteDate date, Vector3D position, int leap)
Constructor with null velocity vector.- Parameters:
date
- date of coordinates validityposition
- position vectorleap
- leap second flag (= 0 or the value of the new leap second)
-
CPFCoordinate
public CPFCoordinate(AbsoluteDate date, Vector3D position, Vector3D velocity, int leap)
Constructor.- Parameters:
date
- date of coordinates validityposition
- position vectorvelocity
- velocity vectorleap
- leap second flag (= 0 or the value of the new leap second)
-
-