From ad6d4952665db76892b29c2988114c5b7fb58abe Mon Sep 17 00:00:00 2001 From: josidd <joseph.siddons@noc.ac.uk> Date: Tue, 15 Oct 2024 07:52:28 +0100 Subject: [PATCH] fix: remove debug message --- GeoSpatialTools/octtree.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/GeoSpatialTools/octtree.py b/GeoSpatialTools/octtree.py index c18a316..e0eac8a 100644 --- a/GeoSpatialTools/octtree.py +++ b/GeoSpatialTools/octtree.py @@ -201,8 +201,6 @@ class SpaceTimeRectangle: def contains(self, point: SpaceTimeRecord) -> bool: """Test if a point is contained within the SpaceTimeRectangle""" if point.datetime > self.end or point.datetime < self.start: - print("DATETIME FAILS") - print(point.datetime) return False return self._test_north_south(point.lat) and self._test_east_west( point.lon -- GitLab