Package org.orekit.files.ccsds.ndm.cdm
Enum Class ODParametersKey
- All Implemented Interfaces:
Serializable,Comparable<ODParametersKey>,Constable
Keys for
CDM OD parameters entries.- Since:
- 11.2
- Author:
- Melina Vanel
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionBased on the observations available and the RECOMMENDED_OD_SPAN, the actual time span used for the OD of the object.Comment entry.The number of observations available for the OD of the object.The number of observations accepted for the OD of the object.The epoch of the orbit determination used for this message (UTC).The recommended OD time span calculated for the object.The percentage of residuals accepted in the OD of the object (from 0 to 100).The start of a time interval (UTC) that contains the time of the last accepted observation.The start of a time interval (UTC) that contains the time of the last accepted observation.The number of sensor tracks available for the OD of the object.The number of sensor tracks accepted for the OD of the object.The weighted Root Mean Square (RMS) of the residuals from a batch least squares OD. -
Method Summary
Modifier and TypeMethodDescriptionbooleanprocess(ParseToken token, ContextBinding context, ODParameters container) Process one token.static ODParametersKeyReturns the enum constant of this class with the specified name.static ODParametersKey[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
COMMENT
Comment entry. -
TIME_LASTOB_START
The start of a time interval (UTC) that contains the time of the last accepted observation. -
TIME_LASTOB_END
The start of a time interval (UTC) that contains the time of the last accepted observation. -
RECOMMENDED_OD_SPAN
The recommended OD time span calculated for the object. -
ACTUAL_OD_SPAN
Based on the observations available and the RECOMMENDED_OD_SPAN, the actual time span used for the OD of the object. -
OBS_AVAILABLE
The number of observations available for the OD of the object. -
OBS_USED
The number of observations accepted for the OD of the object. -
TRACKS_AVAILABLE
The number of sensor tracks available for the OD of the object. -
TRACKS_USED
The number of sensor tracks accepted for the OD of the object. -
RESIDUALS_ACCEPTED
The percentage of residuals accepted in the OD of the object (from 0 to 100). -
WEIGHTED_RMS
The weighted Root Mean Square (RMS) of the residuals from a batch least squares OD. -
OD_EPOCH
The epoch of the orbit determination used for this message (UTC).
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-
process
Process one token.- Parameters:
token- token to processcontext- context bindingcontainer- container to fill- Returns:
- true of token was accepted
-