Package org.orekit.files.ccsds.ndm.odm
Class UserDefined
java.lang.Object
org.orekit.files.ccsds.section.CommentsContainer
org.orekit.files.ccsds.ndm.odm.UserDefined
- All Implemented Interfaces:
Section
Container for user defined data.
Beware that the Orekit getters and setters all rely on SI units. The parsers
and writers take care of converting these SI units into CCSDS mandatory units.
The Unit class provides useful
fromSi and
toSI methods in case the callers
already use CCSDS units instead of the API SI units. The general-purpose
Unit class (without an 's') and the
CCSDS-specific Units class
(with an 's') also provide some predefined units. These predefined units and the
fromSi and
toSI conversion methods are indeed
what the parsers and writers use for the conversions.
- Since:
- 11.0
- Author:
- Luc Maisonobe
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Methods inherited from class org.orekit.files.ccsds.section.CommentsContainer
acceptComments, addComment, checkAllowed, checkNotNaN, checkNotNegative, checkNotNull, getComments, refuseFurtherComments, setComments, validate
-
Field Details
-
USER_DEFINED_XML_TAG
Tag name for user defined parameters keys.- See Also:
-
USER_DEFINED_XML_ATTRIBUTE
Attribute name for user defined parameters keys.- See Also:
-
USER_DEFINED_PREFIX
Prefix for user defined parameters keys.- See Also:
-
-
Constructor Details
-
UserDefined
public UserDefined()Create an empty data set.
-
-
Method Details
-
getParameters
Get all user defined parameters.The
USER_DEFINED_PREFIXhas been stripped away from the keys.- Returns:
- unmodifiable view of the map containing all user defined parameters
-
addEntry
Add a key/value entry.- Parameters:
key- parameter key, with theUSER_DEFINED_PREFIXstripped awayvalue- parameter value
-