From 788015934300e4374b694732d4e0ed8a5046abf2 Mon Sep 17 00:00:00 2001 From: Eric Bryant Date: Wed, 7 Nov 2018 11:51:37 -0500 Subject: [PATCH] fix initial Quadtree bounds --- siteupdate/python-teresco/siteupdate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/siteupdate/python-teresco/siteupdate.py b/siteupdate/python-teresco/siteupdate.py index 7f183c57..e4486f79 100755 --- a/siteupdate/python-teresco/siteupdate.py +++ b/siteupdate/python-teresco/siteupdate.py @@ -2081,7 +2081,7 @@ def __init__(self,filename,descr,vertices,edges,format,category): # For finding colocated Waypoints and concurrent segments, we have # quadtree of all Waypoints in existence to find them efficiently -all_waypoints = WaypointQuadtree(-180,-90,180,90) +all_waypoints = WaypointQuadtree(-90,-180,90,180) all_waypoints_lock = threading.Lock() print(et.et() + "Reading waypoints for all routes.")