From 72f1c33187e285e383631ba159b83aca1f735eac Mon Sep 17 00:00:00 2001 From: josidd <joseph.siddons@noc.ac.uk> Date: Wed, 25 Sep 2024 14:50:00 +0100 Subject: [PATCH] fix: correct bearing for second focal point --- GeoSpatialTools/octtree.py | 2 +- GeoSpatialTools/quadtree.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/GeoSpatialTools/octtree.py b/GeoSpatialTools/octtree.py index 19724b4..c8f6ab3 100644 --- a/GeoSpatialTools/octtree.py +++ b/GeoSpatialTools/octtree.py @@ -273,7 +273,7 @@ class SpaceTimeEllipse: self.p2_lon, self.p2_lat = destination( self.lon, self.lat, - (180 - self.bearing) % 360, + (self.bearing - 180) % 360, self.c, ) diff --git a/GeoSpatialTools/quadtree.py b/GeoSpatialTools/quadtree.py index 41f52ed..f58c41c 100644 --- a/GeoSpatialTools/quadtree.py +++ b/GeoSpatialTools/quadtree.py @@ -193,7 +193,7 @@ class Ellipse: self.p2_lon, self.p2_lat = destination( self.lon, self.lat, - (180 - self.bearing) % 360, + (self.bearing - 180) % 360, self.c, ) -- GitLab