Main MRPT website > C++ reference for MRPT 1.9.9
gnss_messages_ascii_nmea.h
Go to the documentation of this file.
1 /* +------------------------------------------------------------------------+
2  | Mobile Robot Programming Toolkit (MRPT) |
3  | http://www.mrpt.org/ |
4  | |
5  | Copyright (c) 2005-2018, Individual contributors, see AUTHORS file |
6  | See: http://www.mrpt.org/Authors - All rights reserved. |
7  | Released under BSD License. See details in http://www.mrpt.org/License |
8  +------------------------------------------------------------------------+ */
9 #pragma once
10 
11 #include "gnss_messages_common.h"
12 
13 namespace mrpt
14 {
15 namespace obs
16 {
17 namespace gnss
18 {
19 // Pragma to ensure we can safely serialize some of these structures
20 #pragma pack(push, 1)
21 
22 /** NMEA datum: GGA. \sa mrpt::obs::CObservationGPS */
24 {
26  /** Static msg type (member expected by templates) */
27  enum
28  {
30  };
32  struct content_t
33  {
34  /** The GPS sensor measured timestamp (in UTC time) */
36  /** The measured latitude, in degrees (North:+ , South:-) */
38  /** The measured longitude, in degrees (East:+ , West:-) */
40  /** NMEA standard values: 0 = invalid, 1 = GPS fix (SPS), 2 = DGPS fix,
41  * 3 = PPS fix, 4 = Real Time Kinematic, 5 = Float RTK, 6 = estimated
42  * (dead reckoning) (2.3 feature), 7 = Manual input mode, 8 = Simulation
43  * mode */
45  /** The measured altitude, in meters (A). */
47  /** Undulation: Difference between the measured altitude and the geoid,
48  * in meters (B). */
50  /** The measured orthometric altitude, in meters (A)+(B). */
52  /** The corrected (only for TopCon mmGPS) orthometric altitude, in
53  * meters mmGPS(A+B). */
55  /** The number of satelites used to compute this estimation. */
57  /** This states whether to take into account the value in the HDOP
58  * field. */
60  /** The HDOP (Horizontal Dilution of Precision) as returned by the
61  * sensor. */
62  float HDOP;
63 
64  content_t();
65  };
66  /** Message content, accesible by individual fields */
68 
69  void dumpToStream(std::ostream& out) const override; // See docs in base
70 
71  /** Return the geodetic coords as a mrpt::topography::TGeodeticCoords
72  * structure (requires linking against mrpt-topography)
73  * Call as: getAsStruct<TGeodeticCoords>(); */
74  template <class TGEODETICCOORDS>
75  inline TGEODETICCOORDS getOrthoAsStruct() const
76  {
77  return TGEODETICCOORDS(
80  }
81  /** Return the corrected geodetic coords as a
82  * mrpt::topography::TGeodeticCoords structure (requires linking against
83  * mrpt-topography)
84  * Call as: getAsStruct<TGeodeticCoords>(); */
85  template <class TGEODETICCOORDS>
86  inline TGEODETICCOORDS getCorrectedOrthoAsStruct() const
87  {
88  return TGEODETICCOORDS(
91  }
92  /** Return the geodetic coords as a mrpt::topography::TGeodeticCoords
93  * structure (requires linking against mrpt-topography)
94  * Call as: getAsStruct<TGeodeticCoords>(); */
95  template <class TGEODETICCOORDS>
96  inline TGEODETICCOORDS getAsStruct() const
97  {
98  return TGEODETICCOORDS(
101  }
102 
103  bool getAllFieldDescriptions(std::ostream& o) const override;
104  bool getAllFieldValues(std::ostream& o) const override;
105 };
106 
107 /** NMEA datum: GLL. \sa mrpt::obs::CObservationGPS */
109 {
111  /** Static msg type (member expected by templates) */
112  enum
113  {
115  };
117  struct content_t
118  {
119  /** The GPS sensor measured timestamp (in UTC time) */
121  /** The measured latitude, in degrees (North:+ , South:-) */
123  /** The measured longitude, in degrees (East:+ , West:-) */
125  /** This will be: 'A'=OK or 'V'=void */
127  content_t();
128  };
129  /** Message content, accesible by individual fields */
131  void dumpToStream(std::ostream& out) const override; // See docs in base
132  bool getAllFieldDescriptions(std::ostream& o) const override;
133  bool getAllFieldValues(std::ostream& o) const override;
134 };
135 
136 /** NMEA datum: RMC. \sa mrpt::obs::CObservationGPS */
138 {
140  /** Static msg type (member expected by templates) */
141  enum
142  {
144  };
146  struct content_t
147  {
148  /** The GPS sensor measured timestamp (in UTC time) */
150  /** This will be: 'A'=OK or 'V'=void */
152  /** The measured latitude, in degrees (North:+ , South:-) */
154  /** The measured longitude, in degrees (East:+ , West:-) */
156  /** Measured speed (in knots) */
157  double speed_knots;
158  /** Measured speed direction (in degrees) */
160  /** Date: day (1-31), month (1-12), two-digits year (00-99) */
162  /** Magnetic variation direction (East:+, West:-) */
163  double magnetic_dir;
164  /** 'A': Autonomous, 'D': Differential, 'N': Not valid, 'E': Estimated,
165  * 'M': Manual */
167  content_t();
168  };
169  /** Message content, accesible by individual fields */
171 
172  /** Build an MRPT timestamp with the year/month/day of this observation. */
174 
175  void dumpToStream(std::ostream& out) const override; // See docs in base
176  bool getAllFieldDescriptions(std::ostream& o) const override;
177  bool getAllFieldValues(std::ostream& o) const override;
178 };
179 
180 /** NMEA datum: VTG. \sa mrpt::obs::CObservationGPS */
182 {
184  /** Static msg type (member expected by templates) */
185  enum
186  {
188  };
190  struct content_t
191  {
192  /** Degrees */
195  content_t();
196  };
197  /** Message content, accesible by individual fields */
199  void dumpToStream(std::ostream& out) const override; // See docs in base
200  bool getAllFieldDescriptions(std::ostream& o) const override;
201  bool getAllFieldValues(std::ostream& o) const override;
202 };
203 
204 /** NMEA datum: ZDA. \sa mrpt::obs::CObservationGPS */
206 {
208  /** Static msg type (member expected by templates) */
209  enum
210  {
212  };
214  struct content_t
215  {
216  /** The GPS sensor measured timestamp (in UTC time) */
218  /** 1-31 */
220  /** 1-12 */
222  /** 2000-... */
224  content_t();
225  };
226  /** Message content, accesible by individual fields */
228 
229  /** Build an MRPT UTC timestamp with the year/month/day + hour/minute/sec of
230  * this observation. */
232  /** Build an MRPT timestamp with the year/month/day of this observation. */
234 
235  void dumpToStream(std::ostream& out) const override; // See docs in base
236  bool getAllFieldDescriptions(std::ostream& o) const override;
237  bool getAllFieldValues(std::ostream& o) const override;
238 };
239 #pragma pack(pop) // End of pack = 1
240 } // namespace gnss
241 } // namespace obs
242 } // namespace mrpt
mrpt::obs::gnss::Message_NMEA_VTG::content_t::ground_speed_kmh
double ground_speed_kmh
Definition: gnss_messages_ascii_nmea.h:194
mrpt::obs::gnss::Message_NMEA_GGA::Message_NMEA_GGA
Message_NMEA_GGA()
Definition: gnss_messages_ascii_nmea.h:31
mrpt::obs::gnss::Message_NMEA_RMC::content_t::validity_char
int8_t validity_char
This will be: 'A'=OK or 'V'=void.
Definition: gnss_messages_ascii_nmea.h:151
mrpt::obs::gnss::NMEA_RMC
@ NMEA_RMC
Definition: gnss_messages_type_list.h:34
mrpt::obs::gnss::Message_NMEA_ZDA::dumpToStream
void dumpToStream(std::ostream &out) const override
Dumps the contents of the observation in a human-readable form to a given output stream.
Definition: gnss_messages_ascii_nmea.cpp:243
mrpt::obs::gnss::Message_NMEA_RMC::getDateAsTimestamp
mrpt::system::TTimeStamp getDateAsTimestamp() const
Build an MRPT timestamp with the year/month/day of this observation.
Definition: gnss_messages_ascii_nmea.cpp:176
mrpt::obs::gnss::Message_NMEA_GLL::Message_NMEA_GLL
Message_NMEA_GLL()
Definition: gnss_messages_ascii_nmea.h:116
mrpt::obs::gnss::Message_NMEA_VTG::fields
content_t fields
Message content, accesible by individual fields.
Definition: gnss_messages_ascii_nmea.h:198
mrpt::obs::gnss::Message_NMEA_GGA::content_t::longitude_degrees
double longitude_degrees
The measured longitude, in degrees (East:+ , West:-)
Definition: gnss_messages_ascii_nmea.h:39
mrpt::obs::gnss::gnss_message_type_t
gnss_message_type_t
List of all known GNSS message types.
Definition: gnss_messages_type_list.h:26
mrpt::obs::gnss::Message_NMEA_VTG::content_t
Definition: gnss_messages_ascii_nmea.h:190
uint16_t
unsigned __int16 uint16_t
Definition: rptypes.h:44
mrpt::obs::gnss::Message_NMEA_VTG::Message_NMEA_VTG
Message_NMEA_VTG()
Definition: gnss_messages_ascii_nmea.h:189
mrpt::obs::gnss::Message_NMEA_RMC::content_t::speed_knots
double speed_knots
Measured speed (in knots)
Definition: gnss_messages_ascii_nmea.h:157
mrpt::obs::gnss::NMEA_GLL
@ NMEA_GLL
Definition: gnss_messages_type_list.h:30
mrpt::obs::gnss::Message_NMEA_VTG::getAllFieldValues
bool getAllFieldValues(std::ostream &o) const override
Dumps a line with the sequence of all field values (without a line feed at the end).
Definition: gnss_messages_ascii_nmea.cpp:150
mrpt::obs::gnss::Message_NMEA_RMC::content_t::date_month
uint8_t date_month
Definition: gnss_messages_ascii_nmea.h:161
mrpt::obs::gnss::Message_NMEA_ZDA::getDateAsTimestamp
mrpt::system::TTimeStamp getDateAsTimestamp() const
Build an MRPT timestamp with the year/month/day of this observation.
Definition: gnss_messages_ascii_nmea.cpp:275
mrpt::obs::gnss::Message_NMEA_VTG::content_t::ground_speed_knots
double ground_speed_knots
Definition: gnss_messages_ascii_nmea.h:194
mrpt::obs::gnss::Message_NMEA_GLL::msg_type
@ msg_type
Definition: gnss_messages_ascii_nmea.h:114
mrpt::obs::gnss::Message_NMEA_GGA
NMEA datum: GGA.
Definition: gnss_messages_ascii_nmea.h:23
mrpt::obs::gnss::Message_NMEA_ZDA::content_t::content_t
content_t()
Definition: gnss_messages_ascii_nmea.cpp:238
mrpt::obs::gnss::Message_NMEA_GLL::dumpToStream
void dumpToStream(std::ostream &out) const override
Dumps the contents of the observation in a human-readable form to a given output stream.
Definition: gnss_messages_ascii_nmea.cpp:101
mrpt::obs::gnss::Message_NMEA_GGA::fields
content_t fields
Message content, accesible by individual fields.
Definition: gnss_messages_ascii_nmea.h:67
mrpt::obs::gnss::Message_NMEA_GLL::fields
content_t fields
Message content, accesible by individual fields.
Definition: gnss_messages_ascii_nmea.h:130
mrpt::obs::gnss::Message_NMEA_GGA::getOrthoAsStruct
TGEODETICCOORDS getOrthoAsStruct() const
Return the geodetic coords as a mrpt::topography::TGeodeticCoords structure (requires linking against...
Definition: gnss_messages_ascii_nmea.h:75
mrpt::obs::gnss::Message_NMEA_ZDA::fields
content_t fields
Message content, accesible by individual fields.
Definition: gnss_messages_ascii_nmea.h:227
mrpt::obs::gnss::Message_NMEA_ZDA::getDateTimeAsTimestamp
mrpt::system::TTimeStamp getDateTimeAsTimestamp() const
Build an MRPT UTC timestamp with the year/month/day + hour/minute/sec of this observation.
Definition: gnss_messages_ascii_nmea.cpp:268
mrpt::obs::gnss::Message_NMEA_ZDA
NMEA datum: ZDA.
Definition: gnss_messages_ascii_nmea.h:205
mrpt::obs::gnss::Message_NMEA_ZDA::Message_NMEA_ZDA
Message_NMEA_ZDA()
Definition: gnss_messages_ascii_nmea.h:213
mrpt::obs::gnss::Message_NMEA_GGA::content_t::HDOP
float HDOP
The HDOP (Horizontal Dilution of Precision) as returned by the sensor.
Definition: gnss_messages_ascii_nmea.h:62
mrpt::obs::gnss::Message_NMEA_GGA::msg_type
@ msg_type
Definition: gnss_messages_ascii_nmea.h:29
mrpt::obs::gnss::Message_NMEA_ZDA::getAllFieldValues
bool getAllFieldValues(std::ostream &o) const override
Dumps a line with the sequence of all field values (without a line feed at the end).
Definition: gnss_messages_ascii_nmea.cpp:259
mrpt
This is the global namespace for all Mobile Robot Programming Toolkit (MRPT) libraries.
Definition: CKalmanFilterCapable.h:30
mrpt::obs::gnss::Message_NMEA_GGA::getAsStruct
TGEODETICCOORDS getAsStruct() const
Return the geodetic coords as a mrpt::topography::TGeodeticCoords structure (requires linking against...
Definition: gnss_messages_ascii_nmea.h:96
mrpt::obs::gnss::Message_NMEA_ZDA::content_t::date_year
uint16_t date_year
2000-...
Definition: gnss_messages_ascii_nmea.h:223
mrpt::obs::gnss::Message_NMEA_GGA::getAllFieldDescriptions
bool getAllFieldDescriptions(std::ostream &o) const override
Dumps a header for getAllFieldValues()
Definition: gnss_messages_ascii_nmea.cpp:78
uint8_t
unsigned char uint8_t
Definition: rptypes.h:41
mrpt::obs::gnss::Message_NMEA_RMC::dumpToStream
void dumpToStream(std::ostream &out) const override
Dumps the contents of the observation in a human-readable form to a given output stream.
Definition: gnss_messages_ascii_nmea.cpp:198
mrpt::obs::gnss::Message_NMEA_VTG::content_t::content_t
content_t()
Definition: gnss_messages_ascii_nmea.cpp:129
mrpt::obs::gnss::Message_NMEA_VTG::msg_type
@ msg_type
Definition: gnss_messages_ascii_nmea.h:187
mrpt::obs::gnss::Message_NMEA_GLL::content_t::validity_char
int8_t validity_char
This will be: 'A'=OK or 'V'=void.
Definition: gnss_messages_ascii_nmea.h:126
mrpt::obs::gnss::Message_NMEA_RMC::content_t
Definition: gnss_messages_ascii_nmea.h:146
mrpt::obs::gnss::Message_NMEA_GGA::getCorrectedOrthoAsStruct
TGEODETICCOORDS getCorrectedOrthoAsStruct() const
Return the corrected geodetic coords as a mrpt::topography::TGeodeticCoords structure (requires linki...
Definition: gnss_messages_ascii_nmea.h:86
int8_t
signed char int8_t
Definition: rptypes.h:40
mrpt::obs::gnss::Message_NMEA_RMC::Message_NMEA_RMC
Message_NMEA_RMC()
Definition: gnss_messages_ascii_nmea.h:145
mrpt::obs::gnss::Message_NMEA_RMC::content_t::magnetic_dir
double magnetic_dir
Magnetic variation direction (East:+, West:-)
Definition: gnss_messages_ascii_nmea.h:163
mrpt::system::TTimeStamp
uint64_t TTimeStamp
A system independent time type, it holds the the number of 100-nanosecond intervals since January 1,...
Definition: datetime.h:31
mrpt::obs::gnss::UTC_time
UTC (Coordinated Universal Time) time-stamp structure for GPS messages.
Definition: gnss_messages_common.h:170
mrpt::obs::gnss::Message_NMEA_ZDA::content_t::date_day
uint8_t date_day
1-31
Definition: gnss_messages_ascii_nmea.h:219
mrpt::obs::gnss::Message_NMEA_RMC::msg_type
@ msg_type
Definition: gnss_messages_ascii_nmea.h:143
mrpt::obs::gnss::Message_NMEA_RMC::content_t::content_t
content_t()
Definition: gnss_messages_ascii_nmea.cpp:159
mrpt::obs::gnss::Message_NMEA_GGA::content_t::latitude_degrees
double latitude_degrees
The measured latitude, in degrees (North:+ , South:-)
Definition: gnss_messages_ascii_nmea.h:37
mrpt::obs::gnss::Message_NMEA_RMC::content_t::direction_degrees
double direction_degrees
Measured speed direction (in degrees)
Definition: gnss_messages_ascii_nmea.h:159
mrpt::obs::gnss::Message_NMEA_RMC::content_t::latitude_degrees
double latitude_degrees
The measured latitude, in degrees (North:+ , South:-)
Definition: gnss_messages_ascii_nmea.h:153
mrpt::obs::gnss::Message_NMEA_GLL::content_t::longitude_degrees
double longitude_degrees
The measured longitude, in degrees (East:+ , West:-)
Definition: gnss_messages_ascii_nmea.h:124
mrpt::obs::gnss::Message_NMEA_GGA::content_t::satellitesUsed
uint32_t satellitesUsed
The number of satelites used to compute this estimation.
Definition: gnss_messages_ascii_nmea.h:56
mrpt::obs::gnss::Message_NMEA_GLL::content_t
Definition: gnss_messages_ascii_nmea.h:117
mrpt::obs::gnss::Message_NMEA_RMC::content_t::positioning_mode
char positioning_mode
'A': Autonomous, 'D': Differential, 'N': Not valid, 'E': Estimated, 'M': Manual
Definition: gnss_messages_ascii_nmea.h:166
mrpt::obs::gnss::Message_NMEA_RMC::content_t::longitude_degrees
double longitude_degrees
The measured longitude, in degrees (East:+ , West:-)
Definition: gnss_messages_ascii_nmea.h:155
mrpt::obs::gnss::Message_NMEA_RMC::fields
content_t fields
Message content, accesible by individual fields.
Definition: gnss_messages_ascii_nmea.h:170
mrpt::obs::gnss::Message_NMEA_GLL::content_t::latitude_degrees
double latitude_degrees
The measured latitude, in degrees (North:+ , South:-)
Definition: gnss_messages_ascii_nmea.h:122
mrpt::obs::gnss::Message_NMEA_GGA::content_t::corrected_orthometric_altitude
double corrected_orthometric_altitude
The corrected (only for TopCon mmGPS) orthometric altitude, in meters mmGPS(A+B).
Definition: gnss_messages_ascii_nmea.h:54
mrpt::obs::gnss::Message_NMEA_GLL::getAllFieldValues
bool getAllFieldValues(std::ostream &o) const override
Dumps a line with the sequence of all field values (without a line feed at the end).
Definition: gnss_messages_ascii_nmea.cpp:118
mrpt::obs::gnss::Message_NMEA_GGA::content_t::altitude_meters
double altitude_meters
The measured altitude, in meters (A).
Definition: gnss_messages_ascii_nmea.h:46
mrpt::obs::gnss::Message_NMEA_GGA::content_t::UTCTime
UTC_time UTCTime
The GPS sensor measured timestamp (in UTC time)
Definition: gnss_messages_ascii_nmea.h:35
mrpt::obs::gnss::Message_NMEA_GGA::content_t::thereis_HDOP
bool thereis_HDOP
This states whether to take into account the value in the HDOP field.
Definition: gnss_messages_ascii_nmea.h:59
mrpt::obs::gnss::Message_NMEA_RMC::getAllFieldDescriptions
bool getAllFieldDescriptions(std::ostream &o) const override
Dumps a header for getAllFieldValues()
Definition: gnss_messages_ascii_nmea.cpp:220
mrpt::obs::gnss::Message_NMEA_VTG::content_t::true_track
double true_track
Degrees.
Definition: gnss_messages_ascii_nmea.h:193
mrpt::obs::gnss::Message_NMEA_GGA::content_t::orthometric_altitude
double orthometric_altitude
The measured orthometric altitude, in meters (A)+(B).
Definition: gnss_messages_ascii_nmea.h:51
mrpt::obs::gnss::NMEA_ZDA
@ NMEA_ZDA
Definition: gnss_messages_type_list.h:36
mrpt::obs::gnss::Message_NMEA_GLL
NMEA datum: GLL.
Definition: gnss_messages_ascii_nmea.h:108
mrpt::obs::gnss::Message_NMEA_ZDA::content_t::UTCTime
UTC_time UTCTime
The GPS sensor measured timestamp (in UTC time)
Definition: gnss_messages_ascii_nmea.h:217
mrpt::obs::gnss::Message_NMEA_ZDA::content_t
Definition: gnss_messages_ascii_nmea.h:214
mrpt::obs::gnss::NMEA_VTG
@ NMEA_VTG
Definition: gnss_messages_type_list.h:35
mrpt::obs::gnss::Message_NMEA_GGA::content_t::geoidal_distance
double geoidal_distance
Undulation: Difference between the measured altitude and the geoid, in meters (B).
Definition: gnss_messages_ascii_nmea.h:49
mrpt::obs::gnss::Message_NMEA_ZDA::getAllFieldDescriptions
bool getAllFieldDescriptions(std::ostream &o) const override
Dumps a header for getAllFieldValues()
Definition: gnss_messages_ascii_nmea.cpp:254
mrpt::obs::gnss::Message_NMEA_RMC::content_t::date_year
uint8_t date_year
Definition: gnss_messages_ascii_nmea.h:161
mrpt::obs::gnss::Message_NMEA_RMC::content_t::date_day
uint8_t date_day
Date: day (1-31), month (1-12), two-digits year (00-99)
Definition: gnss_messages_ascii_nmea.h:161
mrpt::obs::gnss::Message_NMEA_GLL::getAllFieldDescriptions
bool getAllFieldDescriptions(std::ostream &o) const override
Dumps a header for getAllFieldValues()
Definition: gnss_messages_ascii_nmea.cpp:113
gnss_messages_common.h
GNSS_MESSAGE_BINARY_BLOCK
#define GNSS_MESSAGE_BINARY_BLOCK(DATA_PTR, DATA_LEN)
Definition: gnss_messages_common.h:121
mrpt::obs::gnss::Message_NMEA_ZDA::msg_type
@ msg_type
Definition: gnss_messages_ascii_nmea.h:211
mrpt::obs::gnss::Message_NMEA_GLL::content_t::content_t
content_t()
Definition: gnss_messages_ascii_nmea.cpp:96
mrpt::obs::gnss::Message_NMEA_GGA::content_t::content_t
content_t()
Definition: gnss_messages_ascii_nmea.cpp:19
mrpt::obs::gnss::Message_NMEA_RMC::getAllFieldValues
bool getAllFieldValues(std::ostream &o) const override
Dumps a line with the sequence of all field values (without a line feed at the end).
Definition: gnss_messages_ascii_nmea.cpp:226
mrpt::obs::gnss::gnss_message
Pure virtual base for all message types.
Definition: gnss_messages_common.h:26
mrpt::obs::gnss::Message_NMEA_RMC::content_t::UTCTime
UTC_time UTCTime
The GPS sensor measured timestamp (in UTC time)
Definition: gnss_messages_ascii_nmea.h:149
mrpt::obs::gnss::Message_NMEA_RMC
NMEA datum: RMC.
Definition: gnss_messages_ascii_nmea.h:137
mrpt::obs::gnss::Message_NMEA_VTG::dumpToStream
void dumpToStream(std::ostream &out) const override
Dumps the contents of the observation in a human-readable form to a given output stream.
Definition: gnss_messages_ascii_nmea.cpp:134
mrpt::obs::gnss::Message_NMEA_ZDA::content_t::date_month
uint8_t date_month
1-12
Definition: gnss_messages_ascii_nmea.h:221
mrpt::obs::gnss::Message_NMEA_GGA::content_t::fix_quality
uint8_t fix_quality
NMEA standard values: 0 = invalid, 1 = GPS fix (SPS), 2 = DGPS fix, 3 = PPS fix, 4 = Real Time Kinema...
Definition: gnss_messages_ascii_nmea.h:44
mrpt::obs::gnss::Message_NMEA_GGA::content_t
Definition: gnss_messages_ascii_nmea.h:32
mrpt::obs::gnss::NMEA_GGA
@ NMEA_GGA
Definition: gnss_messages_type_list.h:29
mrpt::obs::gnss::Message_NMEA_GLL::content_t::UTCTime
UTC_time UTCTime
The GPS sensor measured timestamp (in UTC time)
Definition: gnss_messages_ascii_nmea.h:120
mrpt::obs::gnss::Message_NMEA_VTG
NMEA datum: VTG.
Definition: gnss_messages_ascii_nmea.h:181
uint32_t
unsigned __int32 uint32_t
Definition: rptypes.h:47
mrpt::obs::gnss::Message_NMEA_VTG::getAllFieldDescriptions
bool getAllFieldDescriptions(std::ostream &o) const override
Dumps a header for getAllFieldValues()
Definition: gnss_messages_ascii_nmea.cpp:145
mrpt::obs::gnss::Message_NMEA_GGA::dumpToStream
void dumpToStream(std::ostream &out) const override
Dumps the contents of the observation in a human-readable form to a given output stream.
Definition: gnss_messages_ascii_nmea.cpp:34
mrpt::obs::gnss::Message_NMEA_VTG::content_t::magnetic_track
double magnetic_track
Definition: gnss_messages_ascii_nmea.h:193
mrpt::obs::gnss::Message_NMEA_GGA::getAllFieldValues
bool getAllFieldValues(std::ostream &o) const override
Dumps a line with the sequence of all field values (without a line feed at the end).
Definition: gnss_messages_ascii_nmea.cpp:84



Page generated by Doxygen 1.8.17 for MRPT 1.9.9 Git: ad3a9d8ae Tue May 1 23:10:22 2018 -0700 at miƩ 12 jul 2023 10:03:34 CEST