Update locationdata.py

This commit is contained in:
SpudGunMan
2024-06-19 16:43:38 -07:00
parent fdda6c4a5b
commit 75dfb60a26

View File

@@ -25,8 +25,7 @@ def where_am_i(lat=0, lon=0):
whereIam += " " + address['county']
if 'country' in address:
whereIam += " " + address['country']
print(whereIam)
print(lat, lon)
whereIam += " Grid: " + mh.to_maiden(f'lat',f'lon',6)
grid = mh.to_maiden(lat,lon,6)
print(grid)
return whereIam