-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve NMEA message with all NMEA topics
- Loading branch information
Facundo Garcia
committed
Jun 28, 2024
1 parent
90ebd66
commit 64463c3
Showing
11 changed files
with
560 additions
and
390 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,135 @@ | ||
/** | ||
* @file | ||
* @brief Implementation of NMEA-GX-GSV parser | ||
* | ||
* \verbatim | ||
* ___ ___ | ||
* \ \ / / | ||
* \ \/ / Fixposition AG | ||
* / /\ \ All right reserved. | ||
* /__/ \__\ | ||
* \endverbatim | ||
* | ||
*/ | ||
|
||
/* PACKAGE */ | ||
#include <fixposition_driver_lib/messages/nmea_type.hpp> | ||
#include <fixposition_driver_lib/messages/base_converter.hpp> | ||
|
||
namespace fixposition { | ||
|
||
void NmeaMessage::AddNmeaEpoch(const GP_GGA& msg) { | ||
// Populate time if empty | ||
if (time_str == "") { | ||
time_str = msg.time_str; | ||
} | ||
gpgga_time_str = msg.time_str; | ||
|
||
// Populate LLH position | ||
llh = msg.llh; | ||
|
||
// Populate quality | ||
quality = msg.quality; | ||
|
||
// Populate total number of satellites | ||
num_sv = msg.num_sv; | ||
|
||
// Populate GNSS receiver HDOP | ||
hdop_receiver = msg.hdop; | ||
|
||
// Populate differential data information | ||
diff_age = msg.diff_age; | ||
diff_sta = msg.diff_sta; | ||
|
||
// Populate position covariance [m^2] | ||
cov(0, 0) = msg.hdop * msg.hdop; | ||
cov(1, 1) = msg.hdop * msg.hdop; | ||
cov(2, 2) = 4 * msg.hdop * msg.hdop; | ||
cov(0, 1) = cov(1, 0) = 0.0; | ||
cov(0, 2) = cov(2, 0) = 0.0; | ||
cov(1, 2) = cov(2, 1) = 0.0; | ||
} | ||
|
||
void NmeaMessage::AddNmeaEpoch(const GP_GLL& msg) { | ||
// Populate time if empty | ||
if (time_str == "") { | ||
time_str = msg.time_str; | ||
} | ||
|
||
// Populate latitude and longitude if the vector is empty | ||
if (llh.isZero()) { | ||
llh(0) = msg.latlon(0); | ||
llh(1) = msg.latlon(1); | ||
} | ||
} | ||
|
||
void NmeaMessage::AddNmeaEpoch(const GN_GSA& msg) { | ||
// Populate DOP values (priority) | ||
pdop = msg.pdop; | ||
hdop = msg.hdop; | ||
vdop = msg.vdop; | ||
|
||
// Populate satellite information (priority) | ||
ids = msg.ids; | ||
} | ||
|
||
void NmeaMessage::AddNmeaEpoch(const GP_GST& msg) { | ||
// Populate time if empty | ||
if (time_str == "") { | ||
time_str = msg.time_str; | ||
} | ||
|
||
// Populate GNSS pseudorange error statistics (priority) | ||
rms_range = msg.rms_range; | ||
std_major = msg.std_major; | ||
std_minor = msg.std_minor; | ||
angle_major = msg.angle_major; | ||
std_lat = msg.std_lat; | ||
std_lon = msg.std_lon; | ||
std_alt = msg.std_alt; | ||
} | ||
|
||
void NmeaMessage::AddNmeaEpoch(const GX_GSV& msg) { | ||
// Populate GNSS satellites in view (priority) | ||
num_sats = msg.num_sats; | ||
sat_id = msg.sat_id; | ||
elev = msg.elev; | ||
azim = msg.azim; | ||
cno = msg.cno; | ||
} | ||
|
||
void NmeaMessage::AddNmeaEpoch(const GP_HDT& msg) { | ||
// Populate true heading (priority) | ||
heading = msg.heading; | ||
} | ||
|
||
void NmeaMessage::AddNmeaEpoch(const GP_RMC& msg) { | ||
// Populate time if empty | ||
if (time_str == "") { | ||
time_str = msg.time_str; | ||
} | ||
|
||
// Populate time if empty | ||
if (date_str == "") { | ||
date_str = msg.date_str; | ||
} | ||
|
||
// Populate SOG and COG (priority) | ||
speed = msg.speed_ms; | ||
course = msg.course; | ||
|
||
// Populate latitude and longitude if the vector is empty | ||
if (llh.isZero()) { | ||
llh(0) = msg.latlon(0); | ||
llh(1) = msg.latlon(1); | ||
} | ||
} | ||
|
||
void NmeaMessage::AddNmeaEpoch(const GP_ZDA& msg) { | ||
// Populate time and date | ||
time_str = msg.time_str; | ||
date_str = msg.date_str; | ||
gpzda_time_str = msg.time_str; | ||
} | ||
|
||
} // namespace fixposition |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.