1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-10-06 23:03:22 +02:00
GPXSee/src/trackpoint.h

19 lines
288 B
C

#ifndef TRACKPOINT_H
#define TRACKPOINT_H
#include <QPointF>
#include <QDateTime>
struct Trackpoint
{
QPointF coordinates;
QDateTime timestamp;
qreal elevation;
qreal geoidheight;
qreal speed;
Trackpoint() {elevation = 0; geoidheight = 0; speed = -1;}
};
#endif // TRACKPOINT_H