枚举 SentenceId
- 所有已实现的接口:
Serializable,Comparable<SentenceId>,java.lang.constant.Constable
Defines the supported NMEA 0183 sentence types. Sentence address field is a
combination of talker and sentence IDs, for example GPBOD, GPGGA or GPGGL.
- 作者:
- Kimmo Tuukkanen, Gunnar Hillert
- 另请参阅:
-
嵌套类概要
从类继承的嵌套类/接口 java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
枚举常量概要
枚举常量枚举常量说明Raymarine SeaTalk sentence ($STALK).Autopilot sentence "B"; xte, bearings and heading toward destinationBearing Origin to DestinationCurrentDepth of water below transducer; in meters, feet and fathomsDepth of water below transducer; in meters.Boreal GasFinder data stream A (GasFinder2 and GasFinderMC)Boreal GasFinder data stream B (GasFinder2 only)Datum reference.GNSS satellite fault detection (RAIM)Global Positioning System fix dataGeographic position (latitude/longitude)GNSS fix data (GPS, GLONASS and future constellations).Dilution of precision (DOP) of GPS fix and active satellitesPseudorange Noise StatisticsDetailed satellite dataVessel heading in degrees with magnetic variation and deviation.Vessel heading in degrees with respect to true north.Vessel heading in degrees trueHeading/Track control commandHeading/Track control dataMeteorological CompositeRelative and absolute humidity with dew pointBarometric pressure in inches of mercury and bars.Air temperature in degrees centigrade (Celsius).Water temperature in degrees centigrade (Celsius).Wind speed and directionWind speed and angleOwn ship dataRecommended minimum navigation informationRecommended minimum specific GPS/TRANSIT dataRate of TurnRevolutions measured from engine or shaft.Rudder angle, measured in degreesRadar system dataRoute data and waypoint listTarget LabelTracked target Longitude LatitudeTracked targetText messageProprietary NMEA messages for u-blox positioning receivers.Dual ground/water speed and stern ground/water speed.AIS - Received data from other vesselsAIS - Own vessel dataSet and drift, direction and speed of current.Water speed and headingDistance traveled through water, cumulative and since reset.Track made good and ground speedRelative Wind Speed and AngleTrue Wind Speed and AngleWaypoint location (latitude/longitude)Transducer measurements (sensor data)Cross-track error, measuredUTC time and date with local time zone offset -
方法概要
修饰符和类型方法说明static SentenceIdParses the sentence id from specified sentence String and returns a correspondingSentenceIdenum (assuming it exists).static StringParses the sentence id from specified sentence String and returns it as String.static SentenceId返回带有指定名称的该类型的枚举常量。static SentenceId[]values()按照声明该枚举类型的常量的顺序, 返回一个包含这些常量的数组。
-
枚举常量详细资料
-
ALK
Raymarine SeaTalk sentence ($STALK). -
APB
Autopilot sentence "B"; xte, bearings and heading toward destination -
BOD
Bearing Origin to Destination -
CUR
Current -
DBT
Depth of water below transducer; in meters, feet and fathoms -
DPT
Depth of water below transducer; in meters. -
DTA
Boreal GasFinder data stream A (GasFinder2 and GasFinderMC) -
DTB
Boreal GasFinder data stream B (GasFinder2 only) -
DTM
Datum reference. -
GBS
GNSS satellite fault detection (RAIM) -
GGA
Global Positioning System fix data -
GLL
Geographic position (latitude/longitude) -
GNS
GNSS fix data (GPS, GLONASS and future constellations). -
GSA
Dilution of precision (DOP) of GPS fix and active satellites -
GSV
Detailed satellite data -
GST
Pseudorange Noise Statistics -
HDG
Vessel heading in degrees with magnetic variation and deviation. -
HDM
Vessel heading in degrees with respect to true north. -
HDT
Vessel heading in degrees true -
HTC
Heading/Track control command -
HTD
Heading/Track control data -
MHU
Relative and absolute humidity with dew point -
MMB
Barometric pressure in inches of mercury and bars. -
MTA
Air temperature in degrees centigrade (Celsius). -
MTW
Water temperature in degrees centigrade (Celsius). -
MWV
Wind speed and angle -
OSD
Own ship data -
RMB
Recommended minimum navigation information -
RMC
Recommended minimum specific GPS/TRANSIT data -
ROT
Rate of Turn -
RPM
Revolutions measured from engine or shaft. -
RSA
Rudder angle, measured in degrees -
RSD
Radar system data -
RTE
Route data and waypoint list -
TLB
Target Label -
TLL
Tracked target Longitude Latitude -
TTM
Tracked target -
TXT
Text message -
UBX
Proprietary NMEA messages for u-blox positioning receivers. -
VBW
Dual ground/water speed and stern ground/water speed. -
VDM
AIS - Received data from other vessels -
VDO
AIS - Own vessel data -
VDR
Set and drift, direction and speed of current. -
VLW
Distance traveled through water, cumulative and since reset. -
VTG
Track made good and ground speed -
VHW
Water speed and heading -
WPL
Waypoint location (latitude/longitude) -
VWR
Relative Wind Speed and Angle -
VWT
True Wind Speed and Angle -
XDR
Transducer measurements (sensor data) -
XTE
Cross-track error, measured -
MDA
Meteorological Composite -
MWD
Wind speed and direction -
ZDA
UTC time and date with local time zone offset
-
-
方法详细资料
-
values
按照声明该枚举类型的常量的顺序, 返回一个包含这些常量的数组。- 返回:
- 按照声明该枚举类型的常量的顺序返回的包含这些常量的数组
-
valueOf
返回带有指定名称的该类型的枚举常量。 字符串必须与用于声明该类型的枚举常量的 标识符完全匹配。(不允许有多余 的空格字符。)- 参数:
name- 要返回的枚举常量的名称。- 返回:
- 返回带有指定名称的枚举常量
- 抛出:
IllegalArgumentException- 如果该枚举类型没有带有指定名称的常量NullPointerException- 如果参数为空值
-
parse
Parses the sentence id from specified sentence String and returns a correspondingSentenceIdenum (assuming it exists).- 参数:
nmea- Sentence String- 返回:
- SentenceId enum
- 抛出:
IllegalArgumentException- If specified String is not valid sentence
-
parseStr
Parses the sentence id from specified sentence String and returns it as String.- 参数:
nmea- Sentence String- 返回:
- Sentence Id, e.g. "GGA" or "GLL"
- 抛出:
IllegalArgumentException- If specified String is not recognized as NMEA sentence
-