1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2025-07-20 22:04:23 +02:00

Enable DEM elevation for all data types (waypoints, routes)

This commit is contained in:
2019-01-17 00:47:44 +01:00
parent b8a2b76d7c
commit bd4af8c7e5
10 changed files with 71 additions and 26 deletions

View File

@ -12,7 +12,7 @@
#include "map/ellipsoid.h"
#include "map/gcs.h"
#include "map/pcs.h"
#include "data/track.h"
#include "data/dem.h"
#include "opengl.h"
#include "gui.h"
#include "settings.h"
@ -65,8 +65,7 @@ App::App(int &argc, char **argv) : QApplication(argc, argv)
OPENGL_SET_SAMPLES(4);
loadDatums();
loadPCSs();
Track::setDEMDir(ProgramPaths::demDir());
DEM::setDir(ProgramPaths::demDir());
_gui = new GUI();
}