Commit ad6d4952 authored by Joseph Siddons's avatar Joseph Siddons
Browse files

fix: remove debug message

parent 585acc0b
......@@ -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
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment