1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2025-01-19 04:02:09 +01:00

Added missing Lat/Lon based calibration points conversion to WGS84

This commit is contained in:
Martin Tůma 2017-04-17 19:01:01 +02:00
parent 4de3ddf71b
commit 3b55bc0efc

View File

@ -223,6 +223,9 @@ bool OfflineMap::createProjection(const QString &datum,
points[i].ll = _projection->xy2ll(points.at(i).pp); points[i].ll = _projection->xy2ll(points.at(i).pp);
else else
points[i].ll = toWGS84(_projection->xy2ll(points.at(i).pp), d); points[i].ll = toWGS84(_projection->xy2ll(points.at(i).pp), d);
} else {
if (!d.isWGS84())
points[i].ll = toWGS84(points[i].ll, d);
} }
} }