MRPT  1.9.9
CObservationGPS.cpp
Go to the documentation of this file.
1 /* +------------------------------------------------------------------------+
2  | Mobile Robot Programming Toolkit (MRPT) |
3  | https://www.mrpt.org/ |
4  | |
5  | Copyright (c) 2005-2019, Individual contributors, see AUTHORS file |
6  | See: https://www.mrpt.org/Authors - All rights reserved. |
7  | Released under BSD License. See: https://www.mrpt.org/License |
8  +------------------------------------------------------------------------+ */
9 
10 #include "obs-precomp.h" // Precompiled headers
11 
12 #include <mrpt/math/matrix_serialization.h> // for << of matrices
15 #include <iomanip>
16 
17 using namespace std;
18 using namespace mrpt;
19 using namespace mrpt::obs;
20 using namespace mrpt::math;
21 
22 // This must be added to any CSerializable class implementation file.
24 
26 {
27  std::swap(timestamp, o.timestamp);
28  std::swap(originalReceivedTimestamp, o.originalReceivedTimestamp);
29  std::swap(has_satellite_timestamp, o.has_satellite_timestamp);
30  std::swap(sensorLabel, o.sensorLabel);
31  std::swap(sensorPose, o.sensorPose);
32  messages.swap(o.messages);
33 }
34 
35 uint8_t CObservationGPS::serializeGetVersion() const { return 11; }
36 void CObservationGPS::serializeTo(mrpt::serialization::CArchive& out) const
37 {
38  out << timestamp << originalReceivedTimestamp << sensorLabel << sensorPose;
39  out << has_satellite_timestamp; // v11
40 
41  const uint32_t nMsgs = messages.size();
42  out << nMsgs;
43  for (const auto& message : messages) message.second->writeToStream(out);
44 }
45 
46 void CObservationGPS::serializeFrom(
48 {
49  this->clear();
50 
51  switch (version)
52  {
53  case 10:
54  case 11:
55  {
56  in >> timestamp >> originalReceivedTimestamp >> sensorLabel >>
57  sensorPose;
58  if (version >= 11)
59  in >> has_satellite_timestamp; // v11
60  else
61  has_satellite_timestamp =
62  (this->timestamp != this->originalReceivedTimestamp);
63 
64  uint32_t nMsgs;
65  in >> nMsgs;
66  for (unsigned i = 0; i < nMsgs; i++)
67  {
68  gnss::gnss_message* msg =
69  gnss::gnss_message::readAndBuildFromStream(in);
70  messages[msg->message_type] = gnss::gnss_message_ptr(msg);
71  }
72  };
73  break;
74 
75  // OLD VERSIONS: Ensure we can load datasets from many years ago
76  // ==========
77  case 0:
78  {
79  bool has_GGA_datum_;
80  in >> has_GGA_datum_;
81  if (has_GGA_datum_)
82  {
83  auto* datum = new gnss::Message_NMEA_GGA();
84  in.ReadBuffer(&datum->fields, sizeof(datum->fields));
85  messages[gnss::NMEA_GGA] = gnss::gnss_message_ptr(datum);
86  }
87 
88  bool has_RMC_datum_;
89  in >> has_RMC_datum_;
90  if (has_RMC_datum_)
91  {
92  auto* datum = new gnss::Message_NMEA_RMC();
93  in.ReadBuffer(&datum->fields, sizeof(datum->fields));
94  messages[gnss::NMEA_RMC] = gnss::gnss_message_ptr(datum);
95  }
96  }
97  break;
98  case 1:
99  case 2:
100  case 3:
101  case 4:
102  case 5:
103  case 6:
104  case 7:
105  case 8:
106  case 9:
107  {
108  if (version >= 3)
109  in >> timestamp;
110  else
111  timestamp = INVALID_TIMESTAMP;
112 
113  bool has_GGA_datum_;
114  in >> has_GGA_datum_;
115  if (has_GGA_datum_)
116  {
118  gnss::Message_NMEA_GGA::content_t& GGA_datum = datum.fields;
119 
120  MRPT_READ_POD(in, GGA_datum.UTCTime.hour);
121  MRPT_READ_POD(in, GGA_datum.UTCTime.minute);
122  MRPT_READ_POD(in, GGA_datum.UTCTime.sec);
123  MRPT_READ_POD(in, GGA_datum.latitude_degrees);
124  MRPT_READ_POD(in, GGA_datum.longitude_degrees);
125  MRPT_READ_POD(in, GGA_datum.fix_quality);
126  MRPT_READ_POD(in, GGA_datum.altitude_meters);
127  if (version >= 9)
128  {
129  MRPT_READ_POD(in, GGA_datum.geoidal_distance);
132  }
133  else
134  {
135  GGA_datum.geoidal_distance = 0.0f;
136  GGA_datum.orthometric_altitude = 0.0f;
137  GGA_datum.corrected_orthometric_altitude = 0.0f;
138  }
139 
140  MRPT_READ_POD(in, GGA_datum.satellitesUsed);
141  MRPT_READ_POD(in, GGA_datum.thereis_HDOP);
142  MRPT_READ_POD(in, GGA_datum.HDOP);
143  this->setMsg(datum);
144  }
145 
146  bool has_RMC_datum_;
147  in >> has_RMC_datum_;
148  if (has_RMC_datum_)
149  {
151  gnss::Message_NMEA_RMC::content_t& RMC_datum = datum.fields;
152 
153  MRPT_READ_POD(in, RMC_datum.UTCTime.hour);
154  MRPT_READ_POD(in, RMC_datum.UTCTime.minute);
155  MRPT_READ_POD(in, RMC_datum.UTCTime.sec);
156  MRPT_READ_POD(in, RMC_datum.validity_char);
157  MRPT_READ_POD(in, RMC_datum.latitude_degrees);
158  MRPT_READ_POD(in, RMC_datum.longitude_degrees);
159  MRPT_READ_POD(in, RMC_datum.speed_knots);
160  MRPT_READ_POD(in, RMC_datum.direction_degrees);
161  this->setMsg(datum);
162  }
163  if (version > 1)
164  in >> sensorLabel;
165  else
166  sensorLabel = "";
167  if (version >= 4)
168  in >> sensorPose;
169  else
170  sensorPose.setFromValues(0, 0, 0, 0, 0, 0);
171  if (version >= 5)
172  {
173  bool has_PZS_datum_;
174  in >> has_PZS_datum_;
175  if (has_PZS_datum_)
176  {
177  auto* datum = new gnss::Message_TOPCON_PZS();
178  messages[gnss::TOPCON_PZS] = gnss::gnss_message_ptr(datum);
179  gnss::Message_TOPCON_PZS& PZS_datum = *datum;
180 
181  MRPT_READ_POD(in, PZS_datum.latitude_degrees);
182  MRPT_READ_POD(in, PZS_datum.longitude_degrees);
183  MRPT_READ_POD(in, PZS_datum.height_meters);
184  MRPT_READ_POD(in, PZS_datum.RTK_height_meters);
185  MRPT_READ_POD(in, PZS_datum.PSigma);
186  MRPT_READ_POD(in, PZS_datum.angle_transmitter);
187  MRPT_READ_POD(in, PZS_datum.nId);
188  MRPT_READ_POD(in, PZS_datum.Fix);
189  MRPT_READ_POD(in, PZS_datum.TXBattery);
190  MRPT_READ_POD(in, PZS_datum.RXBattery);
191  MRPT_READ_POD(in, PZS_datum.error);
192  // extra data?
193  if (version >= 6)
194  {
195  MRPT_READ_POD(in, PZS_datum.hasCartesianPosVel);
196  MRPT_READ_POD(in, PZS_datum.cartesian_x);
197  MRPT_READ_POD(in, PZS_datum.cartesian_y);
198  MRPT_READ_POD(in, PZS_datum.cartesian_z);
199  MRPT_READ_POD(in, PZS_datum.cartesian_vx);
200  MRPT_READ_POD(in, PZS_datum.cartesian_vy);
201  MRPT_READ_POD(in, PZS_datum.cartesian_vz);
202  MRPT_READ_POD(in, PZS_datum.hasPosCov);
203  MRPT_READ_POD(in, PZS_datum.pos_covariance);
204  MRPT_READ_POD(in, PZS_datum.hasVelCov);
205  MRPT_READ_POD(in, PZS_datum.vel_covariance);
206  MRPT_READ_POD(in, PZS_datum.hasStats);
209  if (version >= 8)
211  else
212  PZS_datum.stats_rtk_fix_progress = 0;
213  }
214  else
215  {
216  PZS_datum.hasCartesianPosVel = PZS_datum.hasPosCov =
217  PZS_datum.hasVelCov = PZS_datum.hasStats = false;
218  }
219  }
220  } // end version >=5
221 
222  // Added in V7:
223  if (version >= 7)
224  {
225  auto* datum = new gnss::Message_TOPCON_SATS();
226  messages[gnss::TOPCON_SATS] = gnss::gnss_message_ptr(datum);
227  bool has_SATS_datum_;
228  in >> has_SATS_datum_;
229  if (has_SATS_datum_)
230  {
232  "Reading TOPCON_SATS is broken: non-trivial POD data "
233  "read.");
234  // was: MRPT_READ_POD(in, SATS_datum.USIs);
235  // gnss::Message_TOPCON_SATS& SATS_datum = *datum;
236  }
237  }
238  }
239  break;
240  default:
242  };
243 
244  if (originalReceivedTimestamp == INVALID_TIMESTAMP)
245  originalReceivedTimestamp = timestamp;
246 }
247 
248 void CObservationGPS::dumpToStream(std::ostream& out) const
249 {
250  out << "\n------------- [CObservationGPS] Dump of " << messages.size()
251  << " messages --------------------\n";
252  for (const auto& m : messages) m.second->dumpToStream(out);
253  out << "-------------- [CObservationGPS] End of dump -----------------\n\n";
254 }
255 
256 void CObservationGPS::dumpToConsole(std::ostream& o) const
257 {
258  this->dumpToStream(o);
259 }
260 
261 mrpt::system::TTimeStamp CObservationGPS::getOriginalReceivedTimeStamp() const
262 {
263  return originalReceivedTimestamp;
264 }
265 
267 {
268  messages.clear();
269  timestamp = INVALID_TIMESTAMP;
270  originalReceivedTimestamp = INVALID_TIMESTAMP;
271 }
272 void CObservationGPS::getDescriptionAsText(std::ostream& o) const
273 {
274  using namespace mrpt::system; // for the TTimeStamp << operator
275 
276  CObservation::getDescriptionAsText(o);
277 
278  o << "Timestamp (UTC) of reception at the computer: "
279  << mrpt::system::dateTimeToString(originalReceivedTimestamp) << std::endl;
280  o << " (as time_t): " << std::fixed << std::setprecision(5)
281  << mrpt::system::timestampTotime_t(originalReceivedTimestamp)
282  << std::endl;
283  o << " (as TTimestamp): " << originalReceivedTimestamp << std::endl;
284 
285  o << "Sensor position on the robot/vehicle: " << sensorPose << std::endl;
286 
287  this->dumpToConsole(o);
288 }
289 
290 bool CObservationGPS::hasMsgType(const gnss::gnss_message_type_t type_id) const
291 {
292  return messages.find(type_id) != messages.end();
293 }
294 
295 mrpt::obs::gnss::gnss_message* CObservationGPS::getMsgByType(
296  const gnss::gnss_message_type_t type_id)
297 {
298  auto it = messages.find(type_id);
299  ASSERTMSG_(
300  it != messages.end(), mrpt::format(
301  "[CObservationGPS::getMsgByType] Cannot find "
302  "any observation of type `%u`",
303  static_cast<unsigned int>(type_id)));
304  return it->second.get();
305 }
306 /** \overload */
307 const mrpt::obs::gnss::gnss_message* CObservationGPS::getMsgByType(
308  const gnss::gnss_message_type_t type_id) const
309 {
310  auto it = messages.find(type_id);
311  ASSERTMSG_(
312  it != messages.end(), mrpt::format(
313  "[CObservationGPS::getMsgByType] Cannot find "
314  "any observation of type `%u`",
315  static_cast<unsigned int>(type_id)));
316  return it->second.get();
317 }
318 
319 // From: http://gnsstk.sourceforge.net/time__conversion_8c-source.html
320 #define TIMECONV_JULIAN_DATE_START_OF_GPS_TIME (2444244.5) // [days]
322  const unsigned short gps_week, const double gps_tow,
323  const unsigned int utc_offset, double* julian_date)
324 {
325  if (gps_tow < 0.0 || gps_tow > 604800.0) return false;
326  // GPS time is ahead of UTC time and Julian time by the UTC offset
327  *julian_date = (gps_week + (gps_tow - utc_offset) / 604800.0) * 7.0 +
329  return true;
330 }
331 
332 bool TIMECONV_IsALeapYear(const unsigned short year)
333 {
334  bool is_a_leap_year = false;
335  if ((year % 4) == 0)
336  {
337  is_a_leap_year = true;
338  if ((year % 100) == 0)
339  {
340  if ((year % 400) == 0)
341  is_a_leap_year = true;
342  else
343  is_a_leap_year = false;
344  }
345  }
346  return is_a_leap_year;
347 }
348 
350  /** Universal Time Coordinated [year] */
351  const unsigned short year,
352  /** Universal Time Coordinated [1-12 months] */
353  const unsigned char month,
354  /** Days in the specified month [1-28|29|30|31 days] */
355  unsigned char* days_in_month)
356 {
357  unsigned char utmp = 0;
358  bool is_a_leapyear = TIMECONV_IsALeapYear(year);
359 
360  switch (month)
361  {
362  case 1:
363  utmp = 31;
364  break;
365  case 2:
366  if (is_a_leapyear)
367  {
368  utmp = 29;
369  }
370  else
371  {
372  utmp = 28;
373  }
374  break;
375  case 3:
376  utmp = 31;
377  break;
378  case 4:
379  utmp = 30;
380  break;
381  case 5:
382  utmp = 31;
383  break;
384  case 6:
385  utmp = 30;
386  break;
387  case 7:
388  utmp = 31;
389  break;
390  case 8:
391  utmp = 31;
392  break;
393  case 9:
394  utmp = 30;
395  break;
396  case 10:
397  utmp = 31;
398  break;
399  case 11:
400  utmp = 30;
401  break;
402  case 12:
403  utmp = 31;
404  break;
405  default:
406  return false;
407  break;
408  }
409  *days_in_month = utmp;
410  return true;
411 }
412 /** Number of days since noon Universal Time Jan 1, 4713 BCE (Julian calendar)
413  * [days] */
415  const double julian_date, mrpt::system::TTimeParts& utc)
416 {
417  int a, b, c, d, e; // temporary values
418 
419  unsigned short year;
420  unsigned char month;
421  unsigned char day;
422  unsigned char hour;
423  unsigned char minute;
424  unsigned char days_in_month = 0;
425  double td; // temporary double
426  double seconds;
427  bool result;
428 
429  // Check the input.
430  if (julian_date < 0.0) return false;
431 
432  a = (int)(julian_date + 0.5);
433  b = a + 1537;
434  c = (int)(((double)b - 122.1) / 365.25);
435  d = (int)(365.25 * c);
436  e = (int)(((double)(b - d)) / 30.6001);
437 
438  td = b - d - (int)(30.6001 * e) + fmod(julian_date + 0.5, 1.0); // [days]
439  day = (unsigned char)td;
440  td -= day;
441  td *= 24.0; // [hours]
442  hour = (unsigned char)td;
443  td -= hour;
444  td *= 60.0; // [minutes]
445  minute = (unsigned char)td;
446  td -= minute;
447  td *= 60.0; // [s]
448  seconds = td;
449  month = (unsigned char)(e - 1 - 12 * (int)(e / 14));
450  year = (unsigned short)(c - 4715 - (int)((7.0 + (double)month) / 10.0));
451  // check for rollover issues
452  if (seconds >= 60.0)
453  {
454  seconds -= 60.0;
455  minute++;
456  if (minute >= 60)
457  {
458  minute -= 60;
459  hour++;
460  if (hour >= 24)
461  {
462  hour -= 24;
463  day++;
465  year, month, &days_in_month);
466  if (result == false) return false;
467  if (day > days_in_month)
468  {
469  day = 1;
470  month++;
471  if (month > 12)
472  {
473  month = 1;
474  year++;
475  }
476  }
477  }
478  }
479  }
480 
481  utc.year = year;
482  utc.month = month;
483  utc.day = day;
484  utc.hour = hour;
485  utc.minute = minute;
486  utc.second = seconds;
487  return true;
488 }
489 
490 bool CObservationGPS::GPS_time_to_UTC(
491  uint16_t gps_week, double gps_sec, const int leap_seconds_count,
492  mrpt::system::TTimeStamp& utc_out)
493 {
495  if (!GPS_time_to_UTC(gps_week, gps_sec, leap_seconds_count, tim))
496  return false;
498  return true;
499 }
500 
501 bool CObservationGPS::GPS_time_to_UTC(
502  uint16_t gps_week, double gps_sec, const int leap_seconds_count,
503  mrpt::system::TTimeParts& utc_out)
504 {
505  double julian_date = 0.0;
506  if (gps_sec < 0.0 || gps_sec > 604800.0) return false;
508  gps_week, gps_sec, leap_seconds_count, &julian_date))
509  return false;
510  if (!TIMECONV_GetUTCTimeFromJulianDate(julian_date, utc_out)) return false;
511  return true;
512 }
double angle_transmitter
Vertical angle of N-beam.
uint8_t stats_rtk_fix_progress
[0,100] %, only in modes other than RTK FIXED.
uint8_t fix_quality
NMEA standard values: 0 = invalid, 1 = GPS fix (SPS), 2 = DGPS fix, 3 = PPS fix, 4 = Real Time Kinema...
double height_meters
ellipsoidal height from N-beam [m] perhaps weighted with regular gps
content_t fields
Message content, accesible by individual fields.
double longitude_degrees
The measured longitude, in degrees (East:+ , West:-)
unsigned __int16 uint16_t
Definition: rptypes.h:47
double latitude_degrees
The measured latitude, in degrees (North:+ , South:-)
TopCon mmGPS devices: SATS, a generic structure for statistics about tracked satelites and their posi...
#define THROW_EXCEPTION(msg)
Definition: exceptions.h:67
mrpt::math::CMatrixFloat44 vel_covariance
Only if hasPosCov is true.
#define IMPLEMENTS_SERIALIZABLE(class_name, base, NameSpace)
To be added to all CSerializable-classes implementation files.
gnss_message_type_t
List of all known GNSS message types.
mrpt::system::TTimeStamp buildTimestampFromParts(const mrpt::system::TTimeParts &p)
Builds a timestamp from the parts (Parts are in UTC)
Definition: datetime.cpp:74
uint32_t satellitesUsed
The number of satelites used to compute this estimation.
STL namespace.
bool TIMECONV_GetJulianDateFromGPSTime(const unsigned short gps_week, const double gps_tow, const unsigned int utc_offset, double *julian_date)
bool TIMECONV_IsALeapYear(const unsigned short year)
GPS datum for TopCon&#39;s mmGPS devices: PZS.
int8_t validity_char
This will be: &#39;A&#39;=OK or &#39;V&#39;=void.
UTC_time UTCTime
The GPS sensor measured timestamp (in UTC time)
double latitude_degrees
The measured latitude, in degrees (North:+ , South:-)
uint8_t nId
ID of the transmitter [1-4], 0 if none.
double orthometric_altitude
The measured orthometric altitude, in meters (A)+(B).
bool hasCartesianPosVel
system error indicator
unsigned char uint8_t
Definition: rptypes.h:44
#define MRPT_THROW_UNKNOWN_SERIALIZATION_VERSION(__V)
For use in CSerializable implementations.
Definition: exceptions.h:97
mrpt::Clock::time_point TTimeStamp
A system independent time type, it holds the the number of 100-nanosecond intervals since January 1...
Definition: datetime.h:40
double altitude_meters
The measured altitude, in meters (A).
bool thereis_HDOP
This states whether to take into account the value in the HDOP field.
This base provides a set of functions for maths stuff.
double corrected_orthometric_altitude
The corrected (only for TopCon mmGPS) orthometric altitude, in meters mmGPS(A+B). ...
#define MRPT_READ_POD(_STREAM, _VARIABLE)
Definition: CArchive.h:439
mrpt::math::CMatrixFloat44 pos_covariance
Only if hasPosCov is true.
bool TIMECONV_GetNumberOfDaysInMonth(const unsigned short year, const unsigned char month, unsigned char *days_in_month)
const GLubyte * c
Definition: glext.h:6406
The parts of a date/time (it&#39;s like the standard &#39;tm&#39; but with fractions of seconds).
Definition: datetime.h:49
float HDOP
The HDOP (Horizontal Dilution of Precision) as returned by the sensor.
double timestampTotime_t(const mrpt::system::TTimeStamp t) noexcept
Transform from TTimeStamp to standard "time_t" (actually a double number, it can contain fractions of...
Definition: datetime.h:105
uint8_t day
Month (1-12)
Definition: datetime.h:53
double longitude_degrees
The measured longitude, in degrees (East:+ , West:-)
This namespace contains representation of robot actions and observations.
GLubyte GLubyte b
Definition: glext.h:6372
#define ASSERTMSG_(f, __ERROR_MSG)
Defines an assertion mechanism.
Definition: exceptions.h:108
gnss_message_type_t message_type
Type of GNSS message.
uint8_t RXBattery
battery level on receiver
double second
Minute (0-59)
Definition: datetime.h:56
double cartesian_x
Only if hasCartesianPosVel is true.
double geoidal_distance
Undulation: Difference between the measured altitude and the geoid, in meters (B).
bool TIMECONV_GetUTCTimeFromJulianDate(const double julian_date, mrpt::system::TTimeParts &utc)
Number of days since noon Universal Time Jan 1, 4713 BCE (Julian calendar) [days].
This is the global namespace for all Mobile Robot Programming Toolkit (MRPT) libraries.
uint8_t minute
Hour (0-23)
Definition: datetime.h:55
Virtual base class for "archives": classes abstracting I/O streams.
Definition: CArchive.h:53
Declares a class that represents any robot&#39;s observation.
Definition: CObservation.h:43
Pure virtual base for all message types.
std::string dateTimeToString(const mrpt::system::TTimeStamp t)
Convert a timestamp into this textual form (UTC time): YEAR/MONTH/DAY,HH:MM:SS.MMM.
Definition: datetime.cpp:148
std::string format(const char *fmt,...) MRPT_printf_format_check(1
A std::string version of C sprintf.
Definition: format.cpp:16
This file implements matrix/vector text and binary serialization.
double direction_degrees
Measured speed direction (in degrees)
GLuint in
Definition: glext.h:7391
content_t fields
Message content, accesible by individual fields.
uint8_t month
The year.
Definition: datetime.h:52
double latitude_degrees
The measured latitude, in degrees (North:+ , South:-)
uint8_t hour
Day (1-31)
Definition: datetime.h:54
#define TIMECONV_JULIAN_DATE_START_OF_GPS_TIME
typedef void(APIENTRYP PFNGLBLENDCOLORPROC)(GLclampf red
uint8_t TXBattery
battery level on transmitter
double cartesian_vx
Only if hasCartesianPosVel is true.
This class stores messages from GNSS or GNSS+IMU devices, from consumer-grade inexpensive GPS receive...
unsigned __int32 uint32_t
Definition: rptypes.h:50
double RTK_height_meters
ellipsoidal height [m] without N-beam correction
GLubyte GLubyte GLubyte a
Definition: glext.h:6372
void clear()
Clear the contents of this container.
Definition: ts_hash_map.h:182
#define INVALID_TIMESTAMP
Represents an invalid timestamp, where applicable.
Definition: datetime.h:43
UTC_time UTCTime
The GPS sensor measured timestamp (in UTC time)
A smart pointer to a GNSS message.
double longitude_degrees
The measured longitude, in degrees (East:+ , West:-)



Page generated by Doxygen 1.8.14 for MRPT 1.9.9 Git: 8fe78517f Sun Jul 14 19:43:28 2019 +0200 at lun oct 28 02:10:00 CET 2019