From 837d049acbd66e3f4f13066e0c243e44fda527ce Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Sun, 30 Mar 2025 14:00:14 -0700 Subject: [PATCH] Update locationdata.py --- modules/locationdata.py | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/locationdata.py b/modules/locationdata.py index a4cb5d9..3cf53b8 100644 --- a/modules/locationdata.py +++ b/modules/locationdata.py @@ -234,6 +234,7 @@ def get_NOAAweather(lat=0, lon=0, unit=0): # get weather data from NOAA units for metric unit = 1 is metric if use_metric: unit = 1 + logger.debug("Location: new API metric units not implemented yet") weather_url = "https://forecast.weather.gov/MapClick.php?FcstType=text&lat=" + str(lat) + "&lon=" + str(lon) weather_api = "https://api.weather.gov/points/" + str(lat) + "," + str(lon)