Class OrekitCcsdsFrameMapper
- java.lang.Object
-
- org.orekit.files.ccsds.definitions.OrekitCcsdsFrameMapper
-
- All Implemented Interfaces:
CcsdsFrameMapper
public class OrekitCcsdsFrameMapper extends Object implements CcsdsFrameMapper
Orekit's default implementation ofCcsdsFrameMapper.- Since:
- 14.0
- Author:
- Evan M. Ward
-
-
Constructor Summary
Constructors Constructor Description OrekitCcsdsFrameMapper()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description FramebuildCcsdsFrame(BodyFacade center, FrameFacade orientation, AbsoluteDate frameEpoch)Create an OrekitFramefrom the center, alignment, and epoch specified in a CCSDS NDM.FramebuildCcsdsFrame(FrameFacade orientation, AbsoluteDate frameEpoch)Create an OrekitFramefrom the alignment specified in a CCSDS NDM.booleanequals(Object obj)inthashCode()
-
-
-
Method Detail
-
buildCcsdsFrame
public Frame buildCcsdsFrame(FrameFacade orientation, AbsoluteDate frameEpoch)
Description copied from interface:CcsdsFrameMapperCreate an OrekitFramefrom the alignment specified in a CCSDS NDM.- Specified by:
buildCcsdsFramein interfaceCcsdsFrameMapper- Parameters:
orientation- the attitude of the returned frame.frameEpoch- the epoch of the returned frame, if not intrinsic to the definition of the reference frame. May benullif not specified in the file. Many frames will ignore this value.- Returns:
- a
Framewith the given orientation. Nevernull.
-
buildCcsdsFrame
public Frame buildCcsdsFrame(BodyFacade center, FrameFacade orientation, AbsoluteDate frameEpoch)
Description copied from interface:CcsdsFrameMapperCreate an OrekitFramefrom the center, alignment, and epoch specified in a CCSDS NDM.- Specified by:
buildCcsdsFramein interfaceCcsdsFrameMapper- Parameters:
center- the origin of the returned frame.orientation- the attitude of the returned frame.frameEpoch- the epoch of the returned frame, if not intrinsic to the definition of the reference frame. May benullif not specified in the file. Many frames will ignore this value.- Returns:
- a
Framewith the given center and orientation. Nevernull.
-
-