2020-01-22 21:25:58 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
#ifndef PARSE_GPX_H
|
|
|
|
#define PARSE_GPX_H
|
|
|
|
|
2020-05-01 11:46:54 +00:00
|
|
|
#include <QString>
|
2020-01-22 21:25:58 +00:00
|
|
|
|
|
|
|
struct dive_coords { // This structure holds important information after parsing the GPX file:
|
|
|
|
time_t start_dive; // Start time of the current dive, obtained using current_dive (local time)
|
|
|
|
time_t end_dive; // End time of current dive (local time)
|
2020-03-19 15:41:02 +00:00
|
|
|
time_t start_track; // Start time of GPX track (UTC)
|
|
|
|
time_t end_track; // End time of GPX track (UTC)
|
2020-01-22 21:25:58 +00:00
|
|
|
double lon; // Longitude of the first trackpoint after the start of the dive
|
|
|
|
double lat; // Latitude of the first trackpoint after the start of the dive
|
|
|
|
int64_t settingsDiff_offset; // Local time difference between dive computer and GPS equipment
|
2020-03-19 15:41:02 +00:00
|
|
|
int64_t timeZone_offset; // UTC international time zone offset of dive site
|
2020-01-22 21:25:58 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
int getCoordsFromGPXFile(dive_coords *coords, QString fileName);
|
|
|
|
|
|
|
|
#endif
|