Class AemSegment
- java.lang.Object
-
- org.orekit.files.ccsds.section.Segment<AemMetadata,AemData>
-
- org.orekit.files.ccsds.ndm.adm.aem.AemSegment
-
- All Implemented Interfaces:
AttitudeEphemerisFile.AttitudeEphemerisSegment<TimeStampedAngularCoordinates>
public class AemSegment extends Segment<AemMetadata,AemData> implements AttitudeEphemerisFile.AttitudeEphemerisSegment<TimeStampedAngularCoordinates>
This class stores the metadata and data for one attitude segment.- Since:
- 11.0
- Author:
- Luc Maisonobe
-
-
Constructor Summary
Constructors Constructor Description AemSegment(AemMetadata metadata, AemData data)
Simple constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<TimeStampedAngularCoordinates>
getAngularCoordinates()
Get an unmodifiable list of attitude data lines.BoundedAttitudeProvider
getAttitudeProvider()
Get the attitude provider for this attitude ephemeris segment.AngularDerivativesFilter
getAvailableDerivatives()
Get which derivatives of angular data are available in this attitude ephemeris segment.String
getInterpolationMethod()
Get the interpolation method to be used.int
getInterpolationSamples()
Get the number of samples to use in interpolation.Frame
getReferenceFrame()
Get the reference frame from which attitude is defined.AbsoluteDate
getStart()
Get the start date of this ephemeris segment.AbsoluteDate
getStop()
Get the end date of this ephemeris segment.-
Methods inherited from class org.orekit.files.ccsds.section.Segment
getData, getMetadata, setMetadata
-
-
-
-
Constructor Detail
-
AemSegment
public AemSegment(AemMetadata metadata, AemData data)
Simple constructor.- Parameters:
metadata
- segment metadatadata
- segment data
-
-
Method Detail
-
getAngularCoordinates
public List<TimeStampedAngularCoordinates> getAngularCoordinates()
Get an unmodifiable list of attitude data lines.- Specified by:
getAngularCoordinates
in interfaceAttitudeEphemerisFile.AttitudeEphemerisSegment<TimeStampedAngularCoordinates>
- Returns:
- a list of attitude data
-
getReferenceFrame
public Frame getReferenceFrame()
Get the reference frame from which attitude is defined.- Specified by:
getReferenceFrame
in interfaceAttitudeEphemerisFile.AttitudeEphemerisSegment<TimeStampedAngularCoordinates>
- Returns:
- the reference frame from which attitude is defined
-
getStart
public AbsoluteDate getStart()
Get the start date of this ephemeris segment.- Specified by:
getStart
in interfaceAttitudeEphemerisFile.AttitudeEphemerisSegment<TimeStampedAngularCoordinates>
- Returns:
- ephemeris segment start date.
-
getStop
public AbsoluteDate getStop()
Get the end date of this ephemeris segment.- Specified by:
getStop
in interfaceAttitudeEphemerisFile.AttitudeEphemerisSegment<TimeStampedAngularCoordinates>
- Returns:
- ephemeris segment end date.
-
getInterpolationMethod
public String getInterpolationMethod()
Get the interpolation method to be used.- Specified by:
getInterpolationMethod
in interfaceAttitudeEphemerisFile.AttitudeEphemerisSegment<TimeStampedAngularCoordinates>
- Returns:
- the interpolation method
-
getInterpolationSamples
public int getInterpolationSamples()
Get the number of samples to use in interpolation.- Specified by:
getInterpolationSamples
in interfaceAttitudeEphemerisFile.AttitudeEphemerisSegment<TimeStampedAngularCoordinates>
- Returns:
- the number of points to use for interpolation.
-
getAvailableDerivatives
public AngularDerivativesFilter getAvailableDerivatives()
Get which derivatives of angular data are available in this attitude ephemeris segment.- Specified by:
getAvailableDerivatives
in interfaceAttitudeEphemerisFile.AttitudeEphemerisSegment<TimeStampedAngularCoordinates>
- Returns:
- a value indicating if the file contains rotation and/or rotation rate and/or acceleration data.
-
getAttitudeProvider
public BoundedAttitudeProvider getAttitudeProvider()
Get the attitude provider for this attitude ephemeris segment.- Specified by:
getAttitudeProvider
in interfaceAttitudeEphemerisFile.AttitudeEphemerisSegment<TimeStampedAngularCoordinates>
- Returns:
- the attitude provider for this attitude ephemeris segment.
-
-