Browse Source

ignore unused return values

Sven Czarnian 3 năm trước cách đây
mục cha
commit
c767572dee
1 tập tin đã thay đổi với 3 bổ sung3 xóa
  1. 3 3
      aman/types/Waypoint.py

+ 3 - 3
aman/types/Waypoint.py

@@ -64,10 +64,10 @@ class Waypoint:
 
     def haversine(self, other):
         geodesic = pyproj.Geod(ellps='WGS84')
-        forward, backward, distance = geodesic.inv(self.Coordinate[1], self.Coordinate[0], other.Coordinate[1], other.Coordinate[0])
-        return distance / 1000.0
+        _, _, distance = geodesic.inv(self.Coordinate[1], self.Coordinate[0], other.Coordinate[1], other.Coordinate[0])
+        return distance / 1000.0 * 0.539957
 
     def bearing(self, other):
         geodesic = pyproj.Geod(ellps='WGS84')
-        forward, backward, distance = geodesic.inv(self.Coordinate[1], self.Coordinate[0], other.Coordinate[1], other.Coordinate[0])
+        forward, _, _ = geodesic.inv(self.Coordinate[1], self.Coordinate[0], other.Coordinate[1], other.Coordinate[0])
         return forward