Class AemParser
java.lang.Object
org.orekit.files.ccsds.utils.parsing.AbstractMessageParser<Aem>
org.orekit.files.ccsds.utils.parsing.AbstractConstituentParser<AdmHeader,Aem,AemParser>
org.orekit.files.ccsds.ndm.adm.AdmParser<Aem,AemParser>
org.orekit.files.ccsds.ndm.adm.aem.AemParser
- All Implemented Interfaces:
MessageParser<Aem>,AttitudeEphemerisFileParser<Aem>
A parser for the CCSDS AEM (Attitude Ephemeris Message).
Note than starting with Orekit 11.0, CCSDS message parsers are
mutable objects that gather the data being parsed, until the
message is complete and the parseMessage method has returned. This implies that parsers
should not be used in a multi-thread context. The recommended
way to use parsers is to either dedicate one parser for each message
and drop it afterwards, or to use a single-thread loop.
- Since:
- 10.2
- Author:
- Bryan Cazabonne
-
Constructor Summary
ConstructorsConstructorDescriptionAemParser(IERSConventions conventions, boolean simpleEOP, DataContext dataContext, AbsoluteDate missionReferenceDate, int defaultInterpolationDegree, ParsedUnitsBehavior parsedUnitsBehavior, Function<ParseToken, List<ParseToken>>[] filters, CcsdsFrameMapper frameMapper) Complete constructor. -
Method Summary
Modifier and TypeMethodDescriptionbuild()Build the file from parsed entries.booleanFinalize data after parsing.booleanFinalize header after parsing.booleanFinalize metadata after parsing.Get file header to fill.booleaninData()Acknowledge data parsing has started.booleaninHeader()Acknowledge header parsing has started.booleanAcknowledge metada parsing has started.parse(DataSource source) Parse an attitude ephemeris file from a data source.booleanPrepare data for parsing.booleanPrepare header for parsing.booleanPrepare metadata for parsing.voidreset(FileFormat fileFormat) Reset parser to initial state before parsing.Methods inherited from class org.orekit.files.ccsds.ndm.adm.AdmParser
getMissionReferenceDate, getSpecialXmlElementsBuildersMethods inherited from class org.orekit.files.ccsds.utils.parsing.AbstractConstituentParser
getConventions, getDataContext, getFrameMapper, getParsedUnitsBehavior, isSimpleEOPMethods inherited from class org.orekit.files.ccsds.utils.parsing.AbstractMessageParser
anticipateNext, getCurrent, getFileFormat, getFormatVersionKey, parseMessage, process, reset, setEndTagSeen, setFallback, wasEndTagSeen
-
Constructor Details
-
AemParser
public AemParser(IERSConventions conventions, boolean simpleEOP, DataContext dataContext, AbsoluteDate missionReferenceDate, int defaultInterpolationDegree, ParsedUnitsBehavior parsedUnitsBehavior, Function<ParseToken, List<ParseToken>>[] filters, CcsdsFrameMapper frameMapper) Complete constructor.Calling this constructor directly is not recommended. Users should rather use
parserBuilder.buildAemParser().- Parameters:
conventions- IERS ConventionssimpleEOP- if true, tidal effects are ignored when interpolating EOPdataContext- used to retrieve frames, time scales, etc.missionReferenceDate- reference date for Mission Elapsed Time or Mission Relative Time time systems (may be null if time system is absolute)defaultInterpolationDegree- default interpolation degreeparsedUnitsBehavior- behavior to adopt for handling parsed unitsfilters- filters to apply to parse tokensframeMapper- for creating an OrekitFrame.- Since:
- 13.1.5
-
-
Method Details
-
parse
Parse an attitude ephemeris file from a data source.- Specified by:
parsein interfaceAttitudeEphemerisFileParser<Aem>- Parameters:
source- source providing the data to parse- Returns:
- a parsed attitude ephemeris file.
-
getHeader
Get file header to fill.- Specified by:
getHeaderin classAbstractConstituentParser<AdmHeader,Aem, AemParser> - Returns:
- file header to fill
-
reset
Reset parser to initial state before parsing.- Specified by:
resetin interfaceMessageParser<Aem>- Parameters:
fileFormat- format of the file ready to be parsed
-
prepareHeader
public boolean prepareHeader()Prepare header for parsing.- Specified by:
prepareHeaderin classAbstractConstituentParser<AdmHeader,Aem, AemParser> - Returns:
- true if parser was able to perform the action
-
inHeader
public boolean inHeader()Acknowledge header parsing has started.- Specified by:
inHeaderin classAbstractConstituentParser<AdmHeader,Aem, AemParser> - Returns:
- true if parser was able to perform the action
-
finalizeHeader
public boolean finalizeHeader()Finalize header after parsing.- Specified by:
finalizeHeaderin classAbstractConstituentParser<AdmHeader,Aem, AemParser> - Returns:
- true if parser was able to perform the action
-
prepareMetadata
public boolean prepareMetadata()Prepare metadata for parsing.- Specified by:
prepareMetadatain classAbstractConstituentParser<AdmHeader,Aem, AemParser> - Returns:
- true if parser was able to perform the action
-
inMetadata
public boolean inMetadata()Acknowledge metada parsing has started.- Specified by:
inMetadatain classAbstractConstituentParser<AdmHeader,Aem, AemParser> - Returns:
- true if parser was able to perform the action
-
finalizeMetadata
public boolean finalizeMetadata()Finalize metadata after parsing.- Specified by:
finalizeMetadatain classAbstractConstituentParser<AdmHeader,Aem, AemParser> - Returns:
- true if parser was able to perform the action
-
prepareData
public boolean prepareData()Prepare data for parsing.- Specified by:
prepareDatain classAbstractConstituentParser<AdmHeader,Aem, AemParser> - Returns:
- true if parser was able to perform the action
-
inData
public boolean inData()Acknowledge data parsing has started.- Specified by:
inDatain classAbstractConstituentParser<AdmHeader,Aem, AemParser> - Returns:
- true if parser was able to perform the action
-
finalizeData
public boolean finalizeData()Finalize data after parsing.- Specified by:
finalizeDatain classAbstractConstituentParser<AdmHeader,Aem, AemParser> - Returns:
- true if parser was able to perform the action
-
build
Build the file from parsed entries.- Specified by:
buildin interfaceMessageParser<Aem>- Returns:
- parsed file
-