2019-01-18 00:17:28 +01:00
|
|
|
#include <QApplication>
|
2016-10-24 00:21:40 +02:00
|
|
|
#include <QFile>
|
2016-10-26 20:17:05 +02:00
|
|
|
#include <QFileInfo>
|
2016-10-23 11:09:20 +02:00
|
|
|
#include <QLineF>
|
2019-03-21 23:45:04 +01:00
|
|
|
#include "common/config.h"
|
2016-10-23 11:09:20 +02:00
|
|
|
#include "gpxparser.h"
|
|
|
|
#include "tcxparser.h"
|
|
|
|
#include "csvparser.h"
|
2016-10-25 19:46:44 +02:00
|
|
|
#include "kmlparser.h"
|
2016-10-31 22:59:08 +01:00
|
|
|
#include "fitparser.h"
|
2016-11-10 00:08:11 +01:00
|
|
|
#include "igcparser.h"
|
2016-11-16 23:54:15 +01:00
|
|
|
#include "nmeaparser.h"
|
2018-04-15 10:08:50 +02:00
|
|
|
#include "oziparsers.h"
|
2018-08-08 20:18:08 +02:00
|
|
|
#include "locparser.h"
|
2018-08-10 22:46:04 +02:00
|
|
|
#include "slfparser.h"
|
2019-03-21 23:45:04 +01:00
|
|
|
#ifdef ENABLE_GEOJSON
|
2019-01-25 22:18:21 +01:00
|
|
|
#include "geojsonparser.h"
|
2019-03-21 23:45:04 +01:00
|
|
|
#endif // ENABLE_GEOJSON
|
2019-03-13 08:42:18 +01:00
|
|
|
#include "exifparser.h"
|
2019-08-15 21:27:55 +02:00
|
|
|
#include "cupparser.h"
|
2019-01-17 00:47:44 +01:00
|
|
|
#include "dem.h"
|
2016-10-23 11:09:20 +02:00
|
|
|
#include "data.h"
|
|
|
|
|
|
|
|
|
2017-09-14 20:19:19 +02:00
|
|
|
static GPXParser gpx;
|
|
|
|
static TCXParser tcx;
|
|
|
|
static KMLParser kml;
|
|
|
|
static FITParser fit;
|
|
|
|
static CSVParser csv;
|
|
|
|
static IGCParser igc;
|
|
|
|
static NMEAParser nmea;
|
2018-04-13 20:54:38 +02:00
|
|
|
static PLTParser plt;
|
|
|
|
static WPTParser wpt;
|
|
|
|
static RTEParser rte;
|
2018-08-08 20:18:08 +02:00
|
|
|
static LOCParser loc;
|
2018-08-10 22:46:04 +02:00
|
|
|
static SLFParser slf;
|
2019-03-21 23:45:04 +01:00
|
|
|
#ifdef ENABLE_GEOJSON
|
2019-01-25 22:18:21 +01:00
|
|
|
static GeoJSONParser geojson;
|
2019-03-21 23:45:04 +01:00
|
|
|
#endif // ENABLE_GEOJSON
|
2019-03-13 00:25:46 +01:00
|
|
|
static EXIFParser exif;
|
2019-08-15 21:27:55 +02:00
|
|
|
static CUPParser cup;
|
2017-09-14 20:19:19 +02:00
|
|
|
|
2017-07-27 19:47:46 +02:00
|
|
|
static QHash<QString, Parser*> parsers()
|
2016-10-23 11:09:20 +02:00
|
|
|
{
|
2017-07-27 19:47:46 +02:00
|
|
|
QHash<QString, Parser*> hash;
|
|
|
|
|
2018-03-09 18:57:23 +01:00
|
|
|
hash.insert("gpx", &gpx);
|
|
|
|
hash.insert("tcx", &tcx);
|
|
|
|
hash.insert("kml", &kml);
|
|
|
|
hash.insert("fit", &fit);
|
|
|
|
hash.insert("csv", &csv);
|
|
|
|
hash.insert("igc", &igc);
|
|
|
|
hash.insert("nmea", &nmea);
|
2018-04-13 20:54:38 +02:00
|
|
|
hash.insert("plt", &plt);
|
|
|
|
hash.insert("wpt", &wpt);
|
|
|
|
hash.insert("rte", &rte);
|
2018-08-08 20:18:08 +02:00
|
|
|
hash.insert("loc", &loc);
|
2018-08-10 22:46:04 +02:00
|
|
|
hash.insert("slf", &slf);
|
2019-03-21 23:45:04 +01:00
|
|
|
#ifdef ENABLE_GEOJSON
|
2019-01-25 22:18:21 +01:00
|
|
|
hash.insert("json", &geojson);
|
|
|
|
hash.insert("geojson", &geojson);
|
2019-03-21 23:45:04 +01:00
|
|
|
#endif // ENABLE_GEOJSON
|
2019-03-13 00:25:46 +01:00
|
|
|
hash.insert("jpeg", &exif);
|
|
|
|
hash.insert("jpg", &exif);
|
2019-08-15 21:27:55 +02:00
|
|
|
hash.insert("cup", &cup);
|
2017-07-27 19:47:46 +02:00
|
|
|
|
|
|
|
return hash;
|
2016-10-23 11:09:20 +02:00
|
|
|
}
|
|
|
|
|
2017-09-14 20:19:19 +02:00
|
|
|
|
2017-07-27 19:47:46 +02:00
|
|
|
QHash<QString, Parser*> Data::_parsers = parsers();
|
2019-01-22 23:01:40 +01:00
|
|
|
bool Data::_useDEM = false;
|
2017-07-27 19:47:46 +02:00
|
|
|
|
2019-01-31 01:46:53 +01:00
|
|
|
void Data::processData(const QList<TrackData> &trackData,
|
|
|
|
const QList<RouteData> &routeData)
|
2016-10-23 11:09:20 +02:00
|
|
|
{
|
2019-01-31 01:46:53 +01:00
|
|
|
for (int i = 0; i < trackData.count(); i++)
|
|
|
|
_tracks.append(Track(trackData.at(i)));
|
|
|
|
for (int i = 0; i < routeData.count(); i++)
|
|
|
|
_routes.append(Route(routeData.at(i)));
|
2019-01-17 00:47:44 +01:00
|
|
|
for (int i = 0; i < _waypoints.size(); i++) {
|
2019-01-22 23:01:40 +01:00
|
|
|
if (!_waypoints.at(i).hasElevation() || _useDEM) {
|
2019-01-17 00:47:44 +01:00
|
|
|
qreal elevation = DEM::elevation(_waypoints.at(i).coordinates());
|
|
|
|
if (!std::isnan(elevation))
|
|
|
|
_waypoints[i].setElevation(elevation);
|
|
|
|
}
|
|
|
|
}
|
2016-10-26 20:17:05 +02:00
|
|
|
}
|
|
|
|
|
2019-01-22 23:01:40 +01:00
|
|
|
Data::Data(const QString &fileName, bool poi)
|
2016-10-23 11:09:20 +02:00
|
|
|
{
|
|
|
|
QFile file(fileName);
|
2016-10-26 20:17:05 +02:00
|
|
|
QFileInfo fi(fileName);
|
2019-01-31 01:46:53 +01:00
|
|
|
QList<TrackData> trackData;
|
|
|
|
QList<RouteData> routeData;
|
2016-10-26 20:17:05 +02:00
|
|
|
|
2019-01-18 00:17:28 +01:00
|
|
|
_valid = false;
|
2016-10-23 11:09:20 +02:00
|
|
|
_errorLine = 0;
|
|
|
|
|
2016-10-31 22:59:08 +01:00
|
|
|
if (!file.open(QFile::ReadOnly)) {
|
2016-10-23 11:09:20 +02:00
|
|
|
_errorString = qPrintable(file.errorString());
|
2019-01-18 00:17:28 +01:00
|
|
|
return;
|
2016-10-23 11:09:20 +02:00
|
|
|
}
|
|
|
|
|
2016-10-26 20:17:05 +02:00
|
|
|
QHash<QString, Parser*>::iterator it;
|
|
|
|
if ((it = _parsers.find(fi.suffix().toLower())) != _parsers.end()) {
|
2019-01-31 01:46:53 +01:00
|
|
|
if (it.value()->parse(&file, trackData, routeData, _polygons,
|
|
|
|
_waypoints)) {
|
2019-01-22 23:01:40 +01:00
|
|
|
if (!poi)
|
2019-01-31 01:46:53 +01:00
|
|
|
processData(trackData, routeData);
|
2019-01-18 00:17:28 +01:00
|
|
|
_valid = true;
|
|
|
|
return;
|
|
|
|
} else {
|
|
|
|
_errorLine = it.value()->errorLine();
|
|
|
|
_errorString = it.value()->errorString();
|
2016-10-23 11:09:20 +02:00
|
|
|
}
|
2016-10-26 20:17:05 +02:00
|
|
|
} else {
|
|
|
|
for (it = _parsers.begin(); it != _parsers.end(); it++) {
|
2019-01-31 01:46:53 +01:00
|
|
|
if (it.value()->parse(&file, trackData, routeData, _polygons,
|
|
|
|
_waypoints)) {
|
2019-01-22 23:01:40 +01:00
|
|
|
if (!poi)
|
2019-01-31 01:46:53 +01:00
|
|
|
processData(trackData, routeData);
|
2019-01-18 00:17:28 +01:00
|
|
|
_valid = true;
|
|
|
|
return;
|
2016-10-26 20:17:05 +02:00
|
|
|
}
|
|
|
|
file.reset();
|
2016-10-23 11:09:20 +02:00
|
|
|
}
|
2016-10-26 20:17:05 +02:00
|
|
|
|
2018-09-24 23:07:11 +02:00
|
|
|
qWarning("Error loading data file: %s:", qPrintable(fileName));
|
2016-10-26 20:17:05 +02:00
|
|
|
for (it = _parsers.begin(); it != _parsers.end(); it++)
|
2018-09-24 23:07:11 +02:00
|
|
|
qWarning("%s: line %d: %s", qPrintable(it.key()),
|
2016-10-26 20:17:05 +02:00
|
|
|
it.value()->errorLine(), qPrintable(it.value()->errorString()));
|
|
|
|
|
|
|
|
_errorLine = 0;
|
|
|
|
_errorString = "Unknown format";
|
2016-10-23 11:09:20 +02:00
|
|
|
}
|
|
|
|
}
|
2017-07-27 19:47:46 +02:00
|
|
|
|
|
|
|
QString Data::formats()
|
|
|
|
{
|
2019-01-25 22:18:21 +01:00
|
|
|
QStringList l(filter());
|
|
|
|
qSort(l);
|
|
|
|
QString supported;
|
|
|
|
for (int i = 0; i < l.size(); i++) {
|
|
|
|
supported += l.at(i);
|
|
|
|
if (i != l.size() - 1)
|
|
|
|
supported += " ";
|
|
|
|
}
|
|
|
|
|
2018-02-04 15:30:54 +01:00
|
|
|
return
|
2019-01-25 22:18:21 +01:00
|
|
|
qApp->translate("Data", "Supported files") + " (" + supported + ");;"
|
2019-01-18 00:17:28 +01:00
|
|
|
+ qApp->translate("Data", "CSV files") + " (*.csv);;"
|
2019-08-15 21:27:55 +02:00
|
|
|
+ qApp->translate("Data", "CUP files") + " (*.cup);;"
|
2019-01-18 00:17:28 +01:00
|
|
|
+ qApp->translate("Data", "FIT files") + " (*.fit);;"
|
2019-03-21 23:45:04 +01:00
|
|
|
#ifdef ENABLE_GEOJSON
|
2019-01-25 22:18:21 +01:00
|
|
|
+ qApp->translate("Data", "GeoJSON files") + " (*.geojson *.json);;"
|
2019-03-21 23:45:04 +01:00
|
|
|
#endif // ENABLE_GEOJSON
|
2019-01-18 00:17:28 +01:00
|
|
|
+ qApp->translate("Data", "GPX files") + " (*.gpx);;"
|
|
|
|
+ qApp->translate("Data", "IGC files") + " (*.igc);;"
|
2019-03-13 00:25:46 +01:00
|
|
|
+ qApp->translate("Data", "JPEG images") + " (*.jpg *.jpeg);;"
|
2019-01-18 00:17:28 +01:00
|
|
|
+ qApp->translate("Data", "KML files") + " (*.kml);;"
|
|
|
|
+ qApp->translate("Data", "LOC files") + " (*.loc);;"
|
|
|
|
+ qApp->translate("Data", "NMEA files") + " (*.nmea);;"
|
|
|
|
+ qApp->translate("Data", "OziExplorer files") + " (*.plt *.rte *.wpt);;"
|
|
|
|
+ qApp->translate("Data", "SLF files") + " (*.slf);;"
|
|
|
|
+ qApp->translate("Data", "TCX files") + " (*.tcx);;"
|
|
|
|
+ qApp->translate("Data", "All files") + " (*)";
|
2017-07-27 19:47:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
QStringList Data::filter()
|
|
|
|
{
|
|
|
|
QStringList filter;
|
|
|
|
QHash<QString, Parser*>::iterator it;
|
|
|
|
|
|
|
|
for (it = _parsers.begin(); it != _parsers.end(); it++)
|
|
|
|
filter << QString("*.%1").arg(it.key());
|
|
|
|
|
|
|
|
return filter;
|
|
|
|
}
|
2019-01-17 00:47:44 +01:00
|
|
|
|
2019-01-22 23:01:40 +01:00
|
|
|
void Data::useDEM(bool use)
|
2019-01-17 00:47:44 +01:00
|
|
|
{
|
2019-01-22 23:01:40 +01:00
|
|
|
_useDEM = use;
|
|
|
|
Route::useDEM(use);
|
|
|
|
Track::useDEM(use);
|
2019-01-17 00:47:44 +01:00
|
|
|
}
|