Enum AttitudeDeterminationKey
- java.lang.Object
-
- java.lang.Enum<AttitudeDeterminationKey>
-
- org.orekit.files.ccsds.ndm.adm.acm.AttitudeDeterminationKey
-
- All Implemented Interfaces:
Serializable,Comparable<AttitudeDeterminationKey>
public enum AttitudeDeterminationKey extends Enum<AttitudeDeterminationKey>
Keys forattitude determination dataentries.- Since:
- 12.0
- Author:
- Luc Maisonobe
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AD_IDIdentification number.AD_METHODAttitude determination method.AD_PREV_IDIdentification of previous attitude determination.ATTITUDE_SOURCESource of attitude estimate.ATTITUDE_STATESAttitude states.COMMENTComment entry.COV_TYPEType of attitude error state.EULER_ROT_SEQRotation sequence entry.NUMBER_STATESNumber of states.RATE_PROCESS_NOISE_STDDEVProcess noise standard deviation ifRATE_STATESisRateElementsType.ANGVEL.RATE_STATESAttitude rate states.REF_FRAME_AReference frame defining the starting point of the transformation.REF_FRAME_BReference frame defining the end point of the transformation.SENSORSensor block sub-structure.SIGMA_URate random walk ifRATE_STATESisRateElementsType.GYRO_BIAS.SIGMA_VAngle random walk ifRATE_STATESisRateElementsType.GYRO_BIAS.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanprocess(ParseToken token, AcmParser parser, ContextBinding context, AttitudeDetermination container)Process an token.static AttitudeDeterminationKeyvalueOf(String name)Returns the enum constant of this type with the specified name.static AttitudeDeterminationKey[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
COMMENT
public static final AttitudeDeterminationKey COMMENT
Comment entry.
-
AD_ID
public static final AttitudeDeterminationKey AD_ID
Identification number.
-
AD_PREV_ID
public static final AttitudeDeterminationKey AD_PREV_ID
Identification of previous attitude determination.
-
AD_METHOD
public static final AttitudeDeterminationKey AD_METHOD
Attitude determination method.
-
ATTITUDE_SOURCE
public static final AttitudeDeterminationKey ATTITUDE_SOURCE
Source of attitude estimate.
-
EULER_ROT_SEQ
public static final AttitudeDeterminationKey EULER_ROT_SEQ
Rotation sequence entry.
-
NUMBER_STATES
public static final AttitudeDeterminationKey NUMBER_STATES
Number of states.
-
ATTITUDE_STATES
public static final AttitudeDeterminationKey ATTITUDE_STATES
Attitude states.
-
COV_TYPE
public static final AttitudeDeterminationKey COV_TYPE
Type of attitude error state.
-
REF_FRAME_A
public static final AttitudeDeterminationKey REF_FRAME_A
Reference frame defining the starting point of the transformation.
-
REF_FRAME_B
public static final AttitudeDeterminationKey REF_FRAME_B
Reference frame defining the end point of the transformation.
-
RATE_STATES
public static final AttitudeDeterminationKey RATE_STATES
Attitude rate states.
-
SIGMA_U
public static final AttitudeDeterminationKey SIGMA_U
Rate random walk ifRATE_STATESisRateElementsType.GYRO_BIAS.
-
SIGMA_V
public static final AttitudeDeterminationKey SIGMA_V
Angle random walk ifRATE_STATESisRateElementsType.GYRO_BIAS.
-
RATE_PROCESS_NOISE_STDDEV
public static final AttitudeDeterminationKey RATE_PROCESS_NOISE_STDDEV
Process noise standard deviation ifRATE_STATESisRateElementsType.ANGVEL.
-
SENSOR
public static final AttitudeDeterminationKey SENSOR
Sensor block sub-structure.
-
-
Method Detail
-
values
public static AttitudeDeterminationKey[] 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 (AttitudeDeterminationKey c : AttitudeDeterminationKey.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AttitudeDeterminationKey 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, AcmParser parser, ContextBinding context, AttitudeDetermination container)
Process an token.- Parameters:
token- token to processparser- ACM file parsercontext- context bindingcontainer- container to fill- Returns:
- true of token was accepted
-
-