From 7ccfabe61e3cd57a995737fd6e0ef6d6873239a3 Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Wed, 19 Jun 2024 16:38:22 -0700 Subject: [PATCH] Update locationdata.py --- locationdata.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/locationdata.py b/locationdata.py index 78c6595..bd235ac 100644 --- a/locationdata.py +++ b/locationdata.py @@ -25,7 +25,8 @@ def where_am_i(lat=0, lon=0): whereIam += " " + address['county'] if 'country' in address: whereIam += " " + address['country'] - - whereIam += "Grid: " + mh.to_maiden(int(lat), int(lon), precision=4) + print(whereIam) + print(lat, lon) + #whereIam += "Grid: " + mh.to_maiden(int(lat), int(lon), precision=4) return whereIam \ No newline at end of file