1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-10-07 15:23:22 +02:00
GPXSee/src/data/csvparser.cpp

48 lines
1.0 KiB
C++
Raw Normal View History

2016-10-23 11:09:20 +02:00
#include "csvparser.h"
bool CSVParser::parse(QFile *file, QList<TrackData> &tracks,
2019-01-18 00:17:28 +01:00
QList<RouteData> &routes, QVector<Waypoint> &waypoints)
2016-10-23 11:09:20 +02:00
{
Q_UNUSED(tracks);
2017-07-27 19:47:46 +02:00
Q_UNUSED(routes);
bool res;
2016-10-23 11:09:20 +02:00
2016-11-10 08:46:59 +01:00
_errorLine = 1;
2016-10-23 11:09:20 +02:00
_errorString.clear();
2016-10-29 10:40:30 +02:00
while (!file->atEnd()) {
QByteArray line = file->readLine();
2016-10-23 11:09:20 +02:00
QList<QByteArray> list = line.split(',');
if (list.size() < 3) {
2016-10-29 12:22:28 +02:00
_errorString = "Parse error";
2016-10-23 11:09:20 +02:00
return false;
}
qreal lon = list[0].trimmed().toDouble(&res);
if (!res || (lon < -180.0 || lon > 180.0)) {
2016-10-29 12:22:28 +02:00
_errorString = "Invalid longitude";
2016-10-23 11:09:20 +02:00
return false;
}
qreal lat = list[1].trimmed().toDouble(&res);
if (!res || (lat < -90.0 || lat > 90.0)) {
_errorString = "Invalid latitude";
return false;
}
Waypoint wp(Coordinates(lon, lat));
2016-10-23 11:09:20 +02:00
QByteArray ba = list[2].trimmed();
QString name = QString::fromUtf8(ba.data(), ba.size());
wp.setName(name);
if (list.size() > 3) {
ba = list[3].trimmed();
wp.setDescription(QString::fromUtf8(ba.data(), ba.size()));
}
2017-07-27 19:47:46 +02:00
waypoints.append(wp);
2016-11-10 08:46:59 +01:00
_errorLine++;
2016-10-23 11:09:20 +02:00
}
return true;
}