mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Desktop: Import dive coordinates directly from GPS
This allows Subsurface to obtain the coordinates of a dive directly from a GPS track. It parses a GPX file (GPX V1.0 or V1.1) from a GPS to locate the trackpoint immediatedly after the start of a dive. There is an additional "Use GPS file" button in the Edit Dive Site panel that is selected from the Notes tab. Image: This allows one to select a GPX file, bringing up the Import GPS dialog. There is extensive provision for cross-checking that the dive track synchronises with the dive start and end. If the Save button in the dialog is pressed the dive coordinates are copied into the Dive Coordinates text box in the Edit Dive Site panel. The map moves to indicate the location of the dive site. The bulk of the work is done in importgps.cpp. The code is pretty intergrated: I tried to break it up in smaller commits but that was not feasible. The code includes responses to the comments by @neolit123 and @bstoeger. The C-based file input was replaced with Qt-based code using QChar, QString and QFile. [Dirk Hohndel: fixed several small issues in the .ui file, removed various headers includes that weren't needed and fixed printing of minutes as zero padded] Signed-off-by: willemferguson <willemferguson@zoology.up.ac.za> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
1f51251f1b
commit
1ecd5065a0
11 changed files with 977 additions and 12 deletions
|
@ -7,6 +7,7 @@
|
|||
#include "ui_locationinformation.h"
|
||||
#include "modeldelegates.h"
|
||||
#include "qt-models/divelocationmodel.h"
|
||||
#include "desktop-widgets/importgps.h"
|
||||
#include <stdint.h>
|
||||
#include <QAbstractListModel>
|
||||
#include <QSortFilterProxyModel>
|
||||
|
@ -17,6 +18,7 @@ public:
|
|||
LocationInformationWidget(QWidget *parent = 0);
|
||||
bool eventFilter(QObject*, QEvent*) override;
|
||||
void initFields(dive_site *ds);
|
||||
Ui::LocationInformation ui;
|
||||
|
||||
protected:
|
||||
void enableLocationButtons(bool enable);
|
||||
|
@ -31,6 +33,7 @@ public slots:
|
|||
void on_diveSiteDistance_textChanged(const QString &s);
|
||||
void reverseGeocode();
|
||||
void mergeSelectedDiveSites();
|
||||
void on_GPSbutton_clicked();
|
||||
private slots:
|
||||
void updateLabels();
|
||||
void diveSiteChanged(struct dive_site *ds, int field);
|
||||
|
@ -39,7 +42,6 @@ private slots:
|
|||
private:
|
||||
void keyPressEvent(QKeyEvent *e) override;
|
||||
void clearLabels();
|
||||
Ui::LocationInformation ui;
|
||||
GPSLocationInformationModel filter_model;
|
||||
dive_site *diveSite;
|
||||
int64_t closeDistance; // Distance of "close" dive sites in mm
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue