From 3c32246d9a5141a11ef19ae05e5b736ace5e1237 Mon Sep 17 00:00:00 2001 From: Colin Date: Thu, 24 Aug 2023 11:06:24 +0000 Subject: [PATCH] sane-weather: default to METAR only --- pkgs/additional/sane-weather/sane-weather | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/additional/sane-weather/sane-weather b/pkgs/additional/sane-weather/sane-weather index ff3fc8b9..9e4cc8e2 100755 --- a/pkgs/additional/sane-weather/sane-weather +++ b/pkgs/additional/sane-weather/sane-weather @@ -31,8 +31,10 @@ class WeatherSource: # - MET_NO # - NWS # api.weather.gov; provides hourly temperature, dewpoint, humidity, sky cover, wind, precipitation, snow; daily min/max temp, # - OWM - GWeather.Provider.METAR | - GWeather.Provider.NWS + # METAR, if you only want immediate conditions + GWeather.Provider.METAR + # METAR + NWS, if you want a forecast + # GWeather.Provider.METAR | GWeather.Provider.NWS ) self.world = GWeather.Location.get_world()