Skip to content
This repository was archived by the owner on Jun 22, 2026. It is now read-only.

Commit 2e14f5d

Browse files
committed
Quick elevation edge case fix.
1 parent a8ca33e commit 2e14f5d

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

scripts/explore/annotations.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,7 @@ def load(self):
6060
self.ned_ref[1],
6161
self.ned_ref[2])
6262
# print(m, ned)
63-
z = self.surface.get_elevation(ned[1], ned[0])
64-
ned[2] = -z
63+
ned[2] = self.surface.get_elevation(ned[1], ned[0])
6564
if len(m) == 3:
6665
self.add_marker( ned, "" )
6766
else:

0 commit comments

Comments
 (0)