Type to provide an index into the array of data values for different NMEA quantities. The sine and cosine components of some angles allow for smoothing of those angles by averaging of sine and cosine values that are continuous, rather than angles that are discontinuous at -180/180 or 359/0 transitions. Note that the enumerations are arranged so that NMEA_XXX_SIN = NMEA_XXX + 1, and NMEA_XXX_COS = NMEA_XXX + 2.
Enumerator |
---|
NMEA_HDOP | Horizontal Dilution of Position.
|
NMEA_LAT | Latitude in signed decimal degrees -90 to 90.
|
NMEA_LON | Longitude in signed decimal degrees -180 to 180.
|
NMEA_LATWP | Waypoint Latitude in signed decimal degrees -90 to 90.
|
NMEA_LONWP | Waypoint Longitude in signed decimal degrees -180 to 180.
|
NMEA_SOG | Speed over Ground in knots.
|
NMEA_COG | Course over ground, 0 to 360 degrees true.
|
NMEA_COG_SIN | sine of Course over ground
|
NMEA_COG_COS | cosine of Course over ground
|
NMEA_COGWP | Course over ground to the waypoint, 0 to 360 degrees true.
|
NMEA_XTE | Cross track error for the current segment to the waypoint, Nautical Miles -ve to the left
|
NMEA_DISTWP | Distance to the waypoint in nautical miles.
|
NMEA_AWA | apparent wind angle relative to the boat -180 to 180 degrees
|
NMEA_AWA_SIN | sine of apparent wind angle relative to the boat
|
NMEA_AWA_COS | cosine of apparent wind angle relative to the boat
|
NMEA_AWS | apparent wind speed, will be coerced to knots
|
NMEA_TWA | true wind angle relative to the boat -180 to 180 degrees
|
NMEA_TWA_SIN | sine of true wind angle relative to the boat
|
NMEA_TWA_COS | cosine of true wind angle relative to the boat
|
NMEA_TWD | true wind compass direction, magnetic 0 to 360 degrees magnetic
|
NMEA_TWD_SIN | sine of true wind compass direction, magnetic
|
NMEA_TWD_COS | cosine of true wind compass direction, magnetic
|
NMEA_TWS | true wind speed in knots TWS
|
NMEA_VMG | velocity made good relative to the wind -ve means downwind, knots
|
NMEA_VMGWP | velocity made good relative to the waypoint, knots
|
NMEA_HEEL | boat heel angle, -180 to 180 degrees to starboard
|
NMEA_PITCH | boat pitch angle, -180 to 180 degrees bow up
|
NMEA_HDG | magnetic heading, 0 to 360 degrees magnetic
|
NMEA_HDG_SIN | sine of magnetic heading
|
NMEA_HDG_COS | cosine of magnetic heading
|
NMEA_HDT | true heading, 0 to 360 degrees true
|
NMEA_HDT_SIN | sine of true heading
|
NMEA_HDT_COS | cosine of true heading
|
NMEA_VTW | Boat speed through the water in knots.
|
NMEA_LOG | Distance logged through the water in nautical miles.
|
NMEA_LOGR | Distance logged through the water in nautical miles since reset
|
NMEA_DEPTH | depth of water below the surface in metres
|
NMEA_RPM_M1 | rpm of motor 1
|
NMEA_TEMPERATURE_M1 | temperature of motor 1 in C
|
NMEA_PRESSURE_M1 | pressure of motor 1 in kPa
|
NMEA_VOLTAGE_M1 | voltage of motor 1 in Volts
|
NMEA_CURRENT_M1 | current of motor 1 in Amps
|
NMEA_RPM_M2 | rpm of motor 2
|
NMEA_TEMPERATURE_M2 | temperature of motor 2 in C
|
NMEA_PRESSURE_M2 | pressure of motor 2 in kPa
|
NMEA_VOLTAGE_M2 | voltage of motor 2 in Volts
|
NMEA_CURRENT_M2 | current of motor 2 in Amps
|
NMEA_TEMPERATURE_AIR | outside temperature in C
|
NMEA_TEMPERATURE_WATER | sea water temperature in C
|
NMEA_HUMIDITY | outside relative humidity in %
|
NMEA_BAROMETER | barometric pressure in Pa absolute – not altitude corrected
|
NMEA_USR_00 | spaces for a user sketch to inject its own data
|
NMEA_USR_01 | spaces for a user sketch to inject its own data
|
NMEA_USR_02 | spaces for a user sketch to inject its own data
|
NMEA_MAX_INDEX | the largest number in the enum type – not for data, but does define size of data value array required.
|