2018-05-05 05:44:20 +00:00
|
|
|
/*!
|
|
|
|
* \file gpx_printer.cc
|
2018-07-03 10:41:59 +00:00
|
|
|
* \brief Implementation of a class that prints PVT information to a gpx file
|
2018-05-05 05:44:20 +00:00
|
|
|
* \author Álvaro Cebrián Juan, 2018. acebrianjuan(at)gmail.com
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* -------------------------------------------------------------------------
|
|
|
|
*
|
|
|
|
* Copyright (C) 2010-2018 (see AUTHORS file for a list of contributors)
|
|
|
|
*
|
|
|
|
* GNSS-SDR is a software defined Global Navigation
|
|
|
|
* Satellite Systems receiver
|
|
|
|
*
|
|
|
|
* This file is part of GNSS-SDR.
|
|
|
|
*
|
|
|
|
* GNSS-SDR is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* GNSS-SDR is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2018-05-13 20:49:11 +00:00
|
|
|
* along with GNSS-SDR. If not, see <https://www.gnu.org/licenses/>.
|
2018-05-05 05:44:20 +00:00
|
|
|
*
|
|
|
|
* -------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include "gpx_printer.h"
|
|
|
|
#include <boost/date_time/posix_time/posix_time.hpp>
|
2018-10-27 22:42:28 +00:00
|
|
|
#include <boost/filesystem/operations.hpp> // for create_directories, exists
|
|
|
|
#include <boost/filesystem/path.hpp> // for path, operator<<
|
|
|
|
#include <boost/filesystem/path_traits.hpp> // for filesystem
|
2018-05-05 05:44:20 +00:00
|
|
|
#include <glog/logging.h>
|
|
|
|
#include <sstream>
|
|
|
|
|
|
|
|
using google::LogMessage;
|
|
|
|
|
2018-10-27 22:42:28 +00:00
|
|
|
|
|
|
|
Gpx_Printer::Gpx_Printer(const std::string& base_path)
|
|
|
|
{
|
|
|
|
positions_printed = false;
|
|
|
|
indent = " ";
|
|
|
|
gpx_base_path = base_path;
|
|
|
|
boost::filesystem::path full_path(boost::filesystem::current_path());
|
|
|
|
const boost::filesystem::path p(gpx_base_path);
|
|
|
|
if (!boost::filesystem::exists(p))
|
|
|
|
{
|
|
|
|
std::string new_folder;
|
|
|
|
for (auto& folder : boost::filesystem::path(gpx_base_path))
|
|
|
|
{
|
|
|
|
new_folder += folder.string();
|
|
|
|
boost::system::error_code ec;
|
|
|
|
if (!boost::filesystem::exists(new_folder))
|
|
|
|
{
|
|
|
|
if (!boost::filesystem::create_directory(new_folder, ec))
|
|
|
|
{
|
|
|
|
std::cout << "Could not create the " << new_folder << " folder." << std::endl;
|
|
|
|
gpx_base_path = full_path.string();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
new_folder += boost::filesystem::path::preferred_separator;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
gpx_base_path = p.string();
|
|
|
|
}
|
2018-12-02 14:42:38 +00:00
|
|
|
if (gpx_base_path != ".")
|
2018-10-27 22:42:28 +00:00
|
|
|
{
|
|
|
|
std::cout << "GPX files will be stored at " << gpx_base_path << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
gpx_base_path = gpx_base_path + boost::filesystem::path::preferred_separator;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-12-02 14:42:38 +00:00
|
|
|
bool Gpx_Printer::set_headers(const std::string& filename, bool time_tag_name)
|
2018-05-05 05:44:20 +00:00
|
|
|
{
|
|
|
|
boost::posix_time::ptime pt = boost::posix_time::second_clock::local_time();
|
|
|
|
tm timeinfo = boost::posix_time::to_tm(pt);
|
|
|
|
|
|
|
|
if (time_tag_name)
|
|
|
|
{
|
|
|
|
std::stringstream strm0;
|
|
|
|
const int year = timeinfo.tm_year - 100;
|
|
|
|
strm0 << year;
|
|
|
|
const int month = timeinfo.tm_mon + 1;
|
|
|
|
if (month < 10)
|
|
|
|
{
|
|
|
|
strm0 << "0";
|
|
|
|
}
|
|
|
|
strm0 << month;
|
|
|
|
const int day = timeinfo.tm_mday;
|
|
|
|
if (day < 10)
|
|
|
|
{
|
|
|
|
strm0 << "0";
|
|
|
|
}
|
|
|
|
strm0 << day << "_";
|
|
|
|
const int hour = timeinfo.tm_hour;
|
|
|
|
if (hour < 10)
|
|
|
|
{
|
|
|
|
strm0 << "0";
|
|
|
|
}
|
|
|
|
strm0 << hour;
|
|
|
|
const int min = timeinfo.tm_min;
|
|
|
|
if (min < 10)
|
|
|
|
{
|
|
|
|
strm0 << "0";
|
|
|
|
}
|
|
|
|
strm0 << min;
|
|
|
|
const int sec = timeinfo.tm_sec;
|
|
|
|
if (sec < 10)
|
|
|
|
{
|
|
|
|
strm0 << "0";
|
|
|
|
}
|
|
|
|
strm0 << sec;
|
|
|
|
|
|
|
|
gpx_filename = filename + "_" + strm0.str() + ".gpx";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
gpx_filename = filename + ".gpx";
|
|
|
|
}
|
2018-10-27 22:42:28 +00:00
|
|
|
|
|
|
|
gpx_filename = gpx_base_path + gpx_filename;
|
2018-05-05 05:44:20 +00:00
|
|
|
gpx_file.open(gpx_filename.c_str());
|
|
|
|
|
|
|
|
if (gpx_file.is_open())
|
|
|
|
{
|
|
|
|
DLOG(INFO) << "GPX printer writing on " << filename.c_str();
|
|
|
|
// Set iostream numeric format and precision
|
2018-12-02 14:42:38 +00:00
|
|
|
gpx_file.setf(gpx_file.std::ofstream::fixed, gpx_file.std::ofstream::floatfield);
|
2018-05-05 05:44:20 +00:00
|
|
|
gpx_file << std::setprecision(14);
|
|
|
|
gpx_file << "<?xml version=\"1.0\" encoding=\"UTF-8\"?>" << std::endl
|
|
|
|
<< "<gpx version=\"1.1\" creator=\"GNSS-SDR\"" << std::endl
|
2018-11-06 17:19:17 +00:00
|
|
|
<< indent << "xsi:schemaLocation=\"http://www.topografix.com/GPX/1/1 http://www.topografix.com/GPX/1/1/gpx.xsd http://www.garmin.com/xmlschemas/GpxExtensions/v3 http://www.garmin.com/xmlschemas/GpxExtensionsv3.xsd http://www.garmin.com/xmlschemas/TrackPointExtension/v2 http://www.garmin.com/xmlschemas/TrackPointExtensionv2.xsd\"" << std::endl
|
|
|
|
<< indent << "xmlns=\"http://www.topografix.com/GPX/1/1\"" << std::endl
|
|
|
|
<< indent << "xmlns:gpxx=\"http://www.garmin.com/xmlschemas/GpxExtensions/v3\"" << std::endl
|
|
|
|
<< indent << "xmlns:gpxtpx=\"http://www.garmin.com/xmlschemas/TrackPointExtension/v2\"" << std::endl
|
|
|
|
<< indent << "xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">" << std::endl
|
|
|
|
<< indent << "<trk>" << std::endl
|
|
|
|
<< indent << indent << "<name>Position fixes computed by GNSS-SDR v" << GNSS_SDR_VERSION << "</name>" << std::endl
|
|
|
|
<< indent << indent << "<desc>GNSS-SDR position log generated at " << pt << " (local time)</desc>" << std::endl
|
|
|
|
<< indent << indent << "<trkseg>" << std::endl;
|
2018-05-05 05:44:20 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-10-28 00:02:28 +00:00
|
|
|
std::cout << "File " << gpx_filename << " cannot be saved. Wrong permissions?" << std::endl;
|
2018-05-05 05:44:20 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-05-07 07:13:45 +00:00
|
|
|
bool Gpx_Printer::print_position(const std::shared_ptr<rtklib_solver>& position, bool print_average_values)
|
2018-05-05 05:44:20 +00:00
|
|
|
{
|
|
|
|
double latitude;
|
|
|
|
double longitude;
|
|
|
|
double height;
|
|
|
|
|
|
|
|
positions_printed = true;
|
2018-12-02 14:42:38 +00:00
|
|
|
const std::shared_ptr<rtklib_solver>& position_ = position;
|
2018-05-05 05:44:20 +00:00
|
|
|
|
2018-11-06 17:19:17 +00:00
|
|
|
double speed_over_ground = position_->get_speed_over_ground(); // expressed in m/s
|
|
|
|
double course_over_ground = position_->get_course_over_ground(); // expressed in deg
|
|
|
|
|
2018-05-07 07:13:45 +00:00
|
|
|
double hdop = position_->get_hdop();
|
|
|
|
double vdop = position_->get_vdop();
|
|
|
|
double pdop = position_->get_pdop();
|
|
|
|
std::string utc_time = to_iso_extended_string(position_->get_position_UTC_time());
|
2018-08-22 16:54:46 +00:00
|
|
|
if (utc_time.length() < 23) utc_time += ".";
|
|
|
|
utc_time.resize(23, '0'); // time up to ms
|
|
|
|
utc_time.append("Z"); // UTC time zone
|
2018-05-05 05:44:20 +00:00
|
|
|
|
|
|
|
if (print_average_values == false)
|
|
|
|
{
|
|
|
|
latitude = position_->get_latitude();
|
|
|
|
longitude = position_->get_longitude();
|
|
|
|
height = position_->get_height();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
latitude = position_->get_avg_latitude();
|
|
|
|
longitude = position_->get_avg_longitude();
|
|
|
|
height = position_->get_avg_height();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (gpx_file.is_open())
|
|
|
|
{
|
2018-11-06 17:19:17 +00:00
|
|
|
gpx_file << indent << indent << indent << "<trkpt lon=\"" << longitude << "\" lat=\"" << latitude << "\"><ele>" << height << "</ele>"
|
2018-05-07 07:13:45 +00:00
|
|
|
<< "<time>" << utc_time << "</time>"
|
2018-11-06 17:19:17 +00:00
|
|
|
<< "<hdop>" << hdop << "</hdop><vdop>" << vdop << "</vdop><pdop>" << pdop << "</pdop>"
|
|
|
|
<< "<extensions><gpxtpx:TrackPointExtension>"
|
|
|
|
<< "<gpxtpx:speed>" << speed_over_ground << "</gpxtpx:speed>"
|
|
|
|
<< "<gpxtpx:course>" << course_over_ground << "</gpxtpx:course>"
|
|
|
|
<< "</gpxtpx:TrackPointExtension></extensions></trkpt>" << std::endl;
|
2018-05-05 05:44:20 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool Gpx_Printer::close_file()
|
|
|
|
{
|
|
|
|
if (gpx_file.is_open())
|
|
|
|
{
|
2018-11-06 17:19:17 +00:00
|
|
|
gpx_file << indent << indent << "</trkseg>" << std::endl
|
|
|
|
<< indent << "</trk>" << std::endl
|
2018-05-05 05:44:20 +00:00
|
|
|
<< "</gpx>";
|
|
|
|
gpx_file.close();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Gpx_Printer::~Gpx_Printer()
|
|
|
|
{
|
|
|
|
close_file();
|
|
|
|
if (!positions_printed)
|
|
|
|
{
|
|
|
|
if (remove(gpx_filename.c_str()) != 0) LOG(INFO) << "Error deleting temporary GPX file";
|
|
|
|
}
|
|
|
|
}
|