Enum Class OrbitDeterminationKey
- All Implemented Interfaces:
Serializable,Comparable<OrbitDeterminationKey>,Constable
Keys for
orbit determination data entries.- Since:
- 11.0
- Author:
- Luc Maisonobe
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionActual time span used for the OD of the object.Comment entry.Number of consider parameters.Description of consider parameters.Observation data types used.Time elapsed between first accepted observation on epoch.Time elapsed between last accepted observation on epoch.Generalize Dilution Of Precision.Maximum time between observations in the OD of the object.Number of observations available within the actual OD span.Number of observations accepted within the actual OD span.Confidence metric.Time tag for orbit determination solved-for state.Positional error ellipsoid 1σ intermediate eigenvalue at the epoch of OD.Positional error ellipsoid 1σ major eigenvalue at the epoch of OD.Positional error ellipsoid 1σ minor eigenvalue at the epoch of OD.Identification number.Maximum predicted major eigenvalue of 1σ positional error ellipsoid over entire time span of the OCM.Orbit determination method.Minimum predicted minor eigenvalue of 1σ positional error ellipsoid over entire time span of the OCM.Identification of previous orbit determination.Time span of observation recommended for the OD of the object.Specific Energy Dissipation Rate.Description of sensors used.Number of sensors used.Number of solved-for states.Description of state elements solved-for.Number of sensors tracks available for the OD within the actual OD span.Number of sensors tracks accepted for the OD within the actual OD span.Weighted RMS residual ratio. -
Method Summary
Modifier and TypeMethodDescriptionbooleanprocess(ParseToken token, ContextBinding context, OrbitDetermination container) Process an token.static OrbitDeterminationKeyReturns the enum constant of this class with the specified name.static OrbitDeterminationKey[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
COMMENT
Comment entry. -
OD_ID
Identification number. -
OD_PREV_ID
Identification of previous orbit determination. -
OD_METHOD
Orbit determination method. -
OD_EPOCH
Time tag for orbit determination solved-for state. -
DAYS_SINCE_FIRST_OBS
Time elapsed between first accepted observation on epoch. -
DAYS_SINCE_LAST_OBS
Time elapsed between last accepted observation on epoch. -
RECOMMENDED_OD_SPAN
Time span of observation recommended for the OD of the object. -
ACTUAL_OD_SPAN
Actual time span used for the OD of the object. -
OBS_AVAILABLE
Number of observations available within the actual OD span. -
OBS_USED
Number of observations accepted within the actual OD span. -
TRACKS_AVAILABLE
Number of sensors tracks available for the OD within the actual OD span. -
TRACKS_USED
Number of sensors tracks accepted for the OD within the actual OD span. -
MAXIMUM_OBS_GAP
Maximum time between observations in the OD of the object. -
OD_EPOCH_EIGMAJ
Positional error ellipsoid 1σ major eigenvalue at the epoch of OD. -
OD_EPOCH_EIGINT
Positional error ellipsoid 1σ intermediate eigenvalue at the epoch of OD. -
OD_EPOCH_EIGMIN
Positional error ellipsoid 1σ minor eigenvalue at the epoch of OD. -
OD_MAX_PRED_EIGMAJ
Maximum predicted major eigenvalue of 1σ positional error ellipsoid over entire time span of the OCM. -
OD_MIN_PRED_EIGMIN
Minimum predicted minor eigenvalue of 1σ positional error ellipsoid over entire time span of the OCM. -
OD_CONFIDENCE
Confidence metric. -
GDOP
Generalize Dilution Of Precision. -
SOLVE_N
Number of solved-for states. -
SOLVE_STATES
Description of state elements solved-for. -
CONSIDER_N
Number of consider parameters. -
CONSIDER_PARAMS
Description of consider parameters. -
SEDR
Specific Energy Dissipation Rate.- Since:
- 12.0
-
SENSORS_N
Number of sensors used. -
SENSORS
Description of sensors used. -
WEIGHTED_RMS
Weighted RMS residual ratio. -
DATA_TYPES
Observation data types used.
-
-
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 an token.- Parameters:
token- token to processcontext- context bindingcontainer- container to fill- Returns:
- true of token was accepted
-