Skip to content
Snippets Groups Projects
Commit f5a87d8c authored by Joan Vallvé Navarro's avatar Joan Vallvé Navarro
Browse files

Merge branch 'devel' of...

Merge branch 'devel' of ssh://git@gitlab.iri.upc.edu:2202/mobile_robotics/gauss_project/gnss_utils.git into devel
parents 7cc45cda 576249dc
No related branches found
No related tags found
2 merge requests!20new tag,!19new tag
......@@ -15,6 +15,14 @@ extern "C" {
// eigen
#include <eigen3/Eigen/Dense>
#ifndef RAD2DEG
#define RAD2DEG 180.0 / 3.14159265358979323846
#endif
#ifndef DEG2RAD
#define DEG2RAD 3.14159265358979323846 / 180.0
#endif
namespace GnssUtils
{
......
......@@ -36,6 +36,7 @@ RawDataType NovatelRaw::addDataStream(const std::vector<uint8_t>& data_stream)
case NAV_SBAS: // SBAS
std::cout << "SBAS received!\n";
nav_.copySbasCorrections(raw_data_.nav);
break;
case NAV_ALM_IONUTC: // Almanac and ion/utc parameters
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment