C
- type of the Cartesian coordinatespublic static interface EphemerisFile.EphemerisSegment<C extends TimeStampedPVCoordinates>
Segments are typically used to split an ephemeris around discontinuous events such as maneuvers.
EphemerisFile
,
EphemerisFile.SatelliteEphemeris
Modifier and Type | Method and Description |
---|---|
CartesianDerivativesFilter |
getAvailableDerivatives()
Get which derivatives of position are available in this ephemeris segment.
|
List<C> |
getCoordinates()
Get the coordinates for this ephemeris segment in
getFrame() . |
Frame |
getFrame()
Get the reference frame for this ephemeris segment.
|
default Frame |
getInertialFrame()
Get the inertial reference frame for this ephemeris segment.
|
int |
getInterpolationSamples()
Get the number of samples to use in interpolation.
|
double |
getMu()
Get the standard gravitational parameter for the satellite.
|
default BoundedPropagator |
getPropagator()
View this ephemeris segment as a propagator.
|
AbsoluteDate |
getStart()
Get the start date of this ephemeris segment.
|
AbsoluteDate |
getStop()
Get the end date of this ephemeris segment.
|
double getMu()
getPropagator()
, in m³/s².Frame getFrame()
getCoordinates()
.null
.default Frame getInertialFrame()
getPropagator()
.
The default implementation returns getFrame()
if it is inertial.
Otherwise it returns Frame.getRoot()
. Implementors are encouraged to
override this default implementation if a more suitable inertial frame is
available.
Frame.isPseudoInertial()
is true
. May be the same as getFrame()
if it is inertial.int getInterpolationSamples()
CartesianDerivativesFilter getAvailableDerivatives()
While getCoordinates()
always returns position, velocity, and
acceleration the return value from this method indicates which of those are in
the ephemeris file and are actually valid.
List<C> getCoordinates()
getFrame()
.getAvailableDerivatives()
indicates if the velocity or accelerations were
specified in the file. Any position, velocity, or acceleration coordinates that
are not specified in the ephemeris file are zero in the returned values.AbsoluteDate getStart()
The date returned by this method is equivalent to getPropagator().getMinDate()
.
AbsoluteDate getStop()
The date returned by this method is equivalent to getPropagator().getMaxDate()
.
default BoundedPropagator getPropagator()
In order to view the ephemeris for this satellite as a Propagator
several conditions must be met. An Orekit Frame
must be constructable
from the frame specification in the ephemeris file. This condition is met when
getFrame()
return normally. Additionally,
getMu()
must return a valid value. If these conditions are not met an
OrekitException
may be thrown by this method or by one of the methods
of the returned Propagator
.
Each call to this method creates a new propagator.
Copyright © 2002-2022 CS GROUP. All rights reserved.