sane-weather: default to METAR only

This commit is contained in:
Colin 2023-08-24 11:06:24 +00:00
parent 6862d084ac
commit 3c32246d9a

View File

@ -31,8 +31,10 @@ class WeatherSource:
# - MET_NO # - MET_NO
# - NWS # api.weather.gov; provides hourly temperature, dewpoint, humidity, sky cover, wind, precipitation, snow; daily min/max temp, # - NWS # api.weather.gov; provides hourly temperature, dewpoint, humidity, sky cover, wind, precipitation, snow; daily min/max temp,
# - OWM # - OWM
GWeather.Provider.METAR | # METAR, if you only want immediate conditions
GWeather.Provider.NWS GWeather.Provider.METAR
# METAR + NWS, if you want a forecast
# GWeather.Provider.METAR | GWeather.Provider.NWS
) )
self.world = GWeather.Location.get_world() self.world = GWeather.Location.get_world()