Package org.orekit.files.iirv.terms
Class VelocityVectorComponentTerm
- java.lang.Object
-
- org.orekit.files.iirv.terms.base.IIRVVectorTerm<Double>
-
- org.orekit.files.iirv.terms.base.DoubleValuedIIRVTerm
-
- org.orekit.files.iirv.terms.VelocityVectorComponentTerm
-
- All Implemented Interfaces:
Comparable<IIRVVectorTerm<?>>
public class VelocityVectorComponentTerm extends DoubleValuedIIRVTerm
13-character signed component of a velocity vector.Units: m/s
Assumed decimal places is three places from the right
Valid values:
- Character 1: ' ' or '-'
- Character 2-12: Any integer 0-9
- Since:
- 13.0
- Author:
- Nick LaFarge
-
-
Field Summary
Fields Modifier and Type Field Description static int
N_CHARS_AFTER_DECIMAL_PLACE
Number of characters before the end of the string the decimal place occurs.static int
VELOCITY_VECTOR_COMPONENT_TERM_LENGTH
The length of the IIRV term within the message.static String
VELOCITY_VECTOR_COMPONENT_TERM_PATTERN
Regular expression that ensures the validity of string values for this term.
-
Constructor Summary
Constructors Constructor Description VelocityVectorComponentTerm(double value)
Constructor.VelocityVectorComponentTerm(String value)
Constructor.
-
Method Summary
-
Methods inherited from class org.orekit.files.iirv.terms.base.DoubleValuedIIRVTerm
computeValueFromString, toEncodedString
-
Methods inherited from class org.orekit.files.iirv.terms.base.IIRVVectorTerm
compareTo, equals, hashCode, length, toEncodedString, validateString, value
-
-
-
-
Field Detail
-
VELOCITY_VECTOR_COMPONENT_TERM_LENGTH
public static final int VELOCITY_VECTOR_COMPONENT_TERM_LENGTH
The length of the IIRV term within the message.- See Also:
- Constant Field Values
-
VELOCITY_VECTOR_COMPONENT_TERM_PATTERN
public static final String VELOCITY_VECTOR_COMPONENT_TERM_PATTERN
Regular expression that ensures the validity of string values for this term.- See Also:
- Constant Field Values
-
N_CHARS_AFTER_DECIMAL_PLACE
public static final int N_CHARS_AFTER_DECIMAL_PLACE
Number of characters before the end of the string the decimal place occurs.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
VelocityVectorComponentTerm
public VelocityVectorComponentTerm(String value)
Constructor.- Parameters:
value
- value of component of the velocity vector [m/s]
-
VelocityVectorComponentTerm
public VelocityVectorComponentTerm(double value)
Constructor.- Parameters:
value
- value of component of the velocity vector [m/s]
-
-