Main MRPT website > C++ reference for MRPT 1.9.9
gnss_messages_ascii_nmea.cpp
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 
10 #include "obs-precomp.h" // Precompiled headers
11 
13 #include <iostream>
14 
15 using namespace std;
16 using namespace mrpt::obs::gnss;
17 
18 // ---------------------------------------
19 Message_NMEA_GGA::content_t::content_t()
20  : UTCTime(),
21  latitude_degrees(0),
22  longitude_degrees(0),
23  fix_quality(0),
24  altitude_meters(0),
25  geoidal_distance(),
26  orthometric_altitude(),
27  corrected_orthometric_altitude(),
28  satellitesUsed(0),
29  thereis_HDOP(false),
30  HDOP(0)
31 {
32 }
33 
34 void Message_NMEA_GGA::dumpToStream(std::ostream& out) const
35 {
36  out << "[NMEA GGA datum]\n";
37  out << mrpt::format(
38  " Longitude: %.09f deg Latitude: %.09f deg Height: %.03f m\n",
41 
42  out << mrpt::format(
43  " Geoidal distance: %.03f m Orthometric alt.: %.03f m Corrected "
44  "ort. alt.: %.03f m\n",
47 
48  out << mrpt::format(
49  " UTC time-stamp: %02u:%02u:%02.03f #sats=%2u ", fields.UTCTime.hour,
51 
52  out << mrpt::format("Fix mode: %u ", fields.fix_quality);
53 
54  const char* fix_names[] = {"0:Invalid",
55  "1:GPS fix",
56  "2:DGPS fix",
57  "3:PPS fix",
58  "4:RTK Fixed",
59  "5:RTK Float",
60  "6:Dead Reckoning",
61  "7:Manual",
62  "8:Simulation",
63  "9:mmGPS + RTK Fixed",
64  "10: mmGPS + RTK Float"};
65 
66  if (fields.fix_quality < sizeof(fix_names) / sizeof(fix_names[0]))
67  out << "(" << fix_names[fields.fix_quality] << ")\n";
68  else
69  out << "(UNKNOWN!)\n";
70 
71  out << " HDOP (Horizontal Dilution of Precision): ";
72  if (fields.thereis_HDOP)
73  out << mrpt::format(" %f\n", fields.HDOP);
74  else
75  out << " N/A\n";
76 }
77 
78 bool Message_NMEA_GGA::getAllFieldDescriptions(std::ostream& o) const
79 {
80  o << "lon_deg lat_deg hgt_m undulation_m hour min sec num_sats fix_quality "
81  "hdop";
82  return true;
83 }
84 bool Message_NMEA_GGA::getAllFieldValues(std::ostream& o) const
85 {
86  o << mrpt::format(
87  "%.09f %.09f %.04f %.04f %02u %02u %02.03f %2u %u %f",
92  return true;
93 }
94 
95 // ---------------------------------------
97  : UTCTime(), latitude_degrees(0), longitude_degrees(0), validity_char('V')
98 {
99 }
100 
101 void Message_NMEA_GLL::dumpToStream(std::ostream& out) const
102 {
103  out << "[NMEA GLL datum]\n";
104  out << mrpt::format(
105  " Longitude: %.09f deg Latitude: %.09f deg Validity: '%c'\n",
108  out << mrpt::format(
109  " UTC time-stamp: %02u:%02u:%02.03f\n", fields.UTCTime.hour,
111 }
112 
113 bool Message_NMEA_GLL::getAllFieldDescriptions(std::ostream& o) const
114 {
115  o << "lon_deg lat_deg hour min sec validity";
116  return true;
117 }
118 bool Message_NMEA_GLL::getAllFieldValues(std::ostream& o) const
119 {
120  o << mrpt::format(
121  "%.09f %.09f %02u %02u %02.03f %u", fields.longitude_degrees,
124  static_cast<unsigned int>(fields.validity_char == 'A' ? 1 : 0));
125  return true;
126 }
127 
128 // ---------------------------------------
130  : true_track(), magnetic_track(), ground_speed_knots(), ground_speed_kmh()
131 {
132 }
133 
134 void Message_NMEA_VTG::dumpToStream(std::ostream& out) const
135 {
136  out << mrpt::format("[NMEA VTG datum]\n");
137  out << mrpt::format(
138  " True track: %.03f deg Magnetic track: %.03f deg\n",
140  out << mrpt::format(
141  " Ground speed: %.03f knots %.03f km/h\n", fields.ground_speed_knots,
143 }
144 
145 bool Message_NMEA_VTG::getAllFieldDescriptions(std::ostream& o) const
146 {
147  o << "true_track mag_track gnd_speed_knots gnd_speed_kmh";
148  return true;
149 }
150 bool Message_NMEA_VTG::getAllFieldValues(std::ostream& o) const
151 {
152  o << mrpt::format(
153  "%.09f %.09f %.09f %.09f", fields.true_track, fields.magnetic_track,
155  return true;
156 }
157 
158 // ---------------------------------------
160  : UTCTime(),
161  validity_char('V'),
162  latitude_degrees(0),
163  longitude_degrees(0),
164  speed_knots(0),
165  direction_degrees(0),
166  date_day(0),
167  date_month(0),
168  date_year(0),
169  magnetic_dir(),
170  positioning_mode('N')
171 {
172 }
173 
174 /** Build an MRPT timestamp with the year/month/day of this observation. */
175 
177 {
178  using namespace mrpt::system;
179 
180  // Detect current century:
181  uint16_t years_century;
182  {
183  TTimeParts dec_parts;
184  timestampToParts(now(), dec_parts);
185  years_century = (dec_parts.year / 100) * 100;
186  }
187 
188  TTimeParts parts;
189  parts.second = parts.minute = parts.hour = 0;
190 
191  parts.day = fields.date_day;
192  parts.month = fields.date_month;
193  parts.year = years_century + fields.date_year;
194 
195  return buildTimestampFromParts(parts);
196 }
197 
198 void Message_NMEA_RMC::dumpToStream(std::ostream& out) const
199 {
200  out << mrpt::format("[NMEA RMC datum]\n");
201  out << mrpt::format(
202  " Positioning mode: `%c`\n ", (char)fields.positioning_mode);
203  out << mrpt::format(
204  " UTC time-stamp: %02u:%02u:%02.03f\n", fields.UTCTime.hour,
206  out << mrpt::format(
207  " Date (DD/MM/YY): %02u/%02u/%02u\n ", (unsigned)fields.date_day,
208  (unsigned)fields.date_month, (unsigned)fields.date_year);
209  out << mrpt::format(
210  " Longitude: %.09f deg Latitude: %.09f deg Valid?: '%c'\n",
213  out << mrpt::format(
214  " Speed: %.05f knots Direction:%.03f deg.\n ", fields.speed_knots,
216  out << mrpt::format(
217  " Magnetic variation direction: %.04f deg\n ", fields.magnetic_dir);
218 }
219 
220 bool Message_NMEA_RMC::getAllFieldDescriptions(std::ostream& o) const
221 {
222  o << "lon_deg lat_deg hour min sec speed_knots direction_deg year month "
223  "day";
224  return true;
225 }
226 bool Message_NMEA_RMC::getAllFieldValues(std::ostream& o) const
227 {
228  o << mrpt::format(
229  "%.09f %.09f %02u %02u %02.03f %.05f %.03f %02u %02u %02u",
233  fields.date_day);
234  return true;
235 }
236 
237 // ---------------------------------------
239  : UTCTime(), date_day(), date_month(), date_year()
240 {
241 }
242 
243 void Message_NMEA_ZDA::dumpToStream(std::ostream& out) const
244 {
245  out << mrpt::format("[NMEA ZDA datum]\n");
246  out << mrpt::format(
247  " UTC time-stamp: %02u:%02u:%02.03f\n", fields.UTCTime.hour,
249  out << mrpt::format(
250  " Date (DD/MM/YY): %02u/%02u/%04u\n ", (unsigned)fields.date_day,
251  (unsigned)fields.date_month, (unsigned)fields.date_year);
252 }
253 
254 bool Message_NMEA_ZDA::getAllFieldDescriptions(std::ostream& o) const
255 {
256  o << "year month day hour minute second";
257  return true;
258 }
259 bool Message_NMEA_ZDA::getAllFieldValues(std::ostream& o) const
260 {
261  o << mrpt::format(
262  "%04u %02u %02u %02u %02u %.05f", fields.date_year, fields.date_month,
264  fields.UTCTime.sec);
265  return true;
266 }
267 
269 {
271 }
272 
273 /** Build an MRPT timestamp with the year/month/day of this observation. */
274 
276 {
277  using namespace mrpt::system;
278  TTimeParts parts;
279  parts.second = parts.minute = parts.hour = 0;
280  parts.day = fields.date_day;
281  parts.month = fields.date_month;
282  parts.year = fields.date_year;
283  return buildTimestampFromParts(parts);
284 }
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_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::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_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
uint16_t
unsigned __int16 uint16_t
Definition: rptypes.h:44
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::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::system::TTimeParts::hour
uint8_t hour
Day (1-31)
Definition: datetime.h:42
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::system::buildTimestampFromParts
mrpt::system::TTimeStamp buildTimestampFromParts(const mrpt::system::TTimeParts &p)
Builds a timestamp from the parts (Parts are in UTC)
Definition: datetime.cpp:128
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_ZDA::fields
content_t fields
Message content, accesible by individual fields.
Definition: gnss_messages_ascii_nmea.h:227
mrpt::system::TTimeParts::second
double second
Minute (0-59)
Definition: datetime.h:44
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::system::now
mrpt::system::TTimeStamp now()
A shortcut for system::getCurrentTime.
Definition: datetime.h:75
mrpt::system::TTimeParts::year
uint16_t year
Definition: datetime.h:39
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_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
obs-precomp.h
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
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_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::system::TTimeParts
The parts of a date/time (it's like the standard 'tm' but with fractions of seconds).
Definition: datetime.h:37
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::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::content_t::content_t
content_t()
Definition: gnss_messages_ascii_nmea.cpp:159
mrpt::system::TTimeParts::day
uint8_t day
Month (1-12)
Definition: datetime.h:41
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::system::timestampToParts
void timestampToParts(TTimeStamp t, TTimeParts &p, bool localTime=false)
Gets the individual parts of a date/time (days, hours, minutes, seconds) - UTC time or local time.
Definition: datetime.cpp:104
mrpt::obs::gnss::UTC_time::getAsTimestamp
mrpt::system::TTimeStamp getAsTimestamp(const mrpt::system::TTimeStamp &date) const
Build an MRPT timestamp with the hour/minute/sec of this structure and the date from the given timest...
Definition: gnss_messages_common.cpp:186
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
gnss_messages_ascii_nmea.h
mrpt::obs::gnss::UTC_time::hour
uint8_t hour
Definition: gnss_messages_common.h:172
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::UTC_time::minute
uint8_t minute
Definition: gnss_messages_common.h:173
mrpt::obs::gnss::Message_NMEA_RMC::fields
content_t fields
Message content, accesible by individual fields.
Definition: gnss_messages_ascii_nmea.h:170
mrpt::format
std::string format(const char *fmt,...) MRPT_printf_format_check(1
A std::string version of C sprintf.
Definition: format.cpp:16
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::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_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::system::TTimeParts::month
uint8_t month
The year.
Definition: datetime.h:40
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
mrpt::obs::gnss
GNSS (GPS) data structures, mainly for use within mrpt::obs::CObservationGPS.
Definition: gnss_messages_ascii_nmea.h:17
mrpt::system::TTimeParts::minute
uint8_t minute
Hour (0-23)
Definition: datetime.h:43
mrpt::obs::gnss::Message_NMEA_GLL::content_t::content_t
content_t()
Definition: gnss_messages_ascii_nmea.cpp:96
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::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_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_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::getAllFieldDescriptions
bool getAllFieldDescriptions(std::ostream &o) const override
Dumps a header for getAllFieldValues()
Definition: gnss_messages_ascii_nmea.cpp:145
mrpt::system
This namespace provides a OS-independent interface to many useful functions: filenames manipulation,...
Definition: math_frwds.h:25
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::UTC_time::sec
double sec
Definition: gnss_messages_common.h:174
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