Package org.orekit.files.ccsds.ndm.cdm
Enum ODParametersKey
- java.lang.Object
-
- java.lang.Enum<ODParametersKey>
-
- org.orekit.files.ccsds.ndm.cdm.ODParametersKey
-
- All Implemented Interfaces:
Serializable
,Comparable<ODParametersKey>
public enum ODParametersKey extends Enum<ODParametersKey>
Keys forCDM OD parameters
entries.- Since:
- 11.2
- Author:
- Melina Vanel
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACTUAL_OD_SPAN
Based on the observations available and the RECOMMENDED_OD_SPAN, the actual time span used for the OD of the object.COMMENT
Comment entry.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.OD_EPOCH
The epoch of the orbit determination used for this message (UTC).RECOMMENDED_OD_SPAN
The recommended OD time span calculated for the object.RESIDUALS_ACCEPTED
The percentage of residuals accepted in the OD of the object (from 0 to 100).TIME_LASTOB_END
The start of a time interval (UTC) that contains the time of the last accepted observation.TIME_LASTOB_START
The start of a time interval (UTC) that contains the time of the last accepted observation.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.WEIGHTED_RMS
The weighted Root Mean Square (RMS) of the residuals from a batch least squares OD.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
process(ParseToken token, ContextBinding context, ODParameters container)
Process one token.static ODParametersKey
valueOf(String name)
Returns the enum constant of this type with the specified name.static ODParametersKey[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
COMMENT
public static final ODParametersKey COMMENT
Comment entry.
-
TIME_LASTOB_START
public static final ODParametersKey TIME_LASTOB_START
The start of a time interval (UTC) that contains the time of the last accepted observation.
-
TIME_LASTOB_END
public static final ODParametersKey TIME_LASTOB_END
The start of a time interval (UTC) that contains the time of the last accepted observation.
-
RECOMMENDED_OD_SPAN
public static final ODParametersKey RECOMMENDED_OD_SPAN
The recommended OD time span calculated for the object.
-
ACTUAL_OD_SPAN
public static final ODParametersKey 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
public static final ODParametersKey OBS_AVAILABLE
The number of observations available for the OD of the object.
-
OBS_USED
public static final ODParametersKey OBS_USED
The number of observations accepted for the OD of the object.
-
TRACKS_AVAILABLE
public static final ODParametersKey TRACKS_AVAILABLE
The number of sensor tracks available for the OD of the object.
-
TRACKS_USED
public static final ODParametersKey TRACKS_USED
The number of sensor tracks accepted for the OD of the object.
-
RESIDUALS_ACCEPTED
public static final ODParametersKey RESIDUALS_ACCEPTED
The percentage of residuals accepted in the OD of the object (from 0 to 100).
-
WEIGHTED_RMS
public static final ODParametersKey WEIGHTED_RMS
The weighted Root Mean Square (RMS) of the residuals from a batch least squares OD.
-
OD_EPOCH
public static final ODParametersKey OD_EPOCH
The epoch of the orbit determination used for this message (UTC).
-
-
Method Detail
-
values
public static ODParametersKey[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ODParametersKey c : ODParametersKey.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ODParametersKey valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-
process
public boolean process(ParseToken token, ContextBinding context, ODParameters container)
Process one token.- Parameters:
token
- token to processcontext
- context bindingcontainer
- container to fill- Returns:
- true of token was accepted
-
-