mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-11-24 03:35:53 +01:00
Compare commits
No commits in common. "22c7ea7de64886b3571e7719a22c8bb88e357124" and "364867101fdc4ca1d5404002448a37a694a67c78" have entirely different histories.
22c7ea7de6
...
364867101f
@ -374,32 +374,32 @@
|
||||
<message>
|
||||
<location filename="../src/GUI/gui.cpp" line="221"/>
|
||||
<source>Open...</source>
|
||||
<translation>Megnyitás…</translation>
|
||||
<translation>Megnyitás...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/GUI/gui.cpp" line="228"/>
|
||||
<source>Open directory...</source>
|
||||
<translation>Könyvtár megnyitása…</translation>
|
||||
<translation>Könyvtár megnyitása...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/GUI/gui.cpp" line="233"/>
|
||||
<source>Print...</source>
|
||||
<translation>Nyomtatás…</translation>
|
||||
<translation>Nyomtatás...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/GUI/gui.cpp" line="239"/>
|
||||
<source>Export to PDF...</source>
|
||||
<translation>Exportálás PDF-be…</translation>
|
||||
<translation>Exportálás PDF-be...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/GUI/gui.cpp" line="246"/>
|
||||
<source>Export to PNG...</source>
|
||||
<translation>Exportálás PNG-be…</translation>
|
||||
<translation>Exportálás PNG-be...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/GUI/gui.cpp" line="253"/>
|
||||
<source>Close</source>
|
||||
<translation>Bezárás</translation>
|
||||
<translation>Fájl bezárása</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/GUI/gui.cpp" line="260"/>
|
||||
@ -409,7 +409,7 @@
|
||||
<message>
|
||||
<location filename="../src/GUI/gui.cpp" line="266"/>
|
||||
<source>Statistics...</source>
|
||||
<translation>Statisztika…</translation>
|
||||
<translation>Statisztika...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/GUI/gui.cpp" line="276"/>
|
||||
@ -419,7 +419,7 @@
|
||||
<message>
|
||||
<location filename="../src/GUI/gui.cpp" line="288"/>
|
||||
<source>Load POI file...</source>
|
||||
<translation>POI fájl betöltése…</translation>
|
||||
<translation>POI fájl betöltése...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/GUI/gui.cpp" line="292"/>
|
||||
@ -459,12 +459,12 @@
|
||||
<message>
|
||||
<location filename="../src/GUI/gui.cpp" line="339"/>
|
||||
<source>Load map...</source>
|
||||
<translation>Térkép betöltése…</translation>
|
||||
<translation>Térkép betöltése...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/GUI/gui.cpp" line="344"/>
|
||||
<source>Load map directory...</source>
|
||||
<translation>Térképmappa megadása…</translation>
|
||||
<translation>Térképmappa megadása...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/GUI/gui.cpp" line="347"/>
|
||||
@ -683,7 +683,7 @@
|
||||
<message>
|
||||
<location filename="../src/GUI/gui.cpp" line="604"/>
|
||||
<source>Options...</source>
|
||||
<translation>Beállítások…</translation>
|
||||
<translation>Beállítások...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/GUI/gui.cpp" line="611"/>
|
||||
|
@ -1,5 +1,4 @@
|
||||
#include <QDataStream>
|
||||
#include <QTimeZone>
|
||||
#include "common/tifffile.h"
|
||||
#include "common/util.h"
|
||||
#include "exifparser.h"
|
||||
@ -214,7 +213,7 @@ bool EXIFParser::parseTIFF(QFile *file, QVector<Waypoint> &waypoints)
|
||||
GPSIFD.value(GPSAltitudeRef)));
|
||||
wp.setTimestamp(QDateTime(QDate::fromString(text(tiff,
|
||||
GPSIFD.value(GPSDateStamp)), "yyyy:MM:dd"), time(tiff,
|
||||
GPSIFD.value(GPSTimeStamp)), QTimeZone::utc()));
|
||||
GPSIFD.value(GPSTimeStamp)), Qt::UTC));
|
||||
wp.setDescription(text(tiff, IFD0.value(ImageDescription)).trimmed());
|
||||
|
||||
waypoints.append(wp);
|
||||
|
@ -1,5 +1,4 @@
|
||||
#include <QtEndian>
|
||||
#include <QTimeZone>
|
||||
#include "GUI/format.h"
|
||||
#include "fitparser.h"
|
||||
|
||||
@ -308,7 +307,7 @@ bool FITParser::parseData(CTX &ctx, const MessageDefinition *def)
|
||||
switch (field->id) {
|
||||
case 1:
|
||||
waypoint.setTimestamp(QDateTime::fromSecsSinceEpoch(
|
||||
val.toUInt() + 631065600, QTimeZone::utc()));
|
||||
val.toUInt() + 631065600, Qt::UTC));
|
||||
break;
|
||||
case 2:
|
||||
waypoint.rcoordinates().setLat(
|
||||
@ -381,7 +380,7 @@ bool FITParser::parseData(CTX &ctx, const MessageDefinition *def)
|
||||
} else if (def->globalId == RECORD) {
|
||||
if (ctx.trackpoint.coordinates().isValid()) {
|
||||
ctx.trackpoint.setTimestamp(QDateTime::fromSecsSinceEpoch(
|
||||
ctx.timestamp + 631065600, QTimeZone::utc()));
|
||||
ctx.timestamp + 631065600, Qt::UTC));
|
||||
ctx.trackpoint.setRatio(ctx.ratio);
|
||||
ctx.segment.append(ctx.trackpoint);
|
||||
ctx.trackpoint = Trackpoint();
|
||||
@ -392,7 +391,7 @@ bool FITParser::parseData(CTX &ctx, const MessageDefinition *def)
|
||||
} else if (def->globalId == LOCATION) {
|
||||
if (waypoint.coordinates().isValid()) {
|
||||
waypoint.setTimestamp(QDateTime::fromSecsSinceEpoch(ctx.timestamp
|
||||
+ 631065600, QTimeZone::utc()));
|
||||
+ 631065600, Qt::UTC));
|
||||
ctx.waypoints.append(waypoint);
|
||||
}
|
||||
} else if (def->globalId == LAP && trigger >= 0) {
|
||||
@ -402,7 +401,7 @@ bool FITParser::parseData(CTX &ctx, const MessageDefinition *def)
|
||||
else
|
||||
waypoint.setName("Lap " + QString::number(++ctx.laps));
|
||||
waypoint.setTimestamp(QDateTime::fromSecsSinceEpoch(ctx.timestamp
|
||||
+ 631065600, QTimeZone::utc()));
|
||||
+ 631065600, Qt::UTC));
|
||||
if (trigger != 7 || ctx.laps > 1)
|
||||
ctx.waypoints.append(waypoint);
|
||||
}
|
||||
|
@ -1,5 +1,4 @@
|
||||
#include <cstring>
|
||||
#include <QTimeZone>
|
||||
#include "common/util.h"
|
||||
#include "igcparser.h"
|
||||
|
||||
@ -161,7 +160,7 @@ bool IGCParser::readBRecord(CTX &ctx, const char *line, int len,
|
||||
ctx.time = time;
|
||||
|
||||
Trackpoint t(Coordinates(lon, lat));
|
||||
t.setTimestamp(QDateTime(ctx.date, ctx.time, QTimeZone::utc()));
|
||||
t.setTimestamp(QDateTime(ctx.date, ctx.time, Qt::UTC));
|
||||
t.setElevation(ele);
|
||||
segment.append(t);
|
||||
|
||||
|
@ -1,5 +1,4 @@
|
||||
#include <cstring>
|
||||
#include <QTimeZone>
|
||||
#include "common/util.h"
|
||||
#include "nmeaparser.h"
|
||||
|
||||
@ -283,8 +282,7 @@ bool NMEAParser::readRMC(CTX &ctx, const char *line, int len,
|
||||
|
||||
if (!date.isNull()) {
|
||||
if (ctx.date.isNull() && !ctx.time.isNull() && !segment.isEmpty())
|
||||
segment.last().setTimestamp(QDateTime(date, ctx.time,
|
||||
QTimeZone::utc()));
|
||||
segment.last().setTimestamp(QDateTime(date, ctx.time, Qt::UTC));
|
||||
ctx.date = date;
|
||||
}
|
||||
|
||||
@ -292,7 +290,7 @@ bool NMEAParser::readRMC(CTX &ctx, const char *line, int len,
|
||||
if (valid && !ctx.GGA && c.isValid()) {
|
||||
Trackpoint t(c);
|
||||
if (!ctx.date.isNull() && !time.isNull())
|
||||
t.setTimestamp(QDateTime(ctx.date, time, QTimeZone::utc()));
|
||||
t.setTimestamp(QDateTime(ctx.date, time, Qt::UTC));
|
||||
segment.append(t);
|
||||
}
|
||||
|
||||
@ -365,7 +363,7 @@ bool NMEAParser::readGGA(CTX &ctx, const char *line, int len,
|
||||
if (c.isValid()) {
|
||||
Trackpoint t(c);
|
||||
if (!(ctx.time.isNull() || ctx.date.isNull()))
|
||||
t.setTimestamp(QDateTime(ctx.date, ctx.time, QTimeZone::utc()));
|
||||
t.setTimestamp(QDateTime(ctx.date, ctx.time, Qt::UTC));
|
||||
if (!std::isnan(ele))
|
||||
t.setElevation(ele - gh);
|
||||
segment.append(t);
|
||||
|
@ -46,7 +46,7 @@ bool OMDParser::readHeaderFile(const QString &omdPath, Header &hdr)
|
||||
quint8 avgHr = buffer[12];
|
||||
quint8 maxHr = buffer[13];
|
||||
|
||||
QDateTime date(QDate(Y + 2000, M, D), QTime(h, m), QTimeZone::utc());
|
||||
QDateTime date(QDate(Y + 2000, M, D), QTime(h, m), Qt::UTC);
|
||||
if (!date.isValid()) {
|
||||
qWarning("%s: invalid date", qPrintable(path));
|
||||
return false;
|
||||
@ -80,7 +80,7 @@ bool OMDParser::readF1(const char *chunk, const Header &hdr, Sequence &seq,
|
||||
return false;
|
||||
}
|
||||
t.setTimestamp(QDateTime(hdr.date.date(),
|
||||
hdr.date.time().addSecs(sec), QTimeZone::utc()));
|
||||
hdr.date.time().addSecs(sec), Qt::UTC));
|
||||
if (hdr.elevation)
|
||||
t.setElevation(alt);
|
||||
|
||||
@ -200,7 +200,7 @@ bool GHPParser::readHeaderFile(const QString &ghpPath, Header &hdr)
|
||||
quint8 avgHr = buffer[61];
|
||||
quint8 maxHr = buffer[60];
|
||||
|
||||
QDateTime date(QDate(Y + 2000, M, D), QTime(h, m, s), QTimeZone::utc());
|
||||
QDateTime date(QDate(Y + 2000, M, D), QTime(h, m, s), Qt::UTC);
|
||||
if (!date.isValid()) {
|
||||
qWarning("%s: invalid date", qPrintable(path));
|
||||
return false;
|
||||
@ -230,7 +230,7 @@ bool GHPParser::readF0(const char *chunk, const Header &hdr, int &time,
|
||||
return false;
|
||||
}
|
||||
t.setTimestamp(QDateTime(hdr.date.date(),
|
||||
hdr.date.time().addMSecs(time * 100), QTimeZone::utc()));
|
||||
hdr.date.time().addMSecs(time * 100), Qt::UTC));
|
||||
t.setSpeed(speed / 360.0);
|
||||
t.setElevation(alt);
|
||||
if (hdr.hr)
|
||||
|
@ -1,7 +1,6 @@
|
||||
#ifndef ONMOVEPARSERS_H
|
||||
#define ONMOVEPARSERS_H
|
||||
|
||||
#include <QTimeZone>
|
||||
#include "parser.h"
|
||||
|
||||
class OMDParser : public Parser
|
||||
@ -15,8 +14,8 @@ public:
|
||||
private:
|
||||
struct Header
|
||||
{
|
||||
Header() : date(QDateTime(QDate(1970, 1, 1), QTime(0, 0),
|
||||
QTimeZone::utc())), elevation(true), hr(true) {}
|
||||
Header() : date(QDateTime(QDate(1970, 1, 1), QTime(0, 0), Qt::UTC)),
|
||||
elevation(true), hr(true) {}
|
||||
|
||||
QDateTime date;
|
||||
bool elevation;
|
||||
@ -51,8 +50,8 @@ public:
|
||||
private:
|
||||
struct Header
|
||||
{
|
||||
Header() : date(QDateTime(QDate(1970, 1, 1), QTime(0, 0),
|
||||
QTimeZone::utc())), hr(true) {}
|
||||
Header() : date(QDateTime(QDate(1970, 1, 1), QTime(0, 0), Qt::UTC)),
|
||||
hr(true) {}
|
||||
|
||||
QDateTime date;
|
||||
bool hr;
|
||||
|
Loading…
Reference in New Issue
Block a user