Package com.esri.arcgisruntime.location
Enum NmeaFixType
- java.lang.Object
-
- java.lang.Enum<NmeaFixType>
-
- com.esri.arcgisruntime.location.NmeaFixType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<NmeaFixType>
public enum NmeaFixType extends java.lang.Enum<NmeaFixType>
The list of NMEA fix types.Indicates the type of signal or technique being used by the GPS receiver to determine its location. For example it indicates the quality of the signal, or the accuracy and reliability of the location being reported. The fix type is determined by the receiver based on number of satellites visible, the type of GPS receiver and the GPS technology being used.
- Since:
- 100.10.0
- See Also:
NmeaLocationDataSource.NmeaLocation.getFixType()
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DGPS
A differential GPS fix type.ESTIMATED
An estimated GPS fix type.FRTK
A float real time kinematic GPS fix type.INVALID
An invalid GPS fix type.MANUAL
A manual input mode GPS fix type.PPS
A PPS GPS fix type.RTK
A real time kinematic GPS fix type.SIMULATION
A simulation mode GPS fix type.STANDARD
A standard GPS fix type.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static NmeaFixType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static NmeaFixType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INVALID
public static final NmeaFixType INVALID
An invalid GPS fix type. Indicates that there is no satellite signal being received or there are not enough satellites available for proper location determination.- Since:
- 100.10.0
-
STANDARD
public static final NmeaFixType STANDARD
A standard GPS fix type. Indicates a standard GPS signal, or Standard Positioning Service (SPS) is being used. SPS is the standard specified level of positioning and timing accuracy that is available, without qualification or restrictions, to any user on a continuous worldwide basis.- Since:
- 100.10.0
-
DGPS
public static final NmeaFixType DGPS
A differential GPS fix type. Indicates that Differential GPS is being used to provide increased accuracy over SPS. This technique uses a network of fixed ground based reference stations to broadcast the difference between the positions indicated by the satellite systems and the known fixed positions.- Since:
- 100.10.0
-
PPS
public static final NmeaFixType PPS
A PPS GPS fix type. Indicates that Precise Positioning System encrypted for government use is being used by the receiver. PPS is the most accurate positioning, velocity, and timing information continuously available, worldwide, from the basic GPS.- Since:
- 100.10.0
-
RTK
public static final NmeaFixType RTK
A real time kinematic GPS fix type. A technique used in land survey based on the use of carrier phase measurements of the GPS signals where a single reference station provides the real-time corrections of even to a centimeter level of accuracy.- Since:
- 100.10.0
-
FRTK
public static final NmeaFixType FRTK
A float real time kinematic GPS fix type. The type is very similar to the fixed RTK method of calculating location, but is not as precise, typically around 20 cm to 1 meter accuracy range.- Since:
- 100.10.0
-
ESTIMATED
public static final NmeaFixType ESTIMATED
An estimated GPS fix type. The type is the determination of a location based on computations of position given an accurately known point of origin and measurements of speed, heading and elapsed time.- Since:
- 100.10.0
-
MANUAL
public static final NmeaFixType MANUAL
A manual input mode GPS fix type. Indicates that the location has been manually entered into the GPS receiver, and is not based on the satellite system.- Since:
- 100.10.0
-
SIMULATION
public static final NmeaFixType SIMULATION
A simulation mode GPS fix type.- Since:
- 100.10.0
-
-
Method Detail
-
values
public static NmeaFixType[] 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 (NmeaFixType c : NmeaFixType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static NmeaFixType valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-