public enum SatelliteSystem extends Enum<SatelliteSystem>
Enum Constant and Description |
---|
BEIDOU
Beidou system.
|
GALILEO
Galileo system.
|
GLONASS
GLONASS system.
|
GPS
GPS system.
|
IRNSS
Indian Regional Navigation Satellite System system (NavIC).
|
MIXED
Mixed system.
|
QZSS
Quasi-Zenith Satellite System system.
|
SBAS
SBAS system.
|
USER_DEFINED_A
User-defined system A.
|
USER_DEFINED_B
User-defined system B.
|
USER_DEFINED_D
User-defined system D.
|
USER_DEFINED_F
User-defined system F.
|
USER_DEFINED_H
User-defined system H.
|
USER_DEFINED_K
User-defined system K.
|
USER_DEFINED_L
User-defined system L.
|
USER_DEFINED_N
User-defined system N.
|
USER_DEFINED_O
User-defined system O.
|
USER_DEFINED_P
User-defined system P.
|
USER_DEFINED_Q
User-defined system Q.
|
USER_DEFINED_T
User-defined system T.
|
USER_DEFINED_U
User-defined system U.
|
USER_DEFINED_V
User-defined system V.
|
USER_DEFINED_W
User-defined system W.
|
USER_DEFINED_X
User-defined system X.
|
USER_DEFINED_Y
User-defined system Y.
|
USER_DEFINED_Z
User-defined system Z.
|
Modifier and Type | Method and Description |
---|---|
char |
getKey()
Get the key for the system.
|
ObservationTimeScale |
getObservationTimeScale()
Get observation time scale for satellite system.
|
static SatelliteSystem |
parseSatelliteSystem(String s)
Parse a string to get the satellite system.
|
static SatelliteSystem |
parseSatelliteSystemWithGPSDefault(String s)
Parse a string to get the satellite system.
|
static SatelliteSystem |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SatelliteSystem[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SatelliteSystem USER_DEFINED_A
public static final SatelliteSystem USER_DEFINED_B
public static final SatelliteSystem BEIDOU
public static final SatelliteSystem USER_DEFINED_D
public static final SatelliteSystem GALILEO
public static final SatelliteSystem USER_DEFINED_F
public static final SatelliteSystem GPS
public static final SatelliteSystem USER_DEFINED_H
public static final SatelliteSystem IRNSS
public static final SatelliteSystem QZSS
public static final SatelliteSystem USER_DEFINED_K
public static final SatelliteSystem USER_DEFINED_L
public static final SatelliteSystem MIXED
public static final SatelliteSystem USER_DEFINED_N
public static final SatelliteSystem USER_DEFINED_O
public static final SatelliteSystem USER_DEFINED_P
public static final SatelliteSystem USER_DEFINED_Q
public static final SatelliteSystem GLONASS
public static final SatelliteSystem SBAS
public static final SatelliteSystem USER_DEFINED_T
public static final SatelliteSystem USER_DEFINED_U
public static final SatelliteSystem USER_DEFINED_V
public static final SatelliteSystem USER_DEFINED_W
public static final SatelliteSystem USER_DEFINED_X
public static final SatelliteSystem USER_DEFINED_Y
public static final SatelliteSystem USER_DEFINED_Z
public static SatelliteSystem[] values()
for (SatelliteSystem c : SatelliteSystem.values()) System.out.println(c);
public static SatelliteSystem valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic char getKey()
public static SatelliteSystem parseSatelliteSystem(String s) throws OrekitIllegalArgumentException
The string first character must be the satellite system.
s
- string to parseOrekitIllegalArgumentException
- if the string does not correspond to a satellite system keypublic static SatelliteSystem parseSatelliteSystemWithGPSDefault(String s)
The string first character must be the satellite system, or empty to get GPS as default
s
- string to parsepublic ObservationTimeScale getObservationTimeScale()
Copyright © 2002-2023 CS GROUP. All rights reserved.