From 1a983768185081f2480048f6ca20dc218f5a6d2c Mon Sep 17 00:00:00 2001
From: josidd <joseph.siddons@noc.ac.uk>
Date: Thu, 10 Oct 2024 09:53:11 +0100
Subject: [PATCH] feat: LatitudeError type for latitude > 90 or < -90

---
 GeoSpatialTools/utils.py | 4 ++++
 1 file changed, 4 insertions(+)
 create mode 100644 GeoSpatialTools/utils.py

diff --git a/GeoSpatialTools/utils.py b/GeoSpatialTools/utils.py
new file mode 100644
index 0000000..3b49497
--- /dev/null
+++ b/GeoSpatialTools/utils.py
@@ -0,0 +1,4 @@
+class LatitudeError(ValueError):
+    """Error for invalid Latitude Value"""
+
+    pass
-- 
GitLab