gpgga.cpp
Go to the documentation of this file.
1 // *****************************************************************************
2 //
3 // Copyright (c) 2017, Southwest Research Institute® (SwRI®)
4 // All rights reserved.
5 //
6 // Redistribution and use in source and binary forms, with or without
7 // modification, are permitted provided that the following conditions are met:
8 // * Redistributions of source code must retain the above copyright
9 // notice, this list of conditions and the following disclaimer.
10 // * Redistributions in binary form must reproduce the above copyright
11 // notice, this list of conditions and the following disclaimer in the
12 // documentation and/or other materials provided with the distribution.
13 // * Neither the name of Southwest Research Institute® (SwRI®) nor the
14 // names of its contributors may be used to endorse or promote products
15 // derived from this software without specific prior written permission.
16 //
17 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
18 // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 // ARE DISCLAIMED. IN NO EVENT SHALL SOUTHWEST RESEARCH INSTITUTE BE LIABLE FOR ANY
21 // DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
22 // (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
23 // LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
24 // ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
26 // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 //
28 // *****************************************************************************
29 
31 #include <boost/make_shared.hpp>
32 
34 
35 const std::string novatel_gps_driver::GpggaParser::MESSAGE_NAME = "GPGGA";
36 
38 {
39  return 0;
40 }
41 
43 {
44  return MESSAGE_NAME;
45 }
46 
47 novatel_gps_msgs::GpggaPtr novatel_gps_driver::GpggaParser::ParseAscii(const novatel_gps_driver::NmeaSentence& sentence) noexcept(false)
48 {
49  // Check the length first -- should be 15 elements long
50  const size_t MAX_LEN = 15;
51  const size_t MIN_LEN = 14;
52  if (sentence.body.size() > MAX_LEN || sentence.body.size() < MIN_LEN)
53  {
54  std::stringstream error;
55  error << "Expected GPGGA length " << MIN_LEN << " <= length <= "
56  << MAX_LEN << ", actual length = " << sentence.body.size();
57  throw ParseException(error.str());
58  }
59 
60  novatel_gps_msgs::GpggaPtr msg = boost::make_shared<novatel_gps_msgs::Gpgga>();
61 
62  msg->message_id = sentence.body[0];
63 
64  if (sentence.body[1].empty() || sentence.body[1] == "0")
65  {
66  msg->utc_seconds = 0;
67  }
68  else
69  {
70  double utc_float;
71  if (swri_string_util::ToDouble(sentence.body[1], utc_float))
72  {
73  msg->utc_seconds = UtcFloatToSeconds(utc_float);
74  }
75  else
76  {
77  throw ParseException("Error parsing UTC seconds in GPGGA");
78  }
79  }
80 
81  bool valid = true;
82 
83  double latitude = 0.0;
84  valid = valid && ParseDouble(sentence.body[2], latitude);
85  msg->lat = ConvertDmsToDegrees(latitude);
86 
87  double longitude = 0.0;
88  valid = valid && ParseDouble(sentence.body[4], longitude);
89  msg->lon = ConvertDmsToDegrees(longitude);
90 
91  msg->lat_dir = sentence.body[3];
92  msg->lon_dir = sentence.body[5];
93  valid = valid && ParseUInt32(sentence.body[6], msg->gps_qual);
94  valid = valid && ParseUInt32(sentence.body[7], msg->num_sats);
95 
96  valid = valid && ParseFloat(sentence.body[8], msg->hdop);
97  valid = valid && ParseFloat(sentence.body[9], msg->alt);
98  msg->altitude_units = sentence.body[10];
99  valid = valid && ParseFloat(sentence.body[11], msg->undulation);
100  msg->undulation_units = sentence.body[12];
101  valid = valid && ParseUInt32(sentence.body[13], msg->diff_age);
102  if (sentence.body.size() == MAX_LEN)
103  {
104  msg->station_id = sentence.body[14];
105  }
106  else
107  {
108  msg->station_id = "";
109  }
110 
111  if (!valid)
112  {
113  was_last_gps_valid_ = false;
114  throw ParseException("GPGGA log was invalid.");
115  }
116 
117  // If we got this far, we successfully parsed the message and will consider
118  // it valid
119  was_last_gps_valid_ = true;
120 
121  return msg;
122 }
123 
125 {
126  return was_last_gps_valid_;
127 }
msg
const std::string GetMessageName() const override
Definition: gpgga.cpp:42
static const std::string MESSAGE_NAME
Definition: gpgga.h:52
bool WasLastGpsValid() const
Definition: gpgga.cpp:124
double ParseDouble(const uint8_t *buffer)
Converts a buffer containing 8 bytes into a double.
uint32_t ParseUInt32(const uint8_t *buffer)
Converts a buffer containing 4 bytes into an unsigned 32-bit int.
float ParseFloat(const uint8_t *buffer)
Converts a buffer containing 4 bytes into a float.
double UtcFloatToSeconds(double utc_float)
double ConvertDmsToDegrees(double dms)
uint32_t GetMessageId() const override
Definition: gpgga.cpp:37
bool ToDouble(const std::string &string, double &value)
novatel_gps_msgs::GpggaPtr ParseAscii(const NmeaSentence &sentence) noexcept(false) override
Converts sentence into a ROS message pointer and returns it.
Definition: gpgga.cpp:47


novatel_gps_driver
Author(s):
autogenerated on Thu Jul 16 2020 03:17:30