mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-07 20:03:23 +00:00
Fix compile: mixup of GeoDataCoordinates and GeoDataPoint
Signed-off-by: Thiago Macieira <thiago@macieira.org> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
0031b64df7
commit
7218fa3568
1 changed files with 2 additions and 2 deletions
|
@ -130,10 +130,10 @@ void GlobeGPS::reload()
|
||||||
place->setCoordinate(dive->longitude.udeg / 1000000.0,dive->latitude.udeg / 1000000.0 , 0, GeoDataCoordinates::Degree);
|
place->setCoordinate(dive->longitude.udeg / 1000000.0,dive->latitude.udeg / 1000000.0 , 0, GeoDataCoordinates::Degree);
|
||||||
// don't add dive locations twice, unless they are at least 50m apart
|
// don't add dive locations twice, unless they are at least 50m apart
|
||||||
if (locationMap[QString(dive->location)]) {
|
if (locationMap[QString(dive->location)]) {
|
||||||
GeoDataPoint existingLocation = locationMap[QString(dive->location)]->coordinate();
|
GeoDataCoordinates existingLocation = locationMap[QString(dive->location)]->coordinate();
|
||||||
GeoDataLineString segment = GeoDataLineString();
|
GeoDataLineString segment = GeoDataLineString();
|
||||||
segment.append(existingLocation);
|
segment.append(existingLocation);
|
||||||
GeoDataPoint newLocation = place->coordinate();
|
GeoDataCoordinates newLocation = place->coordinate();
|
||||||
segment.append(newLocation);
|
segment.append(newLocation);
|
||||||
double dist = segment.length(6371);
|
double dist = segment.length(6371);
|
||||||
// the dist is scaled to the radius given - so with 6371km as radius
|
// the dist is scaled to the radius given - so with 6371km as radius
|
||||||
|
|
Loading…
Add table
Reference in a new issue