Class AemData
- java.lang.Object
-
- org.orekit.files.ccsds.section.CommentsContainer
-
- org.orekit.files.ccsds.ndm.adm.aem.AemData
-
public class AemData extends CommentsContainer implements Data
The Attitude Ephemerides data blocks class contain list of attitude data points.- Author:
- Bryan Cazabonne
-
-
Constructor Summary
Constructors Constructor Description AemData()
Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
addData(TimeStampedAngularCoordinates data)
Add a data point.List<TimeStampedAngularCoordinates>
getAngularCoordinates()
Get an unmodifiable view of the data points.-
Methods inherited from class org.orekit.files.ccsds.section.CommentsContainer
acceptComments, addComment, checkAllowed, checkNotNaN, checkNotNegative, checkNotNull, getComments, refuseFurtherComments, validate
-
-
-
-
Method Detail
-
addData
public boolean addData(TimeStampedAngularCoordinates data)
Add a data point.- Parameters:
data
- data point to add- Returns:
- always return
true
-
getAngularCoordinates
public List<TimeStampedAngularCoordinates> getAngularCoordinates()
Get an unmodifiable view of the data points.- Returns:
- unmodifiable view of the data points
-
-