static enum NmeaReader.GSA extends java.lang.Enum<NmeaReader.GSA>
GNSS receiver operating mode, satellites used in the navigation solution reported by the GGA or GNS sentence, and DOP values. If only GPS, GLONASS, etc. is used for the reported position solution the talker ID is GP, GL, etc. and the DOP values pertain to the individual system. If GPS, GLONASS, etc. are combined to obtain the reported position solution multiple GSA sentences are produced, one with the GPS satellites, another with the GLONASS satellites, etc. Each of these GSA sentences shall have talker ID GN, to indicate that the satellites are used in a combined solution and each shall have the PDOP, HDOP and VDOP for the combined satellites used in the position.
Enum Constant and Description |
---|
AUTOMATIC |
FIX_TYPE |
HDOP |
PDOP |
PRN_1 |
PRN_10 |
PRN_11 |
PRN_12 |
PRN_2 |
PRN_3 |
PRN_4 |
PRN_5 |
PRN_6 |
PRN_7 |
PRN_8 |
PRN_9 |
VDOP |
Modifier and Type | Field and Description |
---|---|
(package private) int |
position |
Modifier and Type | Method and Description |
---|---|
static NmeaReader.GSA |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NmeaReader.GSA[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NmeaReader.GSA AUTOMATIC
public static final NmeaReader.GSA FIX_TYPE
public static final NmeaReader.GSA PRN_1
public static final NmeaReader.GSA PRN_2
public static final NmeaReader.GSA PRN_3
public static final NmeaReader.GSA PRN_4
public static final NmeaReader.GSA PRN_5
public static final NmeaReader.GSA PRN_6
public static final NmeaReader.GSA PRN_7
public static final NmeaReader.GSA PRN_8
public static final NmeaReader.GSA PRN_9
public static final NmeaReader.GSA PRN_10
public static final NmeaReader.GSA PRN_11
public static final NmeaReader.GSA PRN_12
public static final NmeaReader.GSA PDOP
public static final NmeaReader.GSA HDOP
public static final NmeaReader.GSA VDOP
final int position
public static NmeaReader.GSA[] values()
for (NmeaReader.GSA c : NmeaReader.GSA.values()) System.out.println(c);
public static NmeaReader.GSA valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null