diff --git a/weather.openmeteo/CHANGELOG.txt b/weather.openmeteo/CHANGELOG.txt index 2718ea770..d74717081 100644 --- a/weather.openmeteo/CHANGELOG.txt +++ b/weather.openmeteo/CHANGELOG.txt @@ -1,3 +1,25 @@ +v1.0.29 (12/11/2025) +-------------------- +* Personalized weather forecast should now work with any skin +* Forecast support up to 12 days +* Reworked addon settings + +v1.0.26 (4/11/2025) +-------------------- +* Personalized weather forecast +* Alternative weather API for skin developers +* Added timeofday window properties +* Added snow window property +* Added season window property +* Added new default WMO weather icons +* Added setting to disable map layers for any location + Note: Only the first location is enabled by default +* Do not rely on addon settings for geolocation +* Fixed rare exception if weather data is not up to date +* Fixed addon settings corruption on some android devices (hopefully) +* Added translation: Italian (thanks @mapi68) +* Added translation: Russian (thanks @feruk) + v1.0.14 (22/07/2025) -------------------- * Added pressure units: hPa, kPa, mmHg, inHg, psi diff --git a/weather.openmeteo/README.md b/weather.openmeteo/README.md index b70e0b828..d04959d36 100644 --- a/weather.openmeteo/README.md +++ b/weather.openmeteo/README.md @@ -5,7 +5,7 @@ - No account or API key required - Geolocation (only on first run) -- Current, hourly and daily weather +- Current, hourly, daily and timeofday weather - Maps: Radar, Infrared, Temperature, Wind Maps, ... 12h history for map animations (Requires skin support) - Airquality: AQI, PM25, PM10, ... (Requires skin support) @@ -14,6 +14,6 @@ - Weather alert notifications - Weather alert properties for skins (Requires skin support) - Graphs (Requires skin support) -Special window properties that can be used for graphs (e.g. Example) +Special window properties that can be used for graphs - WMO weather codes support (Requires skin support) WMO icons are more precise than KODIs builtin codes diff --git a/weather.openmeteo/addon.xml b/weather.openmeteo/addon.xml index b9f0b0171..60302284f 100644 --- a/weather.openmeteo/addon.xml +++ b/weather.openmeteo/addon.xml @@ -1,5 +1,5 @@ - + @@ -20,6 +20,10 @@ Időjárás, térképek, levegőminőség és pollenelőrejelzés az open-meteo.com, a rainviewer.com, a weather.gc.ca és a met.no oldalakról Prakiraan cuaca oleh Open-Meteo Ramalan cuaca, peta, kualitas udara, dan serbuk sari dari open-meteo.com, rainviewer.com, weather.gc.ca dan met.no + Previsioni meteo di Open-Meteo + Meteo, mappe, qualità dell'aria e previsioni del polline da open-meteo.com, rainviewer.com, weather.gc.ca e met.no + Прогноз погоды от Open-Meteo + Прогноз погоды, карты, качество воздуха и пыльцы от open-meteo.com, rainviewer.com, weather.gc.ca и met.no Predpoveď počasia z Open-Meteo Počasie, mapy, kvalita vzduchu a peľové údaje z open-meteo.com, rainviewer.com, weather.gc.ca a met.no திறந்த-மெட்டியோவிலிருந்து வானிலை முன்னறிவிப்பு diff --git a/weather.openmeteo/lib/api.py b/weather.openmeteo/lib/api.py index 9f73abe13..5fc98b821 100644 --- a/weather.openmeteo/lib/api.py +++ b/weather.openmeteo/lib/api.py @@ -80,7 +80,7 @@ def getdata(type, loc, map=None): # URL if type == 'weather': - url = config.map_api.get(type).format(map[0], map[1]) + url = config.map_api.get(type).format(map[0], map[1], config.maxdays) elif type == 'airquality': url = config.map_api.get(type).format(map[0], map[1]) elif type == 'sun': @@ -159,7 +159,6 @@ def getrvindex(type): # Get location (GeoIP) def getloc(locid): utils.log(f'Geolocation ...') - utils.setsetting('geoip', 'true') # Get location try: diff --git a/weather.openmeteo/lib/config.py b/weather.openmeteo/lib/config.py index 2377ac028..2f3d990ca 100644 --- a/weather.openmeteo/lib/config.py +++ b/weather.openmeteo/lib/config.py @@ -9,8 +9,8 @@ map_api = { 'search': 'https://geocoding-api.open-meteo.com/v1/search?name={}&count=10&language=en&format=json', 'geoip': 'https://api.openht.org/geoipweather', - 'weather': 'https://api.open-meteo.com/v1/forecast?latitude={}&longitude={}¤t=temperature_2m,relative_humidity_2m,apparent_temperature,is_day,precipitation,weather_code,cloud_cover,pressure_msl,surface_pressure,wind_speed_10m,wind_direction_10m,wind_gusts_10m,dew_point_2m,precipitation_probability,visibility,uv_index,direct_radiation&hourly=temperature_2m,relative_humidity_2m,dew_point_2m,apparent_temperature,precipitation_probability,precipitation,weather_code,pressure_msl,surface_pressure,cloud_cover,visibility,wind_speed_10m,wind_direction_10m,wind_gusts_10m,uv_index,is_day,direct_radiation&daily=weather_code,temperature_2m_max,temperature_2m_min,sunrise,sunset,daylight_duration,sunshine_duration,uv_index_max,precipitation_hours&timeformat=unixtime&forecast_days=9&past_days=2', - 'airquality': 'https://air-quality-api.open-meteo.com/v1/air-quality?latitude={}&longitude={}¤t=european_aqi,us_aqi,pm10,pm2_5,carbon_monoxide,ozone,dust,nitrogen_dioxide,sulphur_dioxide,alder_pollen,birch_pollen,grass_pollen,mugwort_pollen,olive_pollen,ragweed_pollen&hourly=pm10,pm2_5,carbon_monoxide,ozone,dust,european_aqi,us_aqi,nitrogen_dioxide,sulphur_dioxide,alder_pollen,birch_pollen,grass_pollen,mugwort_pollen,olive_pollen,ragweed_pollen&timeformat=unixtime&forecast_days=7&past_days=2', + 'weather': 'https://api.open-meteo.com/v1/forecast?latitude={}&longitude={}¤t=temperature_2m,relative_humidity_2m,apparent_temperature,is_day,precipitation,snowfall,weather_code,cloud_cover,pressure_msl,surface_pressure,wind_speed_10m,wind_direction_10m,wind_gusts_10m,dew_point_2m,precipitation_probability,visibility,uv_index,direct_radiation&hourly=temperature_2m,relative_humidity_2m,dew_point_2m,apparent_temperature,precipitation_probability,precipitation,snowfall,weather_code,pressure_msl,surface_pressure,cloud_cover,visibility,wind_speed_10m,wind_direction_10m,wind_gusts_10m,uv_index,is_day,direct_radiation&daily=weather_code,temperature_2m_max,temperature_2m_min,sunrise,sunset,daylight_duration,sunshine_duration,uv_index_max,precipitation_hours&timeformat=unixtime&forecast_days={}&past_days=1', + 'airquality': 'https://air-quality-api.open-meteo.com/v1/air-quality?latitude={}&longitude={}¤t=european_aqi,us_aqi,pm10,pm2_5,carbon_monoxide,ozone,dust,nitrogen_dioxide,sulphur_dioxide,alder_pollen,birch_pollen,grass_pollen,mugwort_pollen,olive_pollen,ragweed_pollen&hourly=pm10,pm2_5,carbon_monoxide,ozone,dust,european_aqi,us_aqi,nitrogen_dioxide,sulphur_dioxide,alder_pollen,birch_pollen,grass_pollen,mugwort_pollen,olive_pollen,ragweed_pollen&timeformat=unixtime&forecast_days=4&past_days=1', 'sun': 'https://api.met.no/weatherapi/sunrise/3.0/sun?lat={}&lon={}&date={}', 'moon': 'https://api.met.no/weatherapi/sunrise/3.0/moon?lat={}&lon={}&date={}', 'osm': 'https://tile.openstreetmap.org/{}/{}/{}.png', @@ -22,10 +22,10 @@ } # Limits -maxdays = 8 -mindays = 2 -maxhours = 73 -minhours = 25 +maxdays = utils.setting('fcdays', 'int') +mindays = 1 +maxhours = 72 +minhours = 24 mindata = 0 maxdata = 300 @@ -47,240 +47,239 @@ # Mapping (Weather) map_weather = [ - [ "current", [ 'latitude' ], [ 'current', 'latitude' ], 'round2' ], - [ "current", [ 'longitude' ], [ 'current', 'longitude' ], 'round2' ], - [ "current", [ 'elevation' ], [ 'current', 'elevation' ], 'round' ], - - [ "current", [ 'current_units', 'wind_speed_10m' ], [ 'unit', 'speed' ], 'unitspeed' ], - [ "current", [ 'current_units', 'temperature_2m' ], [ 'unit', 'temperature' ], 'unittemperature' ], - [ "current", [ 'current_units', 'precipitation' ], [ 'unit', 'precipitation' ], 'unitprecipitation' ], - [ "current", [ 'current_units', 'pressure_msl' ], [ 'unit', 'pressure' ], 'unitpressure' ], - [ "current", [ 'current_units', 'relative_humidity_2m' ], [ 'unit', 'percent' ], 'unitpercent' ], - [ "current", [ 'hourly_units', 'visibility' ], [ 'unit', 'distance' ], 'unitdistance' ], - [ "current", [ 'hourly_units', 'direct_radiation' ], [ 'unit', 'radiation' ], 'unitradiation' ], - [ "current", [ 'hourly_units', 'direct_radiation' ], [ 'unit', 'solarradiation' ], 'unitradiation' ], - - [ "current", [ 'current', "time" ], [ 'current', "date" ], "date" ], - [ "hourly", [ 'hourly', "time" ], [ 'hourly', "date" ], "date" ], - [ "hourly", [ 'hourly', "time" ], [ 'hourly', "shortdate" ], "date" ], - - [ "current", [ 'current', "time" ], [ 'current', "time" ], "time" ], - [ "hourly", [ 'hourly', "time" ], [ 'hourly', "time" ], "time" ], - - [ "current", [ 'current', "time" ], [ 'current', "hour" ], "hour" ], - [ "hourly", [ 'hourly', "time" ], [ 'hourly', "hour" ], "hour" ], - - [ "current", [ 'current', "temperature_2m" ], [ 'current', "temperatureaddon" ], "temperature" ], - [ "current", [ 'current', "apparent_temperature" ], [ 'current', "feelslikeaddon" ], "temperature" ], - [ "current", [ 'current', "dew_point_2m" ], [ 'current', "dewpointaddon" ], "temperature" ], - - [ "current", [ 'current', "temperature_2m" ], [ 'current', "temperature" ], "temperaturekodi" ], - [ "currentkodi",[ 'current', "temperature_2m" ], [ 'current', "temperature" ], "round" ], - [ "current", [ 'current', "apparent_temperature" ], [ 'current', "feelslike" ], "temperaturekodi" ], - [ "currentkodi",[ 'current', "apparent_temperature" ], [ 'current', "feelslike" ], "round" ], - [ "current", [ 'current', "dew_point_2m" ], [ 'current', "dewpoint" ], "temperaturekodi" ], - [ "currentkodi",[ 'current', "dew_point_2m" ], [ 'current', "dewpoint" ], "round" ], - - [ "hourly", [ 'hourly', "temperature_2m" ], [ 'hourly', "temperature" ], "temperatureunit" ], - [ "hourlyskin", [ 'hourly', "temperature_2m" ], [ 'hourly', "temperature" ], "temperature" ], - [ "hourly", [ 'hourly', "temperature_2m" ], [ 'hourly', "temperaturegraph" ], "graph", "50", "temperature" ], - - [ "hourly", [ 'hourly', "apparent_temperature" ], [ 'hourly', "feelslike" ], "temperatureunit" ], - [ "hourlyskin", [ 'hourly', "apparent_temperature" ], [ 'hourly', "feelslike" ], "temperature" ], - [ "hourly", [ 'hourly', "apparent_temperature" ], [ 'hourly', "feelslikegraph" ], "graph", "50", "temperature" ], - - [ "hourly", [ 'hourly', "dew_point_2m" ], [ 'hourly', "dewpoint" ], "temperatureunit" ], - [ "hourlyskin", [ 'hourly', "dew_point_2m" ], [ 'hourly', "dewpoint" ], "temperature" ], - [ "hourly", [ 'hourly', "dew_point_2m" ], [ 'hourly', "dewpointgraph" ], "graph", "50", "temperature" ], - - [ "current", [ 'current', "relative_humidity_2m" ], [ 'current', "humidity" ], "%" ], - [ "currentkodi",[ 'current', "relative_humidity_2m" ], [ 'current', "humidity" ], "round" ], - [ "hourly", [ 'hourly', "relative_humidity_2m" ], [ 'hourly', "humidity" ], "roundpercent" ], - [ "hourlyskin", [ 'hourly', "relative_humidity_2m" ], [ 'hourly', "humidity" ], "round" ], - [ "hourly", [ 'hourly', "relative_humidity_2m" ], [ 'hourly', "humiditygraph" ], "graph", "100" ], - - [ "current", [ 'current', "precipitation" ], [ 'current', "precip" ], "precipitation" ], - [ "hourly", [ 'hourly', "precipitation" ], [ 'hourly', "precip" ], "precipitation" ], - [ "hourly", [ 'hourly', "precipitation" ], [ 'hourly', "precipitationgraph" ], "graph", "100" ], - [ "current", [ 'current', "precipitation_probability" ], [ 'current', "precipitation" ], "roundpercent" ], - [ "hourly", [ 'hourly', "precipitation_probability" ], [ 'hourly', "precipitation" ], "roundpercent" ], - [ "hourly", [ 'hourly', "precipitation_probability" ], [ 'hourly', "precipitationprobabilitygraph" ], "graph", "100" ], - - [ "currentskin",[ 'current', "precipitation" ], [ 'current', "precipitation" ], "precipitation" ], - [ "hourlyskin", [ 'hourly', "precipitation" ], [ 'hourly', "precipitation" ], "precipitation" ], - [ "currentskin",[ 'current', "precipitation_probability" ], [ 'current', "precipitationprobability" ], "round" ], - [ "hourlyskin", [ 'hourly', "precipitation_probability" ], [ 'hourly', "precipitationprobability" ], "round" ], - - [ "current", [ 'current', "pressure_msl" ], [ 'current', "pressure" ], "pressure" ], - [ "hourly", [ 'hourly', "pressure_msl" ], [ 'hourly', "pressure" ], "pressure" ], - [ "hourly", [ 'hourly', "pressure_msl" ], [ 'hourly', "pressuregraph" ], "graph", "100", "pressure" ], - - [ "current", [ 'current', "surface_pressure" ], [ 'current', "pressuresurface" ], "pressure" ], - [ "hourly", [ 'hourly', "surface_pressure" ], [ 'hourly', "pressuresurface" ], "pressure" ], - [ "hourly", [ 'hourly', "surface_pressure" ], [ 'hourly', "pressuresurfacegraph" ], "graph", "100", "pressure" ], - - [ "current", [ 'current', "wind_speed_10m" ], [ 'current', "wind" ], "windkodi" ], - [ "currentkodi",[ 'current', "wind_speed_10m" ], [ 'current', "wind" ], "round" ], - - [ "current", [ 'current', "wind_speed_10m" ], [ 'current', "windaddon" ], "windaddon" ], - [ "current", [ 'current', "wind_speed_10m" ], [ 'current', "windspeed" ], "speed" ], - [ "hourly", [ 'hourly', "wind_speed_10m" ], [ 'hourly', "windspeed" ], "speed" ], - [ "hourly", [ 'hourly', "wind_speed_10m" ], [ 'hourly', "windspeedgraph" ], "graph", "100" ], - - [ "current", [ 'current', "wind_direction_10m" ], [ 'current', "winddirection" ], "direction" ], - [ "current", [ 'current', "wind_direction_10m" ], [ 'current', "winddirectiondegree" ], "round" ], - [ "hourly", [ 'hourly', "wind_direction_10m" ], [ 'hourly', "winddirection" ], "direction" ], - [ "hourly", [ 'hourly', "wind_direction_10m" ], [ 'hourly', "winddirectiondegree" ], "round" ], - - [ "current", [ 'current', "wind_gusts_10m" ], [ 'current', "windgust" ], "speed" ], - [ "hourly", [ 'hourly', "wind_gusts_10m" ], [ 'hourly', "windgust" ], "speed" ], - [ "hourly", [ 'hourly', "wind_gusts_10m" ], [ 'hourly', "windgustgraph" ], "graph", "100" ], - - [ "current", [ 'current', "weather_code" ], [ 'current', "condition" ], "wmocond" ], - [ "current", [ 'current', "weather_code" ], [ 'current', "outlookicon" ], "image" ], - [ "current", [ 'current', "weather_code" ], [ 'current', "outlookiconwmo" ], "wmoimage" ], - [ "current", [ 'current', "weather_code" ], [ 'current', "fanartcode" ], "code" ], - [ "current", [ 'current', "weather_code" ], [ 'current', "fanartcodewmo" ], "wmocode" ], - [ "hourly", [ 'hourly', "weather_code" ], [ 'hourly', "outlook" ], "wmocond" ], - [ "hourly", [ 'hourly', "weather_code" ], [ 'hourly', "outlookicon" ], "image" ], - [ "hourly", [ 'hourly', "weather_code" ], [ 'hourly', "outlookiconwmo" ], "wmoimage" ], - [ "hourly", [ 'hourly', "weather_code" ], [ 'hourly', "fanartcode" ], "code" ], - [ "hourly", [ 'hourly', "weather_code" ], [ 'hourly', "fanartcodewmo" ], "wmocode" ], - - [ "hourly", [ 'hourly', "weather_code" ], [ 'hourly', "condition" ], "wmocond" ], - [ "hourly", [ 'hourly', "weather_code" ], [ 'hourly', "conditiongraph" ], "graph", "100" ], - - [ "current", [ 'current', "cloud_cover" ], [ 'current', "cloudiness" ], "roundpercent" ], - [ "currentskin",[ 'current', "cloud_cover" ], [ 'current', "cloudiness" ], "round" ], - [ "hourly", [ 'hourly', "cloud_cover" ], [ 'hourly', "cloudiness" ], "roundpercent" ], - [ "hourlyskin", [ 'hourly', "cloud_cover" ], [ 'hourly', "cloudiness" ], "round" ], - [ "hourly", [ 'hourly', "cloud_cover" ], [ 'hourly', "cloudinessgraph" ], "graph", "100" ], - - [ "current", [ 'current', "is_day" ], [ 'current', "isday" ], "bool" ], - [ "hourly", [ 'hourly', "is_day" ], [ 'hourly', "isday" ], "bool" ], - - [ "current", [ 'current', "visibility" ], [ 'current', "visibility" ], "distance" ], - [ "hourly", [ 'hourly', "visibility" ], [ 'hourly', "visibility" ], "distance" ], - [ "hourly", [ 'hourly', "visibility" ], [ 'hourly', "visibilitygraph" ], "graph", "100", "divide1000" ], - - [ "current", [ 'current', "uv_index" ], [ 'current', "uvindex" ], "uvindex" ], - [ "hourly", [ 'hourly', "uv_index" ], [ 'hourly', "uvindex" ], "uvindex" ], - [ "hourly", [ 'hourly', "uv_index" ], [ 'hourly', "uvindexgraph" ], "graph", "10" ], - - [ "current", [ 'current', "direct_radiation" ], [ 'current', "solarradiation" ], "radiation" ], - [ "hourly", [ 'hourly', "direct_radiation" ], [ 'hourly', "solarradiation" ], "radiation" ], - [ "hourly", [ 'hourly', "direct_radiation" ], [ 'hourly', "solarradiationgraph" ], "graph", "100", "divide10" ], - - [ "daily", [ 'daily', "time" ], [ 'day', "title" ], "weekday" ], - [ "daily", [ 'daily', "time" ], [ 'day', "date" ], "date" ], - [ "daily", [ 'daily', "time" ], [ 'day', "shortdate" ], "date" ], - [ "daily", [ 'daily', "time" ], [ 'day', "shortday" ], "weekdayshort" ], - [ "daily", [ 'daily', "time" ], [ 'day', "longday" ], "weekday" ], - [ "daily", [ 'daily', "weather_code" ], [ 'day', "condition" ], "wmocond" ], - [ "daily", [ 'daily', "weather_code" ], [ 'day', "outlook" ], "wmocond" ], - [ "daily", [ 'daily', "weather_code" ], [ 'day', "outlookicon" ], "image" ], - [ "daily", [ 'daily', "weather_code" ], [ 'day', "outlookiconwmo" ], "wmoimage" ], - [ "daily", [ 'daily', "weather_code" ], [ 'day', "fanartcode" ], "code" ], - [ "daily", [ 'daily', "weather_code" ], [ 'day', "fanartcodewmo" ], "wmocode" ], - - [ "daily", [ 'daily', "temperature_2m_max" ], [ 'day', "hightemp" ], "temperaturekodi" ], - [ "daily", [ 'daily', "temperature_2m_min" ], [ 'day', "lowtemp" ], "temperaturekodi" ], - [ "dailykodi", [ 'daily', "temperature_2m_max" ], [ 'day', "hightemp" ], "round" ], - [ "dailykodi", [ 'daily', "temperature_2m_min" ], [ 'day', "lowtemp" ], "round" ], - - [ "daily", [ 'daily', "temperature_2m_max" ], [ 'day', "hightemperature" ], "temperatureunit" ], - [ "daily", [ 'daily', "temperature_2m_min" ], [ 'day', "lowtemperature" ], "temperatureunit" ], - [ "dailyskin", [ 'daily', "temperature_2m_max" ], [ 'day', "hightemperature" ], "temperature" ], - [ "dailyskin", [ 'daily', "temperature_2m_min" ], [ 'day', "lowtemperature" ], "temperature" ], - - [ "daily", [ 'daily', "sunrise" ], [ 'day', "sunrise" ], "time" ], - [ "daily", [ 'daily', "sunset" ], [ 'day', "sunset" ], "time" ], - [ "current", [ 'daily', "sunrise", 1 ], [ 'today', "sunrise" ], "time" ], - [ "current", [ 'daily', "sunset", 1 ], [ 'today', "sunset" ], "time" ], - - [ "daily", [ 'daily', "daylight_duration" ], [ 'day', "daylight" ], "time" ], - [ "daily", [ 'daily', "sunshine_duration" ], [ 'day', "sunshine" ], "time" ], - [ "daily", [ 'daily', "precipitation_hours" ], [ 'day', "precipitationhours" ], "time" ], - [ "daily", [ 'daily', "uv_index_max" ], [ 'day', "uvindex" ], "uvindex" ], + + # Location + [ "current", [ 'latitude' ], [ 'current', 'latitude' ], 'round2' ], + [ "current", [ 'latitude' ], [ 'current', 'season' ], 'season' ], + [ "current", [ 'longitude' ], [ 'current', 'longitude' ], 'round2' ], + [ "current", [ 'elevation' ], [ 'current', 'elevation' ], 'round' ], + + # Units + [ "current", [ 'current_units', 'wind_speed_10m' ], [ 'unit', 'speed' ], 'unitspeed' ], + [ "current", [ 'current_units', 'temperature_2m' ], [ 'unit', 'temperature' ], 'unittemperature' ], + [ "current", [ 'current_units', 'precipitation' ], [ 'unit', 'precipitation' ], 'unitprecipitation' ], + [ "current", [ 'current_units', 'snowfall' ], [ 'unit', 'snow' ], 'unitsnow' ], + [ "current", [ 'current_units', 'pressure_msl' ], [ 'unit', 'pressure' ], 'unitpressure' ], + [ "current", [ 'current_units', 'relative_humidity_2m' ], [ 'unit', 'percent' ], 'unitpercent' ], + [ "current", [ 'hourly_units', 'visibility' ], [ 'unit', 'distance' ], 'unitdistance' ], + [ "current", [ 'hourly_units', 'direct_radiation' ], [ 'unit', 'radiation' ], 'unitradiation' ], + [ "current", [ 'hourly_units', 'direct_radiation' ], [ 'unit', 'solarradiation' ], 'unitradiation' ], + + # Current + [ "current", [ 'current', "time" ], [ 'current', "date" ], "date" ], + [ "current", [ 'current', "time" ], [ 'current', "time" ], "time" ], + [ "current", [ 'current', "time" ], [ 'current', "hour" ], "hour" ], + [ "current", [ 'current', "temperature_2m" ], [ 'current', "temperature" ], "temperaturekodi" ], + [ "current", [ 'current', "temperature_2m" ], [ 'current', "temperatureaddon" ], "temperature" ], + [ "currentkodi", [ 'current', "temperature_2m" ], [ 'current', "temperature" ], "round" ], + [ "currentskin", [ 'current', "temperature_2m" ], [ 'current', "temperature" ], "temperature" ], + [ "current", [ 'current', "apparent_temperature" ], [ 'current', "feelslike" ], "temperaturekodi" ], + [ "current", [ 'current', "apparent_temperature" ], [ 'current', "feelslikeaddon" ], "temperature" ], + [ "currentkodi", [ 'current', "apparent_temperature" ], [ 'current', "feelslike" ], "round" ], + [ "currentskin", [ 'current', "apparent_temperature" ], [ 'current', "feelslike" ], "temperature" ], + [ "current", [ 'current', "dew_point_2m" ], [ 'current', "dewpoint" ], "temperaturekodi" ], + [ "current", [ 'current', "dew_point_2m" ], [ 'current', "dewpointaddon" ], "temperature" ], + [ "currentkodi", [ 'current', "dew_point_2m" ], [ 'current', "dewpoint" ], "round" ], + [ "currentskin", [ 'current', "dew_point_2m" ], [ 'current', "dewpoint" ], "temperature" ], + [ "current", [ 'current', "relative_humidity_2m" ], [ 'current', "humidity" ], "%" ], + [ "current", [ 'current', "relative_humidity_2m" ], [ 'current', "humidityaddon" ], "round" ], + [ "currentkodi", [ 'current', "relative_humidity_2m" ], [ 'current', "humidity" ], "round" ], + [ "current", [ 'current', "precipitation_probability" ], [ 'current', "precipitation" ], "roundpercent" ], + [ "currentskin", [ 'current', "precipitation" ], [ 'current', "precipitation" ], "precipitation" ], + [ "current", [ 'current', "precipitation" ], [ 'current', "precipitationaddon" ], "precipitation" ], + [ "current", [ 'current', "precipitation_probability" ], [ 'current', "precipitationprobability" ], "round" ], + [ "current", [ 'current', "snowfall" ], [ 'current', "snow" ], "snow" ], + [ "current", [ 'current', "pressure_msl" ], [ 'current', "pressure" ], "pressure" ], + [ "current", [ 'current', "surface_pressure" ], [ 'current', "pressuresurface" ], "pressure" ], + [ "current", [ 'current', "wind_speed_10m" ], [ 'current', "wind" ], "windkodi" ], + [ "currentkodi", [ 'current', "wind_speed_10m" ], [ 'current', "wind" ], "round" ], + [ "currentskin", [ 'current', "wind_speed_10m" ], [ 'current', "wind" ], "windkodi" ], + [ "current", [ 'current', "wind_speed_10m" ], [ 'current', "windspeed" ], "speed" ], + [ "current", [ 'current', "wind_direction_10m" ], [ 'current', "winddirection" ], "direction" ], + [ "current", [ 'current', "wind_direction_10m" ], [ 'current', "winddirectiondegree" ], "round" ], + [ "current", [ 'current', "wind_gusts_10m" ], [ 'current', "windgust" ], "speed" ], + [ "current", [ 'current', "weather_code" ], [ 'current', "condition" ], "wmocond" ], + [ "current", [ 'current', "weather_code" ], [ 'current', "outlookicon" ], "image" ], + [ "currentskin", [ 'current', "weather_code" ], [ 'current', "outlookicon" ], "wmoimage" ], + [ "current", [ 'current', "weather_code" ], [ 'current', "outlookiconwmo" ], "wmoimage" ], + [ "current", [ 'current', "weather_code" ], [ 'current', "fanartcode" ], "code" ], + [ "currentskin", [ 'current', "weather_code" ], [ 'current', "fanartcode" ], "wmocode" ], + [ "current", [ 'current', "weather_code" ], [ 'current', "fanartcodewmo" ], "wmocode" ], + [ "current", [ 'current', "cloud_cover" ], [ 'current', "cloudiness" ], "roundpercent" ], + [ "current", [ 'current', "cloud_cover" ], [ 'current', "cloudinessaddon" ], "round" ], + [ "currentskin", [ 'current', "cloud_cover" ], [ 'current', "cloudiness" ], "round" ], + [ "current", [ 'current', "is_day" ], [ 'current', "isday" ], "bool" ], + [ "current", [ 'current', "visibility" ], [ 'current', "visibility" ], "distance" ], + [ "current", [ 'current', "uv_index" ], [ 'current', "uvindex" ], "uvindex" ], + [ "current", [ 'current', "direct_radiation" ], [ 'current', "solarradiation" ], "radiation" ], + + # Hourly + [ "hourly", [ 'hourly', "time" ], [ 'hourly', "date" ], "date" ], + [ "hourly", [ 'hourly', "time" ], [ 'hourly', "shortdate" ], "date" ], + [ "hourly", [ 'hourly', "time" ], [ 'hourly', "time" ], "time" ], + [ "hourly", [ 'hourly', "time" ], [ 'hourly', "hour" ], "hour" ], + [ "hourly", [ 'hourly', "temperature_2m" ], [ 'hourly', "temperature" ], "temperatureunit" ], + [ "hourlyskin", [ 'hourly', "temperature_2m" ], [ 'hourly', "temperature" ], "temperature" ], + [ "hourly", [ 'hourly', "apparent_temperature" ], [ 'hourly', "feelslike" ], "temperatureunit" ], + [ "hourlyskin", [ 'hourly', "apparent_temperature" ], [ 'hourly', "feelslike" ], "temperature" ], + [ "hourly", [ 'hourly', "dew_point_2m" ], [ 'hourly', "dewpoint" ], "temperatureunit" ], + [ "hourlyskin", [ 'hourly', "dew_point_2m" ], [ 'hourly', "dewpoint" ], "temperature" ], + [ "hourly", [ 'hourly', "relative_humidity_2m" ], [ 'hourly', "humidity" ], "roundpercent" ], + [ "hourlyskin", [ 'hourly', "relative_humidity_2m" ], [ 'hourly', "humidity" ], "round" ], + [ "hourly", [ 'hourly', "precipitation_probability" ], [ 'hourly', "precipitation" ], "roundpercent" ], + [ "hourlyskin", [ 'hourly', "precipitation" ], [ 'hourly', "precipitation" ], "precipitation" ], + [ "hourly", [ 'hourly', "precipitation" ], [ 'hourly', "precipitationaddon" ], "precipitation" ], + [ "hourly", [ 'hourly', "precipitation_probability" ], [ 'hourly', "precipitationprobability" ], "round" ], + [ "hourly", [ 'hourly', "snowfall" ], [ 'hourly', "snow" ], "snow" ], + [ "hourly", [ 'hourly', "pressure_msl" ], [ 'hourly', "pressure" ], "pressure" ], + [ "hourly", [ 'hourly', "surface_pressure" ], [ 'hourly', "pressuresurface" ], "pressure" ], + [ "hourly", [ 'hourly', "wind_speed_10m" ], [ 'hourly', "windspeed" ], "speed" ], + [ "hourly", [ 'hourly', "wind_direction_10m" ], [ 'hourly', "winddirection" ], "direction" ], + [ "hourly", [ 'hourly', "wind_direction_10m" ], [ 'hourly', "winddirectiondegree" ], "round" ], + [ "hourly", [ 'hourly', "wind_gusts_10m" ], [ 'hourly', "windgust" ], "speed" ], + [ "hourly", [ 'hourly', "weather_code" ], [ 'hourly', "outlook" ], "wmocond" ], + [ "hourly", [ 'hourly', "weather_code" ], [ 'hourly', "outlookicon" ], "image" ], + [ "hourlyskin", [ 'hourly', "weather_code" ], [ 'hourly', "outlookicon" ], "wmoimage" ], + [ "hourly", [ 'hourly', "weather_code" ], [ 'hourly', "outlookiconwmo" ], "wmoimage" ], + [ "hourly", [ 'hourly', "weather_code" ], [ 'hourly', "fanartcode" ], "code" ], + [ "hourlyskin", [ 'hourly', "weather_code" ], [ 'hourly', "fanartcode" ], "wmocode" ], + [ "hourly", [ 'hourly', "weather_code" ], [ 'hourly', "fanartcodewmo" ], "wmocode" ], + [ "hourly", [ 'hourly', "weather_code" ], [ 'hourly', "condition" ], "wmocond" ], + [ "hourly", [ 'hourly', "cloud_cover" ], [ 'hourly', "cloudiness" ], "roundpercent" ], + [ "hourlyskin", [ 'hourly', "cloud_cover" ], [ 'hourly', "cloudiness" ], "round" ], + [ "hourly", [ 'hourly', "is_day" ], [ 'hourly', "isday" ], "bool" ], + [ "hourly", [ 'hourly', "visibility" ], [ 'hourly', "visibility" ], "distance" ], + [ "hourly", [ 'hourly', "uv_index" ], [ 'hourly', "uvindex" ], "uvindex" ], + [ "hourly", [ 'hourly', "direct_radiation" ], [ 'hourly', "solarradiation" ], "radiation" ], + + # Graphs + [ "graph", [ 'hourly', "temperature_2m" ], [ 'hourly', "temperature.graph" ], "graph", "temperature" ], + [ "graph", [ 'hourly', "apparent_temperature" ], [ 'hourly', "feelslike.graph" ], "graph", "temperature" ], + [ "graph", [ 'hourly', "dew_point_2m" ], [ 'hourly', "dewpoint.graph" ], "graph", "temperature" ], + [ "graph", [ 'hourly', "relative_humidity_2m" ], [ 'hourly', "humidity.graph" ], "graph", "round" ], + [ "graph", [ 'hourly', "precipitation" ], [ 'hourly', "precipitation.graph" ], "graph", "precipitation" ], + [ "graph", [ 'hourly', "precipitation_probability" ], [ 'hourly', "precipitationprobability.graph" ], "graph", "round" ], + [ "graph", [ 'hourly', "snowfall" ], [ 'hourly', "snow.graph" ], "graph", "snow" ], + [ "graph", [ 'hourly', "pressure_msl" ], [ 'hourly', "pressure.graph" ], "graph", "pressure" ], + [ "graph", [ 'hourly', "surface_pressure" ], [ 'hourly', "pressuresurface.graph" ], "graph", "pressure" ], + [ "graph", [ 'hourly', "wind_speed_10m" ], [ 'hourly', "windspeed.graph" ], "graph", "speed" ], + [ "graph", [ 'hourly', "wind_gusts_10m" ], [ 'hourly', "windgust.graph" ], "graph", "speed" ], + [ "graph", [ 'hourly', "weather_code" ], [ 'hourly', "condition.graph" ], "graph", "round" ], + [ "graph", [ 'hourly', "cloud_cover" ], [ 'hourly', "cloudiness.graph" ], "graph", "round" ], + [ "graph", [ 'hourly', "visibility" ], [ 'hourly', "visibility.graph" ], "graph", "distance" ], + [ "graph", [ 'hourly', "uv_index" ], [ 'hourly', "uvindex.graph" ], "graph", "uvindex" ], + [ "graph", [ 'hourly', "direct_radiation" ], [ 'hourly', "solarradiation.graph" ], "graph", "radiation" ], + + # Daily + [ "daily", [ 'daily', "time" ], [ 'day', "title" ], "weekday" ], + [ "daily", [ 'daily', "time" ], [ 'day', "date" ], "date" ], + [ "daily", [ 'daily', "time" ], [ 'day', "shortdate" ], "date" ], + [ "daily", [ 'daily', "time" ], [ 'day', "shortday" ], "weekdayshort" ], + [ "daily", [ 'daily', "time" ], [ 'day', "longday" ], "weekday" ], + [ "daily", [ 'daily', "weather_code" ], [ 'day', "condition" ], "wmocond" ], + [ "daily", [ 'daily', "weather_code" ], [ 'day', "outlook" ], "wmocond" ], + [ "daily", [ 'daily', "weather_code" ], [ 'day', "outlookicon" ], "image" ], + [ "dailyskin", [ 'daily', "weather_code" ], [ 'day', "outlookicon" ], "wmoimage" ], + [ "daily", [ 'daily', "weather_code" ], [ 'day', "outlookiconwmo" ], "wmoimage" ], + [ "daily", [ 'daily', "weather_code" ], [ 'day', "fanartcode" ], "code" ], + [ "dailyskin", [ 'daily', "weather_code" ], [ 'day', "fanartcode" ], "wmocode" ], + [ "daily", [ 'daily', "weather_code" ], [ 'day', "fanartcodewmo" ], "wmocode" ], + [ "daily", [ 'daily', "temperature_2m_max" ], [ 'day', "hightemp" ], "temperaturekodi" ], + [ "dailykodi", [ 'daily', "temperature_2m_max" ], [ 'day', "hightemp" ], "round" ], + [ "dailyskin", [ 'daily', "temperature_2m_max" ], [ 'day', "hightemp" ], "temperature" ], + [ "daily", [ 'daily', "temperature_2m_min" ], [ 'day', "lowtemp" ], "temperaturekodi" ], + [ "dailykodi", [ 'daily', "temperature_2m_min" ], [ 'day', "lowtemp" ], "round" ], + [ "dailyskin", [ 'daily', "temperature_2m_min" ], [ 'day', "lowtemp" ], "temperature" ], + [ "daily", [ 'daily', "temperature_2m_max" ], [ 'day', "hightemperature" ], "temperatureunit" ], + [ "dailyskin", [ 'daily', "temperature_2m_max" ], [ 'day', "hightemperature" ], "temperature" ], + [ "daily", [ 'daily', "temperature_2m_min" ], [ 'day', "lowtemperature" ], "temperatureunit" ], + [ "dailyskin", [ 'daily', "temperature_2m_min" ], [ 'day', "lowtemperature" ], "temperature" ], + [ "daily", [ 'daily', "sunrise" ], [ 'day', "sunrise" ], "time" ], + [ "daily", [ 'daily', "sunset" ], [ 'day', "sunset" ], "time" ], + [ "daily", [ 'daily', "daylight_duration" ], [ 'day', "daylight" ], "seconds" ], + [ "daily", [ 'daily', "sunshine_duration" ], [ 'day', "sunshine" ], "seconds" ], + [ "daily", [ 'daily', "precipitation_hours" ], [ 'day', "precipitationhours" ], "round" ], + [ "daily", [ 'daily', "uv_index_max" ], [ 'day', "uvindex" ], "uvindex" ], + + # Today + [ "current", [ 'daily', "sunrise", 3 ], [ 'today', "sunrise" ], "time" ], + [ "current", [ 'daily', "sunset", 3 ], [ 'today', "sunset" ], "time" ], + [ "current", [ 'daily', "daylight_duration", 3 ], [ 'today', "daylight" ], "seconds" ], + [ "current", [ 'daily', "sunshine_duration", 3 ], [ 'today', "sunshine" ], "seconds" ], + + # TimeOfDay + [ "timeofday", [ 'hourly', "weather_code" ], [ 'timeofday', "isfetched" ], "timeofday" ], ] map_airquality = [ - [ "current", [ 'current_units', "pm10" ], [ 'unit', "particles" ], "unitparticles" ], - [ "current", [ 'current_units', "alder_pollen" ], [ 'unit', "pollen" ], "unitpollen" ], - - [ "current", [ 'current', "time" ], [ 'current', "aqdate" ], "date" ], - [ "current", [ 'current', "time" ], [ 'current', "aqtime" ], "time" ], - [ "current", [ 'current', "time" ], [ 'current', "aqhour" ], "hour" ], - - [ "current", [ 'current', "pm2_5" ], [ 'current', "pm25" ], "particles" ], - [ "hourly", [ 'hourly', "pm2_5" ], [ 'hourly', "pm25" ], "particles" ], - [ "hourly", [ 'hourly', "pm2_5" ], [ 'hourly', "pm25graph" ], "graph", "100" ], - - [ "current", [ 'current', "pm10" ], [ 'current', "pm10" ], "particles" ], - [ "hourly", [ 'hourly', "pm10" ], [ 'hourly', "pm10" ], "particles" ], - [ "hourly", [ 'hourly', "pm10" ], [ 'hourly', "pm10graph" ], "graph", "100" ], - - [ "current", [ 'current', "carbon_monoxide" ], [ 'current', "co" ], "particles" ], - [ "hourly", [ 'hourly', "carbon_monoxide" ], [ 'hourly', "co" ], "particles" ], - [ "hourly", [ 'hourly', "carbon_monoxide" ], [ 'hourly', "cograph" ], "graph", "100", "divide10" ], - - [ "current", [ 'current', "ozone" ], [ 'current', "ozone" ], "particles" ], - [ "hourly", [ 'hourly', "ozone" ], [ 'hourly', "ozone" ], "particles" ], - [ "hourly", [ 'hourly', "ozone" ], [ 'hourly', "ozonegraph" ], "graph", "100" ], - - [ "current", [ 'current', "dust" ], [ 'current', "dust" ], "particles" ], - [ "hourly", [ 'hourly', "dust" ], [ 'hourly', "dust" ], "particles" ], - [ "hourly", [ 'hourly', "dust" ], [ 'hourly', "dustgraph" ], "graph", "100" ], - - [ "current", [ 'current', "nitrogen_dioxide" ], [ 'current', "no2" ], "particles" ], - [ "hourly", [ 'hourly', "nitrogen_dioxide" ], [ 'hourly', "no2" ], "particles" ], - [ "hourly", [ 'hourly', "nitrogen_dioxide" ], [ 'hourly', "no2graph" ], "graph", "100" ], - - [ "current", [ 'current', "sulphur_dioxide" ], [ 'current', "so2" ], "particles" ], - [ "hourly", [ 'hourly', "sulphur_dioxide" ], [ 'hourly', "so2" ], "particles" ], - [ "hourly", [ 'hourly', "sulphur_dioxide" ], [ 'hourly', "so2graph" ], "graph", "100" ], - - [ "current", [ 'current', "european_aqi" ], [ 'current', "aqieu" ], "round" ], - [ "hourly", [ 'hourly', "european_aqi" ], [ 'hourly', "aqieu" ], "round" ], - [ "hourly", [ 'hourly', "european_aqi" ], [ 'hourly', "aqieugraph" ], "graph", "100" ], - [ "current", [ 'current', "us_aqi" ], [ 'current', "aqius" ], "round" ], - [ "hourly", [ 'hourly', "us_aqi" ], [ 'hourly', "aqius" ], "round" ], - [ "hourly", [ 'hourly', "us_aqi" ], [ 'hourly', "aqiusgraph" ], "graph", "100" ], - - [ "current", [ 'current', "alder_pollen" ], [ 'current', "alder" ], "pollen" ], - [ "hourly", [ 'hourly', "alder_pollen" ], [ 'hourly', "alder" ], "pollen" ], - [ "hourly", [ 'hourly', "alder_pollen" ], [ 'hourly', "aldergraph" ], "graph", "100" ], - - [ "current", [ 'current', "birch_pollen" ], [ 'current', "birch" ], "pollen" ], - [ "hourly", [ 'hourly', "birch_pollen" ], [ 'hourly', "birch" ], "pollen" ], - [ "hourly", [ 'hourly', "birch_pollen" ], [ 'hourly', "birchgraph" ], "graph", "100" ], - - [ "current", [ 'current', "grass_pollen" ], [ 'current', "grass" ], "pollen" ], - [ "hourly", [ 'hourly', "grass_pollen" ], [ 'hourly', "grass" ], "pollen" ], - [ "hourly", [ 'hourly', "grass_pollen" ], [ 'hourly', "grassgraph" ], "graph", "100" ], - - [ "current", [ 'current', "mugwort_pollen" ], [ 'current', "mugwort" ], "pollen" ], - [ "hourly", [ 'hourly', "mugwort_pollen" ], [ 'hourly', "mugwort" ], "pollen" ], - [ "hourly", [ 'hourly', "mugwort_pollen" ], [ 'hourly', "mugwortgraph" ], "graph", "100" ], - - [ "current", [ 'current', "olive_pollen" ], [ 'current', "olive" ], "pollen" ], - [ "hourly", [ 'hourly', "olive_pollen" ], [ 'hourly', "olive" ], "pollen" ], - [ "hourly", [ 'hourly', "olive_pollen" ], [ 'hourly', "olivegraph" ], "graph", "100" ], - - [ "current", [ 'current', "ragweed_pollen" ], [ 'current', "ragweed" ], "pollen" ], - [ "hourly", [ 'hourly', "ragweed_pollen" ], [ 'hourly', "ragweed" ], "pollen" ], - [ "hourly", [ 'hourly', "ragweed_pollen" ], [ 'hourly', "ragweedgraph" ], "graph", "100" ], + # Units + [ "current", [ 'current_units', "pm10" ], [ 'unit', "particles" ], "unitparticles" ], + [ "current", [ 'current_units', "alder_pollen" ], [ 'unit', "pollen" ], "unitpollen" ], + + # Current + [ "current", [ 'current', "time" ], [ 'current', "aqdate" ], "date" ], + [ "current", [ 'current', "time" ], [ 'current', "aqtime" ], "time" ], + [ "current", [ 'current', "time" ], [ 'current', "aqhour" ], "hour" ], + [ "current", [ 'current', "pm2_5" ], [ 'current', "pm25" ], "particles" ], + [ "current", [ 'current', "pm10" ], [ 'current', "pm10" ], "particles" ], + [ "current", [ 'current', "carbon_monoxide" ], [ 'current', "co" ], "particles" ], + [ "current", [ 'current', "ozone" ], [ 'current', "ozone" ], "particles" ], + [ "current", [ 'current', "dust" ], [ 'current', "dust" ], "particles" ], + [ "current", [ 'current', "nitrogen_dioxide" ], [ 'current', "no2" ], "particles" ], + [ "current", [ 'current', "sulphur_dioxide" ], [ 'current', "so2" ], "particles" ], + [ "current", [ 'current', "european_aqi" ], [ 'current', "aqieu" ], "round" ], + [ "current", [ 'current', "us_aqi" ], [ 'current', "aqius" ], "round" ], + [ "current", [ 'current', "alder_pollen" ], [ 'current', "alder" ], "pollen" ], + [ "current", [ 'current', "birch_pollen" ], [ 'current', "birch" ], "pollen" ], + [ "current", [ 'current', "grass_pollen" ], [ 'current', "grass" ], "pollen" ], + [ "current", [ 'current', "mugwort_pollen" ], [ 'current', "mugwort" ], "pollen" ], + [ "current", [ 'current', "olive_pollen" ], [ 'current', "olive" ], "pollen" ], + [ "current", [ 'current', "ragweed_pollen" ], [ 'current', "ragweed" ], "pollen" ], + + # Hourly + [ "hourly", [ 'hourly', "pm2_5" ], [ 'hourly', "pm25" ], "particles" ], + [ "hourly", [ 'hourly', "pm10" ], [ 'hourly', "pm10" ], "particles" ], + [ "hourly", [ 'hourly', "carbon_monoxide" ], [ 'hourly', "co" ], "particles" ], + [ "hourly", [ 'hourly', "ozone" ], [ 'hourly', "ozone" ], "particles" ], + [ "hourly", [ 'hourly', "dust" ], [ 'hourly', "dust" ], "particles" ], + [ "hourly", [ 'hourly', "nitrogen_dioxide" ], [ 'hourly', "no2" ], "particles" ], + [ "hourly", [ 'hourly', "sulphur_dioxide" ], [ 'hourly', "so2" ], "particles" ], + [ "hourly", [ 'hourly', "european_aqi" ], [ 'hourly', "aqieu" ], "round" ], + [ "hourly", [ 'hourly', "us_aqi" ], [ 'hourly', "aqius" ], "round" ], + [ "hourly", [ 'hourly', "alder_pollen" ], [ 'hourly', "alder" ], "pollen" ], + [ "hourly", [ 'hourly', "birch_pollen" ], [ 'hourly', "birch" ], "pollen" ], + [ "hourly", [ 'hourly', "grass_pollen" ], [ 'hourly', "grass" ], "pollen" ], + [ "hourly", [ 'hourly', "mugwort_pollen" ], [ 'hourly', "mugwort" ], "pollen" ], + [ "hourly", [ 'hourly', "olive_pollen" ], [ 'hourly', "olive" ], "pollen" ], + [ "hourly", [ 'hourly', "ragweed_pollen" ], [ 'hourly', "ragweed" ], "pollen" ], + + # Graphs + [ "graph", [ 'hourly', "pm2_5" ], [ 'hourly', "pm25.graph" ], "graph", "particles" ], + [ "graph", [ 'hourly', "pm10" ], [ 'hourly', "pm10.graph" ], "graph", "particles" ], + [ "graph", [ 'hourly', "carbon_monoxide" ], [ 'hourly', "co.graph" ], "graph", "particles" ], + [ "graph", [ 'hourly', "ozone" ], [ 'hourly', "ozone.graph" ], "graph", "particles" ], + [ "graph", [ 'hourly', "dust" ], [ 'hourly', "dust.graph" ], "graph", "particles" ], + [ "graph", [ 'hourly', "nitrogen_dioxide" ], [ 'hourly', "no2.graph" ], "graph", "particles" ], + [ "graph", [ 'hourly', "sulphur_dioxide" ], [ 'hourly', "so2.graph" ], "graph", "round" ], + [ "graph", [ 'hourly', "european_aqi" ], [ 'hourly', "aqieu.graph" ], "graph", "round" ], + [ "graph", [ 'hourly', "us_aqi" ], [ 'hourly', "aqius.graph" ], "graph", "pollen" ], + [ "graph", [ 'hourly', "alder_pollen" ], [ 'hourly', "alder.graph" ], "graph", "pollen" ], + [ "graph", [ 'hourly', "birch_pollen" ], [ 'hourly', "birch.graph" ], "graph", "pollen" ], + [ "graph", [ 'hourly', "grass_pollen" ], [ 'hourly', "grass.graph" ], "graph", "pollen" ], + [ "graph", [ 'hourly', "mugwort_pollen" ], [ 'hourly', "mugwort.graph" ], "graph", "pollen" ], + [ "graph", [ 'hourly', "olive_pollen" ], [ 'hourly', "olive.graph" ], "graph", "pollen" ], + [ "graph", [ 'hourly', "ragweed_pollen" ], [ 'hourly', "ragweed.graph" ], "graph", "pollen" ], ] map_moon = [ - [ "current", [ 'properties', 'moonrise', 'time' ], [ 'today', "moonrise" ], "timeiso" ], - [ "current", [ 'properties', 'moonrise', 'azimuth' ], [ 'today', "moonriseazimuth" ], "round" ], - [ "current", [ 'properties', 'moonset', 'time' ], [ 'today', "moonset" ], "timeiso" ], - [ "current", [ 'properties', 'moonset', 'azimuth' ], [ 'today', "moonsetazimuth" ], "round" ], - [ "current", [ 'properties', 'moonphase' ], [ 'today', "moonphase" ], "moonphase" ], - [ "current", [ 'properties', 'moonphase' ], [ 'today', "moonphaseimage" ], "moonphaseimage" ], - [ "current", [ 'properties', 'moonphase' ], [ 'today', "moonphasedegree" ], "round" ], + [ "current", [ 'properties', 'moonrise', 'time' ], [ 'today', "moonrise" ], "timeiso" ], + [ "current", [ 'properties', 'moonrise', 'azimuth' ], [ 'today', "moonriseazimuth" ], "round" ], + [ "current", [ 'properties', 'moonset', 'time' ], [ 'today', "moonset" ], "timeiso" ], + [ "current", [ 'properties', 'moonset', 'azimuth' ], [ 'today', "moonsetazimuth" ], "round" ], + [ "current", [ 'properties', 'moonphase' ], [ 'today', "moonphase" ], "moonphase" ], + [ "current", [ 'properties', 'moonphase' ], [ 'today', "moonphaseimage" ], "moonphaseimage" ], + [ "current", [ 'properties', 'moonphase' ], [ 'today', "moonphasedegree" ], "round" ], ] map = { @@ -399,8 +398,37 @@ 2400: 2160 } -# Pressure -map_pressure = { 950: 0, 951: 1, 952: 2, 953: 3, 954: 4, 955: 5, 956: 6, 957: 7, 958: 8, 959: 9, 960: 10, 961: 11, 962: 12, 963: 13, 964: 14, 965: 15, 966: 16, 967: 17, 968: 18, 969: 19, 970: 20, 971: 21, 972: 22, 973: 23, 974: 24, 975: 25, 976: 26, 977: 27, 978: 28, 979: 29, 980: 30, 981: 31, 982: 32, 983: 33, 984: 34, 985: 35, 986: 36, 987: 37, 988: 38, 989: 39, 990: 40, 991: 41, 992: 42, 993: 43, 994: 44, 995: 45, 996: 46, 997: 47, 998: 48, 999: 49, 1000: 50, 1001: 51, 1002: 52, 1003: 53, 1004: 54, 1005: 55, 1006: 56, 1007: 57, 1008: 58, 1009: 59, 1010: 60, 1011: 61, 1012: 62, 1013: 63, 1014: 64, 1015: 65, 1016: 66, 1017: 67, 1018: 68, 1019: 69, 1020: 70, 1021: 71, 1022: 72, 1023: 73, 1024: 74, 1025: 75, 1026: 76, 1027: 77, 1028: 78, 1029: 79, 1030: 80, 1031: 81, 1032: 82, 1033: 83, 1034: 84, 1035: 85, 1036: 86, 1037: 87, 1038: 88, 1039: 89, 1040: 90, 1041: 91, 1042: 92, 1043: 93, 1044: 94, 1045: 95, 1046: 96, 1047: 97, 1048: 98, 1049: 99, 1050: 100 } +# Personalized forecast +map_fcstart = { + 0: None, + 1: 1, + 2: 2, + 3: 3, + 4: 4, + 5: 5, + 6: 6, + 7: 7, + 8: 8, + 9: 9, + 10: 10, + 11: 11, + 12: 12, +} +map_fcend = { + 24: None, + 23: -1, + 22: -2, + 21: -3, + 20: -4, + 19: -5, + 18: -6, + 17: -7, + 16: -8, + 15: -9, + 14: -10, + 13: -11, + 14: -12, +} # Dynamic localization mapping def localization(): @@ -484,6 +512,13 @@ def localization(): '7': utils.loc(47) } + localization.timeofday = { + 0: utils.locaddon(32480), + 1: utils.locaddon(32481), + 2: utils.locaddon(32482), + 3: utils.locaddon(32483), + } + localization.layers = { 'rvradar': utils.locaddon(32400), 'rvsatellite': utils.locaddon(32401), @@ -495,8 +530,10 @@ def localization(): def alert(cache=False): alert.map = { - 'temperaturegraph': { + 'temperature.graph': { 'type': 'temperature', + 'unit': 'temperature', + 'icon': 'temperature', 'loc': 32320, 'alert_temperature_high_1': utils.setting('alert_temperature_high_1', 'str', cache), 'alert_temperature_high_2': utils.setting('alert_temperature_high_2', 'str', cache), @@ -505,204 +542,283 @@ def alert(cache=False): 'alert_temperature_low_2': utils.setting('alert_temperature_low_2', 'str', cache), 'alert_temperature_low_3': utils.setting('alert_temperature_low_3', 'str', cache), }, - 'precipitationgraph': { + 'precipitation.graph': { 'type': 'precipitation', + 'unit': 'precipitation', + 'icon': 'precipitation', 'loc': 32321, 'alert_precipitation_high_1': utils.setting('alert_precipitation_high_1', 'str', cache), 'alert_precipitation_high_2': utils.setting('alert_precipitation_high_2', 'str', cache), 'alert_precipitation_high_3': utils.setting('alert_precipitation_high_3', 'str', cache), }, - 'conditiongraph': { + 'snow.graph': { + 'type': 'snow', + 'unit': 'snow', + 'icon': 'snow', + 'loc': 32217, + 'alert_snow_high_1': utils.setting('alert_snow_high_1', 'str', cache), + 'alert_snow_high_2': utils.setting('alert_snow_high_2', 'str', cache), + 'alert_snow_high_3': utils.setting('alert_snow_high_3', 'str', cache), + }, + 'condition.graph': { 'type': 'condition', + 'unit': '', + 'icon': 'condition', 'loc': 32322, 'alert_condition_wmo_1': utils.setting('alert_condition_wmo_1', 'str', cache), 'alert_condition_wmo_2': utils.setting('alert_condition_wmo_2', 'str', cache), 'alert_condition_wmo_3': utils.setting('alert_condition_wmo_3', 'str', cache), }, - 'windspeedgraph': { + 'windspeed.graph': { 'type': 'windspeed', + 'unit': 'speed', + 'icon': 'wind', 'loc': 32323, 'alert_windspeed_high_1': utils.setting('alert_windspeed_high_1', 'str', cache), 'alert_windspeed_high_2': utils.setting('alert_windspeed_high_2', 'str', cache), 'alert_windspeed_high_3': utils.setting('alert_windspeed_high_3', 'str', cache), }, - 'windgustgraph': { + 'windgust.graph': { 'type': 'windgust', + 'unit': 'speed', + 'icon': 'wind', 'loc': 32324, 'alert_windgust_high_1': utils.setting('alert_windgust_high_1', 'str', cache), 'alert_windgust_high_2': utils.setting('alert_windgust_high_2', 'str', cache), 'alert_windgust_high_3': utils.setting('alert_windgust_high_3', 'str', cache), }, - 'feelslikegraph': { + 'feelslike.graph': { 'type': 'feelslike', + 'unit': 'temperature', + 'icon': 'temperature', 'loc': 32332, 'alert_feelslike_high_1': utils.setting('alert_feelslike_high_1', 'str', cache), 'alert_feelslike_high_2': utils.setting('alert_feelslike_high_2', 'str', cache), 'alert_feelslike_high_3': utils.setting('alert_feelslike_high_3', 'str', cache), + 'alert_feelslike_low_1': utils.setting('alert_feelslike_low_1', 'str', cache), + 'alert_feelslike_low_2': utils.setting('alert_feelslike_low_2', 'str', cache), + 'alert_feelslike_low_3': utils.setting('alert_feelslike_low_3', 'str', cache), }, - 'dewpointgraph': { + 'dewpoint.graph': { 'type': 'dewpoint', + 'unit': 'temperature', + 'icon': 'temperature', 'loc': 32333, 'alert_dewpoint_high_1': utils.setting('alert_dewpoint_high_1', 'str', cache), 'alert_dewpoint_high_2': utils.setting('alert_dewpoint_high_2', 'str', cache), 'alert_dewpoint_high_3': utils.setting('alert_dewpoint_high_3', 'str', cache), + 'alert_dewpoint_low_1': utils.setting('alert_dewpoint_low_1', 'str', cache), + 'alert_dewpoint_low_2': utils.setting('alert_dewpoint_low_2', 'str', cache), + 'alert_dewpoint_low_3': utils.setting('alert_dewpoint_low_3', 'str', cache), }, - 'cloudinessgraph': { + 'cloudiness.graph': { 'type': 'cloudiness', + 'unit': '%', + 'icon': 'cloud', 'loc': 32334, 'alert_cloudiness_high_1': utils.setting('alert_cloudiness_high_1', 'str', cache), 'alert_cloudiness_high_2': utils.setting('alert_cloudiness_high_2', 'str', cache), 'alert_cloudiness_high_3': utils.setting('alert_cloudiness_high_3', 'str', cache), }, - 'humiditygraph': { + 'humidity.graph': { 'type': 'humidity', + 'unit': '%', + 'icon': 'humidity', 'loc': 32346, 'alert_humidity_high_1': utils.setting('alert_humidity_high_1', 'str', cache), 'alert_humidity_high_2': utils.setting('alert_humidity_high_2', 'str', cache), 'alert_humidity_high_3': utils.setting('alert_humidity_high_3', 'str', cache), }, - 'precipitationprobabilitygraph': { + 'precipitationprobability.graph': { 'type': 'precipitationprobability', + 'unit': '%', + 'icon': 'precipitation', 'loc': 32321, 'alert_precipitationprobability_high_1': utils.setting('alert_precipitationprobability_high_1', 'str', cache), 'alert_precipitationprobability_high_2': utils.setting('alert_precipitationprobability_high_2', 'str', cache), 'alert_precipitationprobability_high_3': utils.setting('alert_precipitationprobability_high_3', 'str', cache), }, - 'pressuregraph': { + 'pressure.graph': { 'type': 'pressure', + 'unit': 'pressure', + 'icon': 'pressure', 'loc': 32347, 'alert_pressure_high_1': utils.setting('alert_pressure_high_1', 'str', cache), 'alert_pressure_high_2': utils.setting('alert_pressure_high_2', 'str', cache), 'alert_pressure_high_3': utils.setting('alert_pressure_high_3', 'str', cache), + 'alert_pressure_low_1': utils.setting('alert_pressure_low_1', 'str', cache), + 'alert_pressure_low_2': utils.setting('alert_pressure_low_2', 'str', cache), + 'alert_pressure_low_3': utils.setting('alert_pressure_low_3', 'str', cache), }, - 'pressuresurfacegraph': { + 'pressuresurface.graph': { 'type': 'pressuresurface', + 'unit': 'pressure', + 'icon': 'pressure', 'loc': 32347, 'alert_pressuresurface_high_1': utils.setting('alert_pressuresurface_high_1', 'str', cache), 'alert_pressuresurface_high_2': utils.setting('alert_pressuresurface_high_2', 'str', cache), 'alert_pressuresurface_high_3': utils.setting('alert_pressuresurface_high_3', 'str', cache), + 'alert_pressuresurface_low_1': utils.setting('alert_pressuresurface_low_1', 'str', cache), + 'alert_pressuresurface_low_2': utils.setting('alert_pressuresurface_low_2', 'str', cache), + 'alert_pressuresurface_low_3': utils.setting('alert_pressuresurface_low_3', 'str', cache), }, - 'solarradiationgraph': { + 'solarradiation.graph': { 'type': 'solarradiation', + 'unit': 'solarradiation', + 'icon': 'solarradiation', 'loc': 32348, 'alert_solarradiation_high_1': utils.setting('alert_solarradiation_high_1', 'str', cache), 'alert_solarradiation_high_2': utils.setting('alert_solarradiation_high_2', 'str', cache), 'alert_solarradiation_high_3': utils.setting('alert_solarradiation_high_3', 'str', cache), }, - 'visibilitygraph': { + 'visibility.graph': { 'type': 'visibility', + 'unit': 'distance', + 'icon': 'visibility', 'loc': 32349, 'alert_visibility_low_1': utils.setting('alert_visibility_low_1', 'str', cache), 'alert_visibility_low_2': utils.setting('alert_visibility_low_2', 'str', cache), 'alert_visibility_low_3': utils.setting('alert_visibility_low_3', 'str', cache), }, - 'aqieugraph': { + 'uvindex.graph': { + 'type': 'uvindex', + 'unit': 'uvindex', + 'icon': 'uvindex', + 'loc': 32329, + 'alert_uvindex_high_1': utils.setting('alert_uvindex_high_1', 'str', cache), + 'alert_uvindex_high_2': utils.setting('alert_uvindex_high_2', 'str', cache), + 'alert_uvindex_high_3': utils.setting('alert_uvindex_high_3', 'str', cache), + }, + 'aqieu.graph': { 'type': 'aqieu', + 'unit': 'index', + 'icon': 'health', 'loc': 32325, 'alert_aqieu_high_1': utils.setting('alert_aqieu_high_1', 'str', cache), 'alert_aqieu_high_2': utils.setting('alert_aqieu_high_2', 'str', cache), 'alert_aqieu_high_3': utils.setting('alert_aqieu_high_3', 'str', cache), }, - 'aqiusgraph': { + 'aqius.graph': { 'type': 'aqius', + 'unit': 'index', + 'icon': 'health', 'loc': 32326, 'alert_aqius_high_1': utils.setting('alert_aqius_high_1', 'str', cache), 'alert_aqius_high_2': utils.setting('alert_aqius_high_2', 'str', cache), 'alert_aqius_high_3': utils.setting('alert_aqius_high_3', 'str', cache), }, - 'pm25graph': { + 'pm25.graph': { 'type': 'pm25', + 'unit': 'particles', + 'icon': 'particles', 'loc': 32327, 'alert_pm25_high_1': utils.setting('alert_pm25_high_1', 'str', cache), 'alert_pm25_high_2': utils.setting('alert_pm25_high_2', 'str', cache), 'alert_pm25_high_3': utils.setting('alert_pm25_high_3', 'str', cache), }, - 'pm10graph': { + 'pm10.graph': { 'type': 'pm10', + 'unit': 'particles', + 'icon': 'particles', 'loc': 32328, 'alert_pm10_high_1': utils.setting('alert_pm10_high_1', 'str', cache), 'alert_pm10_high_2': utils.setting('alert_pm10_high_2', 'str', cache), 'alert_pm10_high_3': utils.setting('alert_pm10_high_3', 'str', cache), }, - 'cograph': { + 'co.graph': { 'type': 'co', + 'unit': 'particles', + 'icon': 'particles', 'loc': 32337, 'alert_co_high_1': utils.setting('alert_co_high_1', 'str', cache), 'alert_co_high_2': utils.setting('alert_co_high_2', 'str', cache), 'alert_co_high_3': utils.setting('alert_co_high_3', 'str', cache), }, - 'ozonegraph': { + 'ozone.graph': { 'type': 'ozone', + 'unit': 'particles', + 'icon': 'particles', 'loc': 32338, 'alert_ozone_high_1': utils.setting('alert_ozone_high_1', 'str', cache), 'alert_ozone_high_2': utils.setting('alert_ozone_high_2', 'str', cache), 'alert_ozone_high_3': utils.setting('alert_ozone_high_3', 'str', cache), }, - 'dustgraph': { + 'dust.graph': { 'type': 'dust', + 'unit': 'particles', + 'icon': 'particles', 'loc': 32339, 'alert_dust_high_1': utils.setting('alert_dust_high_1', 'str', cache), 'alert_dust_high_2': utils.setting('alert_dust_high_2', 'str', cache), 'alert_dust_high_3': utils.setting('alert_dust_high_3', 'str', cache), }, - 'no2graph': { + 'no2.graph': { 'type': 'no2', + 'unit': 'particles', + 'icon': 'particles', 'loc': 32330, 'alert_no2_high_1': utils.setting('alert_no2_high_1', 'str', cache), 'alert_no2_high_2': utils.setting('alert_no2_high_2', 'str', cache), 'alert_no2_high_3': utils.setting('alert_no2_high_3', 'str', cache), }, - 'so2graph': { + 'so2.graph': { 'type': 'so2', + 'unit': 'particles', + 'icon': 'particles', 'loc': 32331, 'alert_so2_high_1': utils.setting('alert_so2_high_1', 'str', cache), 'alert_so2_high_2': utils.setting('alert_so2_high_2', 'str', cache), 'alert_so2_high_3': utils.setting('alert_so2_high_3', 'str', cache), }, - 'uvindexgraph': { - 'type': 'uvindex', - 'loc': 32329, - 'alert_uvindex_high_1': utils.setting('alert_uvindex_high_1', 'str', cache), - 'alert_uvindex_high_2': utils.setting('alert_uvindex_high_2', 'str', cache), - 'alert_uvindex_high_3': utils.setting('alert_uvindex_high_3', 'str', cache), - }, - 'aldergraph': { + 'alder.graph': { 'type': 'alder', + 'unit': 'pollen', + 'icon': 'pollen', 'loc': 32450, 'alert_alder_high_1': utils.setting('alert_alder_high_1', 'str', cache), 'alert_alder_high_2': utils.setting('alert_alder_high_2', 'str', cache), 'alert_alder_high_3': utils.setting('alert_alder_high_3', 'str', cache), }, - 'birchgraph': { + 'birch.graph': { 'type': 'birch', + 'unit': 'pollen', + 'icon': 'pollen', 'loc': 32451, 'alert_birch_high_1': utils.setting('alert_birch_high_1', 'str', cache), 'alert_birch_high_2': utils.setting('alert_birch_high_2', 'str', cache), 'alert_birch_high_3': utils.setting('alert_birch_high_3', 'str', cache), }, - 'grassgraph': { + 'grass.graph': { 'type': 'grass', + 'unit': 'pollen', + 'icon': 'pollen', 'loc': 32452, 'alert_grass_high_1': utils.setting('alert_grass_high_1', 'str', cache), 'alert_grass_high_2': utils.setting('alert_grass_high_2', 'str', cache), 'alert_grass_high_3': utils.setting('alert_grass_high_3', 'str', cache), }, - 'mugwortgraph': { + 'mugwort.graph': { 'type': 'mugwort', + 'unit': 'pollen', + 'icon': 'pollen', 'loc': 32453, 'alert_mugwort_high_1': utils.setting('alert_mugwort_high_1', 'str', cache), 'alert_mugwort_high_2': utils.setting('alert_mugwort_high_2', 'str', cache), 'alert_mugwort_high_3': utils.setting('alert_mugwort_high_3', 'str', cache), }, - 'olivegraph': { + 'olive.graph': { 'type': 'olive', + 'unit': 'pollen', + 'icon': 'pollen', 'loc': 32454, 'alert_olive_high_1': utils.setting('alert_olive_high_1', 'str', cache), 'alert_olive_high_2': utils.setting('alert_olive_high_2', 'str', cache), 'alert_olive_high_3': utils.setting('alert_olive_high_3', 'str', cache), }, - 'ragweedgraph': { + 'ragweed.graph': { 'type': 'ragweed', + 'unit': 'pollen', + 'icon': 'pollen', 'loc': 32455, 'alert_ragweed_high_1': utils.setting('alert_ragweed_high_1', 'str', cache), 'alert_ragweed_high_2': utils.setting('alert_ragweed_high_2', 'str', cache), @@ -716,7 +832,6 @@ def addon(cache=False): addon.settings = utils.settings() addon.alerts = 0 addon.msgqueue = [] - addon.scalecache = {} # Bool addon.debug = utils.setting('debug', 'bool', cache) @@ -732,6 +847,8 @@ def addon(cache=False): addon.speeddp = utils.setting('unitspeeddp', 'str', cache) addon.precip = utils.setting('unitprecip', 'str', cache) addon.precipdp = utils.setting('unitprecipdp', 'str', cache) + addon.snow = utils.setting('unitsnow', 'str', cache) + addon.snowdp = utils.setting('unitsnowdp', 'str', cache) addon.distance = utils.setting('unitdistance', 'str', cache) addon.distancedp = utils.setting('unitdistancedp', 'str', cache) addon.particlesdp = utils.setting('unitparticlesdp', 'str', cache) @@ -751,6 +868,8 @@ def addon(cache=False): addon.mapzoom = utils.setting('mapzoom', 'int', cache) addon.maphistory = utils.setting('maphistory', 'int', cache) addon.alerthours = utils.setting('alert_hours', 'int', cache) + addon.fcstart = utils.setting('fcstart', 'int', cache) + addon.fcend = utils.setting('fcend', 'int', cache) # Maxlocs if utils.setting('explocations', 'bool', cache): @@ -759,14 +878,19 @@ def addon(cache=False): addon.maxlocs = 4 # Addon mode - # Note (v0.9.4): Remove "skin.estuary.openht" in a future update - skin = utils.settingrpc('lookandfeel.skin') + addon.api = False + addon.mode = { 'locations', 'location1', 'location2', 'location3', 'location4', 'location5' } + mode = utils.winprop('openmeteo') - if skin == utils.winprop('openmeteo') or skin == 'skin.estuary.openht': + if mode == 'full': + addon.skin = True + addon.full = True + elif mode: addon.skin = True + addon.full = False else: addon.skin = False - + addon.full = False def kodi(): kodi.long = utils.region('datelong') @@ -778,14 +902,25 @@ def kodi(): kodi.height = 1080 def loc(locid, cache=False): + loc.prop = {} loc.id = locid loc.cid = str(utils.settingrpc("weather.currentlocation")) - loc.name = utils.setting(f'loc{locid}', 'str') - loc.user = utils.setting(f'loc{locid}user', 'str') loc.lat = utils.setting(f'loc{locid}lat', 'float') loc.lon = utils.setting(f'loc{locid}lon', 'float') loc.utz = utils.setting(f'loc{locid}utz', 'bool') + # Name + name = utils.setting(f'loc{locid}', 'str') + user = utils.setting(f'loc{locid}user', 'str') + + if user: + loc.name = user + loc.short = user + else: + loc.name = name + loc.short = name.split(',')[0] + + # Timezone try: loc.tz = utils.timezone(utils.setting(f'loc{locid}tz')) except: diff --git a/weather.openmeteo/lib/conv.py b/weather.openmeteo/lib/conv.py index bcf69e7db..3c3571921 100644 --- a/weather.openmeteo/lib/conv.py +++ b/weather.openmeteo/lib/conv.py @@ -126,7 +126,7 @@ def speedconv(value, unit): if unit == 'mph': v = value / 1.609344 elif unit == 'm/min': - v = value * 16,667 + v = value * 16.667 elif unit == 'm/s': v = value / 3.6 elif unit == 'ft/h': @@ -291,6 +291,36 @@ def precipconv(value, unit): def precip(value=False): return precipconv(value, config.addon.precip) +# Snow +def snowconv(value, unit): + if value is not False: + value = float(value) + + if unit == 'in': + v = value / 2.54 + else: + v = value + + if config.addon.snowdp == '0': + return round(v) + else: + if config.addon.unitsep == ',': + return str(round(v,int(config.addon.snowdp))).replace('.',',') + else: + return round(v,int(config.addon.snowdp)) + + else: + + if unit == 'in': + v = 'in' + else: + v = 'cm' + + return v + +def snow(value=False): + return snowconv(value, config.addon.snow) + # Pressure def pressureconv(value, unit): if value is not False: @@ -382,3 +412,65 @@ def moonphaseimage(deg): elif deg >= 273 and deg <= 357: return '7.png' +# Season +def season(lat): + d = utils.dt('dayofyear') + + if lat >= 0: + n = True + else: + n = False + + if d >= 80 and d <= 172: + return utils.locaddon(32471) if n else utils.locaddon(32473) + elif d >= 172 and d <= 264: + return utils.locaddon(32472) if n else utils.locaddon(32474) + elif d >= 264 and d <= 355: + return utils.locaddon(32473) if n else utils.locaddon(32471) + else: + return utils.locaddon(32474) if n else utils.locaddon(32472) + +# Item +def item(value, type, unit=True): + + if type == 'temperature': + v = temp(value) + u = temp() + elif type == 'precipitation': + v = precip(value) + u = precip() + elif type == 'snow': + v = snow(value) + u = snow() + elif type == 'speed': + v = speed(value) + u = speed() + elif type == 'distance': + v = distance(value) + u = distance() + elif type == 'pressure': + v = pressure(value) + u = pressure() + elif type == 'uvindex': + v = temp(value, config.addon.uvindexdp) + u = '' + elif type == 'solarradiation': + v = dp(value, config.addon.radiationdp) + u = 'W/m²' + elif type == 'particles': + v = dp(value, config.addon.particlesdp) + u = 'μg/m³' + elif type == 'pollen': + v = dp(value, config.addon.pollendp) + u = f'{utils.locaddon(32456)}/m³' + else: + v = round(value) + u = '' + + if value is False: + return u + else: + if unit: + return v, u + else: + return v diff --git a/weather.openmeteo/lib/service.py b/weather.openmeteo/lib/service.py index 3d88db8bc..fd29b5946 100644 --- a/weather.openmeteo/lib/service.py +++ b/weather.openmeteo/lib/service.py @@ -8,11 +8,12 @@ def Main(): startup = True utils.log(f'Starting service ...') + utils.setsetting('service', 'idle') utils.log(config.addon_info, 3) # Geolocation - if not utils.setting('geoip') and not utils.setting('loc1'): - utils.setsetting('geoip', 'true') + if not utils.geoip() and not utils.setting('loc1'): + utils.geoip(True) utils.setsetting('service', 'running') weather.Main('1', mode='geoip') weather.Main('1', mode='download') @@ -67,9 +68,3 @@ def Main(): utils.log(f'Stopping service ...') api.s.close() - # Workaround KODI issue (v0.9.5) - try: - utils.setsetting('service', 'stopped') - except: - pass - diff --git a/weather.openmeteo/lib/utils.py b/weather.openmeteo/lib/utils.py index 019cb0e18..db87c53e7 100644 --- a/weather.openmeteo/lib/utils.py +++ b/weather.openmeteo/lib/utils.py @@ -11,6 +11,7 @@ from datetime import datetime from pytz import timezone from pathlib import Path +from statistics import mode, mean from . import config from . import conv @@ -78,14 +79,16 @@ def settingrpc(setting): def settings(changed=False): dict = {} skip = [ 'alert_notification', 'service', 'geoip' ] + file = Path(config.addon_data + 'settings.xml') try: - tree = ET.parse(f'{config.addon_data}settings.xml') + with open(file, 'r') as f: + data = f.read() + + root = ET.fromstring(data) except: return dict else: - root = tree.getroot() - for item in root: id = item.attrib['id'] @@ -100,6 +103,16 @@ def settings(changed=False): def region(arg): return xbmc.getRegion(arg) +# Geolocation +def geoip(create=False): + f = Path(f'{config.addon_data}/geoip') + + if create: + with open(f, mode='w'): + pass + else: + return f.is_file() + # Localization def loc(arg): return xbmc.getLocalizedString(arg) @@ -140,6 +153,8 @@ def dt(arg, stamp=0): return datetime.fromisoformat(stamp).astimezone(config.loc.tz) else: return datetime.fromisoformat(stamp).astimezone() + elif arg == 'dayofyear': + return datetime.today().timetuple().tm_yday # Last update def lastupdate(arg): @@ -155,17 +170,31 @@ def setupdate(arg): # Window property def clrprop(property): - log(f'CLR: {property}', 4) xbmcgui.Window(12600).clearProperty(property) def winprop(property): - log(f'GET: {property}', 4) return xbmcgui.Window(12600).getProperty(property) -# Window property (Set) -def setprop(property, data): - log(f'SET: {property} = {data}', 4) - xbmcgui.Window(12600).setProperty(property, str(data)) +# Set Window property +def setprop(property, data, window=12600): + xbmcgui.Window(window).setProperty(property, str(data)) + +# Set properties +def setprops(): + if config.addon.api: + for i in sorted(config.loc.prop): + setprop(f'weather.{i}', config.loc.prop[i], 10000) + + if config.addon.full and i in config.addon.mode: + setprop(i, config.loc.prop[i]) + + else: + for i in sorted(config.loc.prop): + setprop(i, config.loc.prop[i]) + +# Add property +def addprop(property, content): + config.loc.prop[property] = content # Window property (Get) def getprop(data, map, idx, count): @@ -241,6 +270,10 @@ def getprop(data, map, idx, count): content = conv.time('timeiso', content) elif unit == 'hour': content = conv.time('hour', content) + elif unit == 'seconds': + m, s = divmod(int(content), 60) + h, m = divmod(m, 60) + content = f'{h:d}:{m:02d}' elif unit == 'weekday': content = config.localization.weekday.get(dt('stamploc', content).strftime('%u')) elif unit == 'weekdayshort': @@ -270,6 +303,12 @@ def getprop(data, map, idx, count): elif unit == 'unitprecipitation': content = conv.precip() + # Snow + elif unit == 'snow': + content = conv.snow(content) + elif unit == 'unitsnow': + content = conv.snow() + # Distance elif unit == 'distance': content = conv.distance(content) @@ -326,277 +365,364 @@ def getprop(data, map, idx, count): elif unit == 'moonphaseimage': content = f'{config.addon_icons}/moon/{conv.moonphaseimage(int(content))}' + # Season + elif unit == 'season': + content = conv.season(float(content)) + # Graphs elif unit == 'graph': - property = f'{map[2][0]}.{count}.{map[2][1]}' - time = map[2][0] - type = map[2][1] - mscale = map[4] - alert = 0 - scale = 0 - scaleneg = False - - # Content - try: - calc = map[5] - except: - calc = False - else: - if calc == 'temperature': - - if conv.temp() == '°F': - mscale = '100' - - elif calc == 'divide10': - content = content/10 + idxnow = index("now", data) + type = map[2][1] + unit = map[4] + scaleneg = False + count = 0 if config.addon.api else 1 + property = f'{map[2][0]}.{count}.{map[2][1]}' + content = None + alerting = setting(f'alert_{type.split(".")[0]}_enabled', 'bool', True) + + # Data + lv = [] + lt = [] + + for idx in range(idxnow, idxnow+24): + try: + v = data[map[1][0]][map[1][1]][idx] + t = data[map[1][0]]['time'][idx] + except: + continue + else: + lv.append(v) + lt.append(t) - elif calc == 'divide1000': - content = content/1000 + # Unit + lc = [ conv.item(v, unit, False) for v in lv ] + unit = conv.item(False, unit) - elif calc == 'pressure': - content = config.map_pressure.get(int(content),0) + addprop(f'{property}.unit', unit) - # Autoscale - try: - ascale = config.addon.scalecache[f'{time}{type}'] - nscale = config.addon.scalecache[f'{time}{type}neg'] - except: - _idx_ = idx + # Neg + scaleneg = bool([ v for v in lc if v < 0 ]) - for _count_ in range(0,25): + # Scale + scalemin = min(lc) + scalemax = max(lc) + scaleabs = max([ abs(v) for v in lc ]) - if calc == 'temperature': - v = conv.temp(data[map[1][0]][map[1][1]][_idx_+_count_], True) + r = 1 if scalemin < 1 and scalemax < 1 else None + a = scalemax/4 + s = (scalemax-scalemin)/4 - # Negative temperature - if v < 0: - scaleneg = True + addprop(f'{property}.xaxis0', round(scalemax,r)) + addprop(f'{property}.xaxis1', round(scalemax-a,r)) + addprop(f'{property}.xaxis2', round(scalemax-a*2,r)) + addprop(f'{property}.xaxis3', round(scalemax-a*3,r)) + addprop(f'{property}.xaxis4', round(scalemax-a*4,r)) - check = abs(v) + addprop(f'{property}.scalexaxis0', round(scalemax,r)) + addprop(f'{property}.scalexaxis1', round(scalemax-s,r)) + addprop(f'{property}.scalexaxis2', round(scalemax-s*2,r)) + addprop(f'{property}.scalexaxis3', round(scalemax-s*3,r)) + addprop(f'{property}.scalexaxis4', round(scalemax-s*4,r)) - elif calc == 'divide10': - check = abs(data[map[1][0]][map[1][1]][_idx_+_count_]/10) - elif calc == 'divide1000': - check = abs(data[map[1][0]][map[1][1]][_idx_+_count_]/1000) - elif calc == 'pressure': - check = abs(config.map_pressure.get(int(data[map[1][0]][map[1][1]][_idx_+_count_]))) - else: - check = abs(data[map[1][0]][map[1][1]][_idx_+_count_]) + # Graph + for idx in range(0,24): + alert = 0 + property = f'{map[2][0]}.{count}.{map[2][1]}' - if check > scale: - scale = check + try: + time = lt[idx] + avalue = lv[idx] + value = lc[idx] - if scale < 1: - config.addon.scalecache[f'{time}{type}'] = 1 - elif scale >= 101 and scale <= 150: - config.addon.scalecache[f'{time}{type}'] = 150 - elif scale >= 151 and scale <= 200: - config.addon.scalecache[f'{time}{type}'] = 200 + except: + continue else: - config.addon.scalecache[f'{time}{type}'] = math.ceil(scale/10.0)*10 - - # Negative values - config.addon.scalecache[f'{time}{type}neg'] = scaleneg + negative = True if value < 0 else False - # Set cache - ascale = config.addon.scalecache[f'{time}{type}'] - nscale = config.addon.scalecache[f'{time}{type}neg'] - - log(f'Scale {type} ({time}) = {ascale}', 4) + if scalemax-scalemin == 0 or scaleabs == 0: + percent = 0 + else: + percent = round((value-scalemin)/(scalemax-scalemin)*100) if not negative else round(abs(value)/scaleabs*100) - # Alert - for _alert_ in config.alert.map[type]: + if scalemax == 0 or scaleabs == 0: + percentabs = 0 + else: + percentabs = round((value)/(scalemax)*100) if not negative else round(abs(value)/scaleabs*100) - if not 'alert' in _alert_: - continue + # Time + addprop(f'{property}.time', conv.time('hour', time)) - if 'wmo' in _alert_: - limit = list(config.alert.map[type][_alert_].split(' ')) - else: - limit = float(config.alert.map[type][_alert_]) + # Value + addprop(f'{property}.value', value) - if not limit: - continue + # Image + if scaleneg: + if negative: + addprop(f'{property}.image', f'{config.addon_icons}/graph/{config.kodi.height}/bar_n{percent}n.png') + addprop(f'{property}.code', f'n{percent}n') + else: + addprop(f'{property}.image', f'{config.addon_icons}/graph/{config.kodi.height}/bar_n{percent}p.png') + addprop(f'{property}.code', f'n{percent}p') - if 'high' in _alert_: - if content >= int(limit): - alert = int(_alert_[-1]) - elif 'low' in _alert_: - if content <= int(limit): - alert = int(_alert_[-1]) - elif 'wmo' in _alert_: - for wmo in limit: - if content == int(wmo): - alert = int(alert[-1]) - - setprop(f'{property}alert', alert) - - # Content - if calc == 'temperature': - content = conv.temp(content, True) - - if ascale == 1: - content = round(content,1) - else: - content = round(content) + else: + addprop(f'{property}.image', f'{config.addon_icons}/graph/{config.kodi.height}/bar_{percentabs}p.png') + addprop(f'{property}.code', f'{percentabs}p') + addprop(f'{property}.scaleimage', f'{config.addon_icons}/graph/{config.kodi.height}/bar_{percent}p.png') + addprop(f'{property}.scalecode', f'{percent}p') + + # Alert + if alerting: + + for c, d in [(x, y) for x in [ 3, 2, 1 ] for y in [ 'high', 'low', 'wmo' ] ]: + last = False + + try: + if d == 'wmo': + limit = list(config.alert.map[type][f'alert_{type.split(".")[0]}_{d}_{c}'].split(' ')) + else: + limit = int(config.alert.map[type][f'alert_{type.split(".")[0]}_{d}_{c}']) + except: + continue + + if d == 'high': + if avalue >= limit: + if last and avalue > last: + alert, last = c, avalue + elif not last: + alert, last = c, avalue + elif d == 'low': + if avalue <= limit: + if last and avalue < last: + alert, last = c, avalue + elif not last: + alert, last = c, avalue + elif d == 'wmo': + for wmo in limit: + if avalue == int(wmo): + if last and avalue > last: + alert, last = c, avalue + elif not last: + alert, last = c, avalue + if alert: + break + + addprop(f'{property}.alert', alert) + + # Alert icon + if alert == 0: + addprop(f'{property}.alerticon', '') + else: + if type == 'condition.graph': + icon = f'{config.map_alert_condition.get(last)}{alert}' + addprop(f'{property}.alerticon', f'{config.addon_icons}/alert/{icon}.png') + else: + addprop(f'{property}.alerticon', f'{config.addon_icons}/alert/{config.alert.map[type]["icon"]}{alert}.png') + + # Color + if alert == 0: + if negative: + addprop(f'{property}.color', config.addon.cnegative) + addprop(f'{property}.colornormal', config.addon.cnegative) + else: + addprop(f'{property}.color', config.addon.cdefault) + addprop(f'{property}.colornormal', config.addon.cnormal) + + elif alert == 1: + addprop(f'{property}.color', config.addon.cnotice) + addprop(f'{property}.colornormal', config.addon.cnotice) + + elif alert == 2: + addprop(f'{property}.color', config.addon.ccaution) + addprop(f'{property}.colornormal', config.addon.ccaution) + + elif alert == 3: + addprop(f'{property}.color', config.addon.cdanger) + addprop(f'{property}.colornormal', config.addon.cdanger) + + count += 1 + + # TimeOfDay + elif unit == 'timeofday': + idxnow = index("now", data) + idxmid = index("mid", data) + idxday = index("mid", data) + tod = { 0: 'night', 1: 'morning', 2: 'afternoon', 3: 'evening' } + start = False + content = 'true' + idxtod = 0 if config.addon.api else 1 + idxtod2 = 0 if config.addon.api else 1 + idxtod3 = 0 if config.addon.api else 1 + + for d in range(0, config.maxdays): + l = [] + ll = [] + + # Daily + for c in range(idxday, idxday+24): + + try: + v = data[map[1][0]][map[1][1]][c] + vv = data[map[1][0]]['temperature_2m'][c] + except: + for i in [ 'date', 'shortdate', 'weekday', 'weekdayshort', 'condition', 'outlook', 'outlookicon', 'outlookiconwmo', 'temperature', 'maxoutlook', 'maxoutlookicon', 'maxoutlookiconwmo' ]: + addprop(f'daily.{idxtod3}.overview.{i}', '') + continue + else: + l.append(v) + ll.append(vv) + + # Personalized forecast + fcstart = config.map_fcstart.get(config.addon.fcstart) + fcend = config.map_fcend.get(config.addon.fcend) + + l = l[fcstart:][:fcend] + + # Properties + date = data[map[1][0]]['time'][idxday] + code = mode(sorted(l, reverse=True)) + mcode = max(l) + temp = conv.temp(mean(ll)) + + addprop(f'daily.{idxtod3}.overview.date', dt('stamploc', date).strftime(config.kodi.date)) + addprop(f'daily.{idxtod3}.overview.shortdate', dt('stamploc', date).strftime(config.kodi.date)) + addprop(f'daily.{idxtod3}.overview.weekday', config.localization.weekday.get(dt('stamploc', date).strftime('%u'))) + addprop(f'daily.{idxtod3}.overview.weekdayshort', config.localization.weekdayshort.get(dt('stamploc', date).strftime('%u'))) + addprop(f'daily.{idxtod3}.overview.temperature', temp) + addprop(f'daily.{idxtod3}.overview.outlook', config.localization.wmo.get(f'{code}d')) + addprop(f'daily.{idxtod3}.overview.outlookicon', f'{config.map_wmo.get(f"{code}d")}.png') + addprop(f'daily.{idxtod3}.overview.outlookiconwmo', f'{config.addon_icons}/{config.addon.icons}/{code}d.png') + addprop(f'daily.{idxtod3}.overview.fanartcode', config.map_wmo.get(f"{code}d")) + addprop(f'daily.{idxtod3}.overview.fanartcodewmo', f'{code}d') + + # Overwrite forecast (personalized) + addprop(f'daily.{idxtod3}.condition', config.localization.wmo.get(f'{code}d')) + addprop(f'daily.{idxtod3}.outlook', config.localization.wmo.get(f'{code}d')) + addprop(f'daily.{idxtod3}.outlookicon', f'{config.map_wmo.get(f"{code}d")}.png') + addprop(f'daily.{idxtod3}.outlookiconwmo', f'{config.addon_icons}/{config.addon.icons}/{code}d.png') + addprop(f'daily.{idxtod3}.fanartcode', config.map_wmo.get(f"{code}d")) + addprop(f'daily.{idxtod3}.fanartcodewmo', f'{code}d') + + if not config.addon.api: + addprop(f'day{idxtod3-1}.condition', config.localization.wmo.get(f'{code}d')) + addprop(f'day{idxtod3-1}.outlook', config.localization.wmo.get(f'{code}d')) + addprop(f'day{idxtod3-1}.outlookicon', f'resource://resource.images.weathericons.default/{config.map_wmo.get(f"{code}d")}.png') + addprop(f'day{idxtod3-1}.outlookiconwmo', f'{config.addon_icons}/{config.addon.icons}/{code}d.png') + addprop(f'day{idxtod3-1}.fanartcode', config.map_wmo.get(f"{code}d")) + addprop(f'day{idxtod3-1}.fanartcodewmo', f'{code}d') + + # Max outlook + if mcode > code: + addprop(f'daily.{idxtod3}.overview.maxoutlook', config.localization.wmo.get(f'{mcode}d')) + addprop(f'daily.{idxtod3}.overview.maxoutlookicon', f'{config.map_wmo.get(f"{code}d")}.png') + addprop(f'daily.{idxtod3}.overview.maxoutlookiconwmo', f'{config.addon_icons}/{config.addon.icons}/{mcode}d.png') + + addprop(f'daily.{idxtod3}.maxoutlook', config.localization.wmo.get(f'{mcode}d')) + addprop(f'daily.{idxtod3}.maxoutlookicon', f'{config.map_wmo.get(f"{code}d")}.png') + addprop(f'daily.{idxtod3}.maxoutlookiconwmo', f'{config.addon_icons}/{config.addon.icons}/{mcode}d.png') - # Set properties - if nscale: - setprop(f'{property}image', f'{config.addon_icons}/graph/{config.kodi.height}/scaleneg{mscale}_{content}.png') - setprop(f'{property}imagescale', f'{config.addon_icons}/graph/{config.kodi.height}/scaleneg{ascale}_{content}.png') - setprop(f'{property}scale', f'{ascale}n') - else: - setprop(f'{property}image', f'{config.addon_icons}/graph/{config.kodi.height}/scale{mscale}_{content}.png') - setprop(f'{property}imagescale', f'{config.addon_icons}/graph/{config.kodi.height}/scale{ascale}_{content}.png') - setprop(f'{property}scale', f'{ascale}') - - # Color - if alert == 0: - if content < 0: - setprop(f'{property}color', config.addon.cnegative) - setprop(f'{property}colornormal', config.addon.cnegative) else: - setprop(f'{property}color', config.addon.cdefault) - setprop(f'{property}colornormal', config.addon.cnormal) + addprop(f'daily.{idxtod3}.overview.maxoutlook', '') + addprop(f'daily.{idxtod3}.overview.maxoutlookicon', '') + addprop(f'daily.{idxtod3}.overview.maxoutlookiconwmo', '') + + addprop(f'daily.{idxtod3}.maxoutlook', '') + addprop(f'daily.{idxtod3}.maxoutlookicon', '') + addprop(f'daily.{idxtod3}.maxoutlookiconwmo', '') + + idxday += 24 + idxtod3 += 1 + + # Hourly + for t in range(0,4): + l = [] + ll = [] + lll = [] + llll = [] + now = '' + + for c in range(idxmid, idxmid+6): + + try: + v = data[map[1][0]][map[1][1]][c] + vv = data[map[1][0]]['is_day'][c] + vvv = data[map[1][0]]['temperature_2m'][c] + vvvv = data[map[1][0]]['time'][c] + except: + continue + else: + l.append(v) + ll.append(vv) + lll.append(vvv) + llll.append(vvvv) + + if idxnow == c: + start = True + now = 'true' + + date = data[map[1][0]]['time'][idxmid] + code = mode(sorted(l, reverse=True)) + mcode = max(l) + isday = mode(sorted(ll, reverse=False)) + isday = 'n' if isday == 0 else 'd' + temp = conv.temp(mean(lll)) + + # TimeOfDay (List) + if start: + addprop(f'timeofday.{idxtod}.date', dt('stamploc', date).strftime(config.kodi.date)) + addprop(f'timeofday.{idxtod}.shortdate', dt('stamploc', date).strftime(config.kodi.date)) + addprop(f'timeofday.{idxtod}.weekday', config.localization.weekday.get(dt('stamploc', date).strftime('%u'))) + addprop(f'timeofday.{idxtod}.weekdayshort', config.localization.weekdayshort.get(dt('stamploc', date).strftime('%u'))) + addprop(f'timeofday.{idxtod}.time', config.localization.timeofday.get(t)) + addprop(f'timeofday.{idxtod}.outlook', config.localization.wmo.get(f'{code}{isday}')) + addprop(f'timeofday.{idxtod}.outlookicon', f'{config.map_wmo.get(f"{code}{isday}")}.png') + addprop(f'timeofday.{idxtod}.outlookiconwmo', f'{config.addon_icons}/{config.addon.icons}/{code}{isday}.png') + addprop(f'timeofday.{idxtod}.fanartcode', config.map_wmo.get(f"{code}{isday}")) + addprop(f'timeofday.{idxtod}.fanartcodewmo', f'{code}{isday}') + addprop(f'timeofday.{idxtod}.temperature', temp) + + if mcode > code: + addprop(f'timeofday.{idxtod}.maxoutlook', config.localization.wmo.get(f'{mcode}{isday}')) + addprop(f'timeofday.{idxtod}.maxoutlookicon', f'{config.map_wmo.get(f"{mcode}{isday}")}.png') + addprop(f'timeofday.{idxtod}.maxoutlookiconwmo', f'{config.addon_icons}/{config.addon.icons}/{mcode}{isday}.png') + else: + addprop(f'timeofday.{idxtod}.maxoutlook', '') + addprop(f'timeofday.{idxtod}.maxoutlookicon', '') + addprop(f'timeofday.{idxtod}.maxoutlookiconwmo', '') + + idxtod += 1 + + # TimeOfDay (Daily) + addprop(f'daily.{idxtod2}.{tod.get(t)}.date', dt('stamploc', date).strftime(config.kodi.date)) + addprop(f'daily.{idxtod2}.{tod.get(t)}.shortdate', dt('stamploc', date).strftime(config.kodi.date)) + addprop(f'daily.{idxtod2}.{tod.get(t)}.weekday', config.localization.weekday.get(dt('stamploc', date).strftime('%u'))) + addprop(f'daily.{idxtod2}.{tod.get(t)}.weekdayshort', config.localization.weekdayshort.get(dt('stamploc', date).strftime('%u'))) + addprop(f'daily.{idxtod2}.{tod.get(t)}.time', config.localization.timeofday.get(t)) + addprop(f'daily.{idxtod2}.{tod.get(t)}.outlook', config.localization.wmo.get(f'{code}{isday}')) + addprop(f'daily.{idxtod2}.{tod.get(t)}.outlookicon', f'{config.map_wmo.get(f"{code}{isday}")}.png') + addprop(f'daily.{idxtod2}.{tod.get(t)}.outlookiconwmo', f'{config.addon_icons}/{config.addon.icons}/{code}{isday}.png') + addprop(f'daily.{idxtod2}.{tod.get(t)}.fanartcode', config.map_wmo.get(f"{code}{isday}")) + addprop(f'daily.{idxtod2}.{tod.get(t)}.fanartcodewmo', f'{code}{isday}') + addprop(f'daily.{idxtod2}.{tod.get(t)}.temperature', temp) + + if mcode > code: + addprop(f'daily.{idxtod2}.{tod.get(t)}.maxoutlook', config.localization.wmo.get(f'{mcode}{isday}')) + addprop(f'daily.{idxtod2}.{tod.get(t)}.maxoutlookicon', f'{config.map_wmo.get(f"{mcode}{isday}")}.png') + addprop(f'daily.{idxtod2}.{tod.get(t)}.maxoutlookiconwmo', f'{config.addon_icons}/{config.addon.icons}/{mcode}{isday}.png') + else: + addprop(f'daily.{idxtod2}.{tod.get(t)}.maxoutlook', '') + addprop(f'daily.{idxtod2}.{tod.get(t)}.maxoutlookicon', '') + addprop(f'daily.{idxtod2}.{tod.get(t)}.maxoutlookiconwmo', '') - elif alert == 1: - setprop(f'{property}color', config.addon.cnotice) - setprop(f'{property}colornormal', config.addon.cnotice) + if d == 0: + addprop(f'daily.{idxtod2}.{tod.get(t)}.now', now) - elif alert == 2: - setprop(f'{property}color', config.addon.ccaution) - setprop(f'{property}colornormal', config.addon.ccaution) + idxmid += 6 - elif alert == 3: - setprop(f'{property}color', config.addon.cdanger) - setprop(f'{property}colornormal', config.addon.cdanger) + idxtod2 += 1 # Return data return content -# Set alert -def setalert(data, map, idx, locid, curid, loc, mode): - winprops = [ 'name', 'value', 'icon', 'unit', 'time', 'hours', 'status' ] - type = map[2][1] - prop = config.alert.map[type]['type'] - name = locaddon(config.alert.map[type]['loc']) - shours = config.addon.alerthours - hours = { '1': 0, '2': 0, '3': 0 } - code = 0 - value = 0 - unit = '' - - log(f'[LOC{locid}] Checking alert: {prop}', 3) - - for index in range(idx, idx+shours): - - try: - content = int(data[map[1][0]][map[1][1]][index]) - except: - if locid == curid: - setprop(f'alert.{prop}', 0) - for winprop in winprops: - setprop(f'alert.{prop}.{winprop}', '') - - return - - # Alert - for alert in config.alert.map[type]: - - if not 'alert' in alert: - continue - - if 'wmo' in alert: - limit = list(config.alert.map[type][alert].split(' ')) - else: - limit = int(config.alert.map[type][alert]) - - if not limit: - continue - - if 'high' in alert: - if content >= limit: - hours[f'{alert[-1]}'] += 1 - if content >= value: - if content >= limit: - code = int(alert[-1]) - value = content - stamp = data[map[1][0]]['time'][index] - - elif 'low' in alert: - if content <= limit: - hours[f'{alert[-1]}'] += 1 - if content <= value: - if content <= limit: - code = int(alert[-1]) - value = content - stamp = data[map[1][0]]['time'][index] - - elif 'wmo' in alert: - for wmo in limit: - if content == int(wmo): - hours[f'{alert[-1]}'] += 1 - - if content > value: - code = int(alert[-1]) - value = content - stamp = data[map[1][0]]['time'][index] - - # Check alert code - if code != 0: - icon = f'{prop}{code}' - time = conv.time('time', stamp) - - if prop == 'temperature': - value = conv.temp(value) - unit = conv.temp() - elif prop == 'windspeed' or prop == 'windgust': - value = conv.speed(value) - unit = conv.speed() - elif prop == 'condition': - icon = f'condition{config.map_alert_condition.get(value)}{code}' - value = config.localization.wmo.get(f'{value}d') - - # Set alert properties for current location - if locid == curid: - - if setting(f'alert_{prop}_enabled', 'bool'): - log(f'[LOC{locid}] Updating alert: {prop} = {code}', 3) - config.addon.alerts += 1 - - setprop(f'alert.{prop}', code) - setprop(f'alert.{prop}.name', name) - setprop(f'alert.{prop}.time', time) - setprop(f'alert.{prop}.hours', hours[str(code)]) - setprop(f'alert.{prop}.icon', f'{config.addon_icons}/alert/{icon}.png') - setprop(f'alert.{prop}.value', value) - setprop(f'alert.{prop}.unit', unit) - if code == 1: - setprop(f'alert.{prop}.status', locaddon(32340)) - elif code == 2: - setprop(f'alert.{prop}.status', locaddon(32341)) - elif code == 3: - setprop(f'alert.{prop}.status', locaddon(32342)) - else: - setprop(f'alert.{prop}', '') - for winprop in winprops: - setprop(f'alert.{prop}.{winprop}', '') - - # Notification - if mode == 'msgqueue': - if code == 1 and setting(f'alert_{prop}_notice', 'bool'): - config.addon.msgqueue.append([ f'{loc} - {locaddon(32340)} ({hours[str(code)]} {locaddon(32288)})', f'({time}) {name}: {value} {unit}', f'{config.addon_icons}/alert/{icon}.png' ]) - elif code == 2 and setting(f'alert_{prop}_caution', 'bool'): - config.addon.msgqueue.append([ f'{loc} - {locaddon(32341)} ({hours[str(code)]} {locaddon(32288)})', f'({time}) {name}: {value} {unit}', f'{config.addon_icons}/alert/{icon}.png' ]) - elif code == 3 and setting(f'alert_{prop}_danger', 'bool'): - config.addon.msgqueue.append([ f'{loc} - {locaddon(32342)} ({hours[str(code)]} {locaddon(32288)})', f'({time}) {name}: {value} {unit}', f'{config.addon_icons}/alert/{icon}.png' ]) - - else: - if locid == curid: - setprop(f'alert.{prop}', 0) - for winprop in winprops: - setprop(f'alert.{prop}.{winprop}', '') - # Get file def getfile(file): try: @@ -635,29 +761,8 @@ def index(arg, data): # Directory def createdir(): - file = config.addon_data + 'w.txt' - - try: - os.makedirs(config.addon_cache, exist_ok=True) - with open(file, 'w') as f: - f.write('w') - except Exception as e: - log(f'Addon data directory not writeable: {config.addon_data} {e}', 2) - xbmcgui.Dialog().notification('Weather Open-Meteo', 'Weather data directory not writeable, check log ...', xbmcgui.NOTIFICATION_ERROR, 15000) - sys.exit(1) - else: - os.remove(file) - -# Locations -def locations(): - locs = 0 - for count in range(1,6): - loc = setting(f'loc{count}') - if loc: - setprop(f'location{count}', loc) - locs += 1 - - setprop('locations', locs) + p = Path(config.addon_data) + p.mkdir(parents=True, exist_ok=True) # LatLon2Coords def lat2coords(lat_deg, lon_deg, zoom): diff --git a/weather.openmeteo/lib/weather.py b/weather.openmeteo/lib/weather.py index 2783fd2a1..9bf6532a8 100644 --- a/weather.openmeteo/lib/weather.py +++ b/weather.openmeteo/lib/weather.py @@ -7,6 +7,7 @@ from . import config from . import utils +from . import conv class Main(): @@ -79,28 +80,44 @@ def __init__(self, locid, mode='kodi'): if self.mode == 'kodi': utils.monitor.waitForService() - # Note: Setting window properties is CPU bound, using threads seems to be slower - # This needs more testing ... - # with ThreadPoolExecutor(3) as pool: - # pool.map(self.setdata, config.map) - for map in config.map: - self.setdata(map) + # KODI + if not config.addon.full: + for map in config.map: + self.setdata(map) - # Alerts - for map in config.map: - self.setalert(map) + self.setother() + utils.setprops() + + # SKIN + if config.addon.skin: + config.addon.api = True + config.loc.prop = {} - # Properties - self.setprop() + for map in config.map: + self.setdata(map) + + self.setother() + utils.setprops() # Update locs elif self.mode == 'updatelocs': + + # KODI self.setlocs() + utils.setprops() + + # SKIN + if config.addon.skin: + config.addon.api = True + config.loc.prop = {} + + self.setlocs() + utils.setprops() # Notification (Queue) elif self.mode == 'msgqueue': for map in config.map: - self.setalert(map) + self.msgqueue(map) # Notification (Send) elif self.mode == 'msgsend': @@ -123,7 +140,8 @@ def init(self, locid, mode): self.today = utils.dt('nowloc').strftime('%Y-%m-%d') # Directory - os.makedirs(f'{config.addon_cache}/{locid}', exist_ok=True) + p = Path(f'{config.addon_cache}/{locid}') + p.mkdir(parents=True, exist_ok=True) ### GET DATA def getdata(self, type): @@ -154,7 +172,7 @@ def setdata(self, type): self.setmap(type, map) # Current (Advanced) - elif map[0] == 'currentskin' and config.addon.skin: + elif map[0] == 'currentskin' and config.addon.api: self.setmap(type, map) # Current (KODI) @@ -169,7 +187,7 @@ def setdata(self, type): self.setmulti(type, [ map, 'hourly', indexmid, config.maxhours, config.minhours, 'hour' ]) # Hourly (Advanced) - elif map[0] == 'hourlyskin' and config.addon.skin: + elif map[0] == 'hourlyskin' and config.addon.api: self.setmulti(type, [ map, 'hourly', indexnow, config.maxhours, config.minhours, 'hourly' ]) if config.addon.enablehour: @@ -178,18 +196,31 @@ def setdata(self, type): # Daily (Compatibility) elif map[0] == 'daily': self.setmulti(type, [ map, 'daily', indexday, config.maxdays, config.mindays, 'daily' ]) - self.setmulti(type, [ map, 'daily', indexday, config.maxdays, config.mindays, 'day' ]) + + if not config.addon.api: + self.setmulti(type, [ map, 'daily', indexday, config.maxdays, config.mindays, 'day' ]) # Daily (Advanced) - elif map[0] == 'dailyskin' and config.addon.skin: + elif map[0] == 'dailyskin' and config.addon.api: self.setmulti(type, [ map, 'daily', indexday, config.maxdays, config.mindays, 'daily' ]) - self.setmulti(type, [ map, 'daily', indexday, config.maxdays, config.mindays, 'day' ]) # Daily (KODI) elif map[0] == 'dailykodi' and self.mode == 'kodi': self.setmulti(type, [ map, 'daily', indexday, config.maxdays, config.mindays, 'daily' ]) self.setmulti(type, [ map, 'daily', indexday, config.maxdays, config.mindays, 'day' ]) + # TimeOfDay + elif map[0] == 'timeofday': + self.setmap(type, map) + + # Graph + elif map[0] == 'graph': + self.setmap(type, map) + + # Alert + if map[3] == 'graph': + self.setalert(type, [ map, indexnow ]) + ### SET CURRENT def setcurrent(self, type, locid): @@ -209,7 +240,7 @@ def setcurrent(self, type, locid): self.setmap(type, map, locid=locid) # Current (Advanced) - elif map[0] == 'currentskin' and config.addon.skin: + elif map[0] == 'currentskin' and config.addon.api: self.setmap(type, map, locid=locid) ### SET LOCATIONS @@ -224,40 +255,174 @@ def setlocs(self): # Set "Current.X" only if called from service if self.mode != 'kodi': - config.loc(locid) for map in config.map: self.setcurrent(map, locid) if locuser: - utils.setprop(f'location{locid}', locuser) + utils.addprop(f'location{locid}', locuser) + else: + utils.addprop(f'location{locid}', loc) + else: + utils.addprop(f'location{locid}', '') + + utils.addprop('locations', locs) + + ## SET ALERT + def setalert(self, src, map): + winprops = [ 'name', 'value', 'icon', 'unit', 'time', 'hours', 'status' ] + + data = self.data[src] + type = map[0][2][1] + idx = map[1] + prop = config.alert.map[type]['type'] + unit = config.alert.map[type]['unit'] + icon = config.alert.map[type]['icon'] + name = utils.locaddon(config.alert.map[type]['loc']) + hours = 0 + code = 0 + value = 0 + + # Invalid index + if not idx: + utils.log('Index invalid, weather data is not up to date ...', 3) + return + + # Alert disabled + if not utils.setting(f'alert_{prop}_enabled', 'bool', True): + utils.log(f'Disabled alert: {prop}', 3) + + utils.addprop(f'alert.{prop}', '') + for winprop in winprops: + utils.addprop(f'alert.{prop}.{winprop}', '') + + return + + # Checking alert + utils.log(f'Checking alert: {prop}', 3) + l = [] + ll = [] + + for index in range(idx, idx + config.addon.alerthours): + + try: + v = int(data[map[0][1][0]][map[0][1][1]][index]) + vv = int(data[map[0][1][0]]['time'][index]) + except: + if not self.mode == 'msgqueue': + utils.addprop(f'alert.{prop}', 0) + for winprop in winprops: + utils.addprop(f'alert.{prop}.{winprop}', '') + return + else: + l.append(v) + ll.append(vv) + + for c, d in [(x, y) for x in [ 3, 2, 1 ] for y in [ 'high', 'low', 'wmo' ] ]: + alert = f'alert_{prop}_{d}_{c}' + last = False + + try: + if d == 'wmo': + limit = list(config.alert.map[type][alert].split(' ')) else: - utils.setprop(f'location{locid}', loc) + limit = int(config.alert.map[type][alert]) + except: + continue + + for idx, v in enumerate(l): + + if d == 'high': + if v >= limit: + hours += 1 + if last and v > last: + code, value, last, stamp = c, v, v, ll[idx] + elif not last: + code, value, last, stamp = c, v, v, ll[idx] + elif d == 'low': + if v <= limit: + hours += 1 + if last and v < last: + code, value, last, stamp = c, v, v, ll[idx] + elif not last: + code, value, last, stamp = c, v, v, ll[idx] + elif d == 'wmo': + for wmo in limit: + if v == int(wmo): + hours += 1 + if last and v > last: + code, value, last, stamp = c, v, v, ll[idx] + elif not last: + code, value, last, stamp = c, v, v, ll[idx] + if hours: + break + + # Check alert code + if code != 0: + icon = f'{icon}{code}' + time = conv.time('time', stamp) + + if prop == 'condition': + icon = f'{config.map_alert_condition.get(value)}{code}' + value = config.localization.wmo.get(f'{value}d') else: - utils.setprop(f'location{locid}', '') + value, unit = conv.item(value, unit) - utils.setprop('locations', locs) + # Notification Queue + if self.mode == 'msgqueue': + if code == 1 and utils.setting(f'alert_{prop}_notice', 'bool'): + config.addon.msgqueue.append([ f'{config.loc.short} - {utils.locaddon(32340)} ({hours} {utils.locaddon(32288)})', f'({time}) {name}: {value}{unit}', f'{config.addon_icons}/alert/{icon}.png' ]) + elif code == 2 and utils.setting(f'alert_{prop}_caution', 'bool'): + config.addon.msgqueue.append([ f'{config.loc.short} - {utils.locaddon(32341)} ({hours} {utils.locaddon(32288)})', f'({time}) {name}: {value}{unit}', f'{config.addon_icons}/alert/{icon}.png' ]) + elif code == 3 and utils.setting(f'alert_{prop}_danger', 'bool'): + config.addon.msgqueue.append([ f'{config.loc.short} - {utils.locaddon(32342)} ({hours} {utils.locaddon(32288)})', f'({time}) {name}: {value}{unit}', f'{config.addon_icons}/alert/{icon}.png' ]) + + return - ### SET ALERT - def setalert(self, type): + # Set alert properties + utils.log(f'Updating alert: {prop} = {code}', 3) + config.addon.alerts += 1 + + utils.addprop(f'alert.{prop}', code) + utils.addprop(f'alert.{prop}.name', name) + utils.addprop(f'alert.{prop}.time', time) + utils.addprop(f'alert.{prop}.hours', hours) + utils.addprop(f'alert.{prop}.icon', f'{config.addon_icons}/alert/{icon}.png') + utils.addprop(f'alert.{prop}.value', value) + utils.addprop(f'alert.{prop}.unit', unit) + + if code == 1: + utils.addprop(f'alert.{prop}.status', utils.locaddon(32340)) + elif code == 2: + utils.addprop(f'alert.{prop}.status', utils.locaddon(32341)) + elif code == 3: + utils.addprop(f'alert.{prop}.status', utils.locaddon(32342)) + + else: + if self.mode == 'msgqueue': + return + + utils.addprop(f'alert.{prop}', 0) + for winprop in winprops: + utils.addprop(f'alert.{prop}.{winprop}', '') + + ### SET QUEUE + def msgqueue(self, type): # Data self.data[type] = utils.getfile(f'{config.loc.id}/{type}.json') if not self.data[type]: - utils.log(f'[Alert] No {type} data for location {config.loc.id}', 4) + utils.log(f'No {type} data for location {config.loc.id}', 2) return # Index - idx = utils.index("now", self.data[type]) - if not idx: - utils.log(f'[Alert] No {type} index for location {config.loc.id}', 4) - return - - # Notification - loc = utils.setting(f'loc{config.loc.id}').split(',')[0] + indexnow = utils.index("now", self.data[type]) + # Update msgqueue for map in config.map.get(type): + + # Alert if map[3] == 'graph': - utils.setalert(self.data[type], map, idx, config.loc.id, config.loc.cid, loc, self.mode) + self.setalert(type, [ map, indexnow ]) ### SET MULTI def setmulti(self, src, map): @@ -268,11 +433,15 @@ def setmulti(self, src, map): min = map[4] prop = map[5] - if config.addon.skin is False and ( prop == 'hourly' or prop == 'daily' ): + if config.addon.api is False and ( prop == 'hourly' or prop == 'daily' ): count = 1 else: count = 0 + if not idx: + utils.log('Index invalid, weather data is not up to date ...', 3) + return + for index in range(idx, idx + max, 1): map[0][2][0] = prop self.setmap(src, map[0], index, count) @@ -305,18 +474,20 @@ def setmap(self, src, map, idx=None, count=None, locid=None): content = utils.getprop(data, map, idx, count) except TypeError as e: utils.log(f'{property}: {type(e).__name__} {e}', 4) - utils.clrprop(property) + utils.addprop(property, '') except Exception as e: utils.log(f'{property}: {type(e).__name__} {e}', 3) - utils.clrprop(property) + utils.addprop(property, '') else: - utils.setprop(property, content) + utils.addprop(property, content) ### GET MAP def getmap(self, type): - if not utils.setting(f'map{type}', 'bool'): - return + # Layers disabled + if not type == 'osm': + if not utils.setting(f'map{type}', 'bool') or not utils.setting(f'loc{config.loc.id}maps', 'bool'): + return # Check connectivity if not api.network(): @@ -362,7 +533,7 @@ def getmap(self, type): dir = f'{config.addon_cache}/{config.loc.id}' files = sorted(list(Path(dir).glob(f'{type}_*')), reverse=True) - history = config.addon.maphistory * 2 + history = config.addon.maphistory for idx in range(0,100): @@ -376,18 +547,28 @@ def getmap(self, type): os.remove(file) ### PROPERTIES - def setprop(self): + def setother(self): # Maps - index = 1 + if config.addon.api: + index = 0 + else: + index = 1 + for layer in config.map_layers: - if not utils.setting(f'map{layer}', 'bool'): + # Layers disabled + if not utils.setting(f'map{layer}', 'bool') or not utils.setting(f'loc{config.loc.id}maps', 'bool'): + for item in [ 'area', 'layer', 'heading', 'time', 'legend' ]: + utils.addprop(f'Map.{index}.{item}', '') + + index += 1 continue + # Files dir = f'{config.addon_cache}/{config.loc.id}' files = sorted(list(Path(dir).glob(f'{layer}_*')), reverse=True) - history = config.addon.maphistory * 2 + history = config.addon.maphistory # Area if files: @@ -396,14 +577,14 @@ def setprop(self): date = tz.strftime(config.kodi.date) time = tz.strftime(config.kodi.time) - utils.setprop(f'Map.{index}.Area', f'{dir}/osm.png') - utils.setprop(f'Map.{index}.Layer', f'{dir}/{layer}_{ut}.png') - utils.setprop(f'Map.{index}.Heading', config.localization.layers.get(layer)) - utils.setprop(f'Map.{index}.Time', f'{date} {time}') - utils.setprop(f'Map.{index}.Legend', '') + utils.addprop(f'Map.{index}.Area', f'{dir}/osm.png') + utils.addprop(f'Map.{index}.Layer', f'{dir}/{layer}_{ut}.png') + utils.addprop(f'Map.{index}.Heading', config.localization.layers.get(layer)) + utils.addprop(f'Map.{index}.Time', f'{date} {time}') + utils.addprop(f'Map.{index}.Legend', '') else: for item in [ 'area', 'layer', 'heading', 'time', 'legend' ]: - utils.setprop(f'Map.{index}.{item}', '') + utils.addprop(f'Map.{index}.{item}', '') # Layers for idx in range(0, history): @@ -411,39 +592,39 @@ def setprop(self): try: file = files[idx] except: - utils.setprop(f'Map.{index}.Layer.{idx}', '') - utils.setprop(f'Map.{index}.Time.{idx}', '') + utils.addprop(f'Map.{index}.Layer.{idx}', '') + utils.addprop(f'Map.{index}.Time.{idx}', '') else: ut = int(file.stem.split('_')[1]) tz = utils.dt('stamploc', ut) date = tz.strftime(config.kodi.date) time = tz.strftime(config.kodi.time) - utils.setprop(f'Map.{index}.Layer.{idx}', f'{dir}/{layer}_{ut}.png') - utils.setprop(f'Map.{index}.Time.{idx}', f'{date} {time}') + utils.addprop(f'Map.{index}.Layer.{idx}', f'{dir}/{layer}_{ut}.png') + utils.addprop(f'Map.{index}.Time.{idx}', f'{date} {time}') index += 1 # Locations - if config.loc.user: - utils.setprop('current.location', config.loc.user) - utils.setprop('location', config.loc.user) - else: - utils.setprop('current.location', config.loc.name.split(',')[0]) - utils.setprop('location', config.loc.name) - + utils.addprop('current.location', config.loc.name) + utils.addprop('location', config.loc.name) self.setlocs() # Fetched - for prop in [ 'current', 'weather', 'hourly', 'daily', 'map' ]: - utils.setprop(f'{prop}.isfetched', 'true') + for prop in [ 'current', 'weather', 'hourly', 'daily', 'timeofday', 'map' ]: + utils.addprop(f'{prop}.isfetched', 'true') # Other - utils.setprop('alerts', config.addon.alerts) - utils.setprop('addon.icons', config.addon.icons) - utils.setprop('addon.iconsdir', config.addon_icons) - utils.setprop('WeatherProvider', 'open-meteo.com, rainviewer.com, weather.gc.ca, met.no') - utils.setprop('WeatherProviderLogo', f'{config.addon_path}/resources/banner.png') + utils.addprop('alerts', config.addon.alerts) + + if config.addon.api: + utils.addprop('icons', config.addon.icons) + utils.addprop('iconsdir', config.addon_icons) + utils.addprop('Provider', 'open-meteo.com, rainviewer.com, weather.gc.ca, met.no') + utils.addprop('ProviderLogo', f'{config.addon_path}/resources/banner.png') + else: + utils.addprop('WeatherProvider', 'open-meteo.com, rainviewer.com, weather.gc.ca, met.no') + utils.addprop('WeatherProviderLogo', f'{config.addon_path}/resources/banner.png') ### NOTIFICATION def notification(self): diff --git a/weather.openmeteo/resources/icons/alert/aqieu.png b/weather.openmeteo/resources/icons/alert/aqieu.png deleted file mode 100644 index 8cf6bf305..000000000 Binary files a/weather.openmeteo/resources/icons/alert/aqieu.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/alert/aqieu1.png b/weather.openmeteo/resources/icons/alert/aqieu1.png deleted file mode 100644 index 489764713..000000000 Binary files a/weather.openmeteo/resources/icons/alert/aqieu1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/alert/aqieu2.png b/weather.openmeteo/resources/icons/alert/aqieu2.png deleted file mode 100644 index 436f2be54..000000000 Binary files a/weather.openmeteo/resources/icons/alert/aqieu2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/alert/aqieu3.png b/weather.openmeteo/resources/icons/alert/aqieu3.png deleted file mode 100644 index 525c99373..000000000 Binary files a/weather.openmeteo/resources/icons/alert/aqieu3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/alert/aqius.png b/weather.openmeteo/resources/icons/alert/aqius.png deleted file mode 100644 index 8cf6bf305..000000000 Binary files a/weather.openmeteo/resources/icons/alert/aqius.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/alert/aqius1.png b/weather.openmeteo/resources/icons/alert/aqius1.png deleted file mode 100644 index 489764713..000000000 Binary files a/weather.openmeteo/resources/icons/alert/aqius1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/alert/aqius2.png b/weather.openmeteo/resources/icons/alert/aqius2.png deleted file mode 100644 index 436f2be54..000000000 Binary files a/weather.openmeteo/resources/icons/alert/aqius2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/alert/aqius3.png b/weather.openmeteo/resources/icons/alert/aqius3.png deleted file mode 100644 index 525c99373..000000000 Binary files a/weather.openmeteo/resources/icons/alert/aqius3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/alert/cloudiness.png b/weather.openmeteo/resources/icons/alert/cloud.png similarity index 100% rename from weather.openmeteo/resources/icons/alert/cloudiness.png rename to weather.openmeteo/resources/icons/alert/cloud.png diff --git a/weather.openmeteo/resources/icons/alert/cloudiness1.png b/weather.openmeteo/resources/icons/alert/cloud1.png similarity index 100% rename from weather.openmeteo/resources/icons/alert/cloudiness1.png rename to weather.openmeteo/resources/icons/alert/cloud1.png diff --git a/weather.openmeteo/resources/icons/alert/cloudiness2.png b/weather.openmeteo/resources/icons/alert/cloud2.png similarity index 100% rename from weather.openmeteo/resources/icons/alert/cloudiness2.png rename to weather.openmeteo/resources/icons/alert/cloud2.png diff --git a/weather.openmeteo/resources/icons/alert/cloudiness3.png b/weather.openmeteo/resources/icons/alert/cloud3.png similarity index 100% rename from weather.openmeteo/resources/icons/alert/cloudiness3.png rename to weather.openmeteo/resources/icons/alert/cloud3.png diff --git a/weather.openmeteo/resources/icons/alert/co.png b/weather.openmeteo/resources/icons/alert/co.png deleted file mode 100644 index d847bcecb..000000000 Binary files a/weather.openmeteo/resources/icons/alert/co.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/alert/co1.png b/weather.openmeteo/resources/icons/alert/co1.png deleted file mode 100644 index 6376accaf..000000000 Binary files a/weather.openmeteo/resources/icons/alert/co1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/alert/co2.png b/weather.openmeteo/resources/icons/alert/co2.png deleted file mode 100644 index 30a23ea08..000000000 Binary files a/weather.openmeteo/resources/icons/alert/co2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/alert/co3.png b/weather.openmeteo/resources/icons/alert/co3.png deleted file mode 100644 index 6a9227eb4..000000000 Binary files a/weather.openmeteo/resources/icons/alert/co3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/alert/dewpoint.png b/weather.openmeteo/resources/icons/alert/dewpoint.png deleted file mode 100644 index 7ed860fa4..000000000 Binary files a/weather.openmeteo/resources/icons/alert/dewpoint.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/alert/dewpoint1.png b/weather.openmeteo/resources/icons/alert/dewpoint1.png deleted file mode 100644 index 11d2ea2ab..000000000 Binary files a/weather.openmeteo/resources/icons/alert/dewpoint1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/alert/dewpoint2.png b/weather.openmeteo/resources/icons/alert/dewpoint2.png deleted file mode 100644 index 5e3174877..000000000 Binary files a/weather.openmeteo/resources/icons/alert/dewpoint2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/alert/dewpoint3.png b/weather.openmeteo/resources/icons/alert/dewpoint3.png deleted file mode 100644 index 7b395311e..000000000 Binary files a/weather.openmeteo/resources/icons/alert/dewpoint3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/alert/dust.png b/weather.openmeteo/resources/icons/alert/dust.png deleted file mode 100644 index d847bcecb..000000000 Binary files a/weather.openmeteo/resources/icons/alert/dust.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/alert/dust1.png b/weather.openmeteo/resources/icons/alert/dust1.png deleted file mode 100644 index 6376accaf..000000000 Binary files a/weather.openmeteo/resources/icons/alert/dust1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/alert/dust2.png b/weather.openmeteo/resources/icons/alert/dust2.png deleted file mode 100644 index 30a23ea08..000000000 Binary files a/weather.openmeteo/resources/icons/alert/dust2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/alert/dust3.png b/weather.openmeteo/resources/icons/alert/dust3.png deleted file mode 100644 index 6a9227eb4..000000000 Binary files a/weather.openmeteo/resources/icons/alert/dust3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/alert/feelslike.png b/weather.openmeteo/resources/icons/alert/feelslike.png deleted file mode 100644 index 7ed860fa4..000000000 Binary files a/weather.openmeteo/resources/icons/alert/feelslike.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/alert/feelslike1.png b/weather.openmeteo/resources/icons/alert/feelslike1.png deleted file mode 100644 index 11d2ea2ab..000000000 Binary files a/weather.openmeteo/resources/icons/alert/feelslike1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/alert/feelslike2.png b/weather.openmeteo/resources/icons/alert/feelslike2.png deleted file mode 100644 index 5e3174877..000000000 Binary files a/weather.openmeteo/resources/icons/alert/feelslike2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/alert/feelslike3.png b/weather.openmeteo/resources/icons/alert/feelslike3.png deleted file mode 100644 index 7b395311e..000000000 Binary files a/weather.openmeteo/resources/icons/alert/feelslike3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/alert/conditionfog.png b/weather.openmeteo/resources/icons/alert/fog.png similarity index 100% rename from weather.openmeteo/resources/icons/alert/conditionfog.png rename to weather.openmeteo/resources/icons/alert/fog.png diff --git a/weather.openmeteo/resources/icons/alert/conditionfog1.png b/weather.openmeteo/resources/icons/alert/fog1.png similarity index 100% rename from weather.openmeteo/resources/icons/alert/conditionfog1.png rename to weather.openmeteo/resources/icons/alert/fog1.png diff --git a/weather.openmeteo/resources/icons/alert/conditionfog2.png b/weather.openmeteo/resources/icons/alert/fog2.png similarity index 100% rename from weather.openmeteo/resources/icons/alert/conditionfog2.png rename to weather.openmeteo/resources/icons/alert/fog2.png diff --git a/weather.openmeteo/resources/icons/alert/conditionfog3.png b/weather.openmeteo/resources/icons/alert/fog3.png similarity index 100% rename from weather.openmeteo/resources/icons/alert/conditionfog3.png rename to weather.openmeteo/resources/icons/alert/fog3.png diff --git a/weather.openmeteo/resources/icons/alert/grass.png b/weather.openmeteo/resources/icons/alert/grass.png deleted file mode 100644 index d847bcecb..000000000 Binary files a/weather.openmeteo/resources/icons/alert/grass.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/alert/grass1.png b/weather.openmeteo/resources/icons/alert/grass1.png deleted file mode 100644 index 6376accaf..000000000 Binary files a/weather.openmeteo/resources/icons/alert/grass1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/alert/grass2.png b/weather.openmeteo/resources/icons/alert/grass2.png deleted file mode 100644 index 30a23ea08..000000000 Binary files a/weather.openmeteo/resources/icons/alert/grass2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/alert/grass3.png b/weather.openmeteo/resources/icons/alert/grass3.png deleted file mode 100644 index 6a9227eb4..000000000 Binary files a/weather.openmeteo/resources/icons/alert/grass3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/alert/aqi.png b/weather.openmeteo/resources/icons/alert/health.png similarity index 100% rename from weather.openmeteo/resources/icons/alert/aqi.png rename to weather.openmeteo/resources/icons/alert/health.png diff --git a/weather.openmeteo/resources/icons/alert/aqi1.png b/weather.openmeteo/resources/icons/alert/health1.png similarity index 100% rename from weather.openmeteo/resources/icons/alert/aqi1.png rename to weather.openmeteo/resources/icons/alert/health1.png diff --git a/weather.openmeteo/resources/icons/alert/aqi2.png b/weather.openmeteo/resources/icons/alert/health2.png similarity index 100% rename from weather.openmeteo/resources/icons/alert/aqi2.png rename to weather.openmeteo/resources/icons/alert/health2.png diff --git a/weather.openmeteo/resources/icons/alert/aqi3.png b/weather.openmeteo/resources/icons/alert/health3.png similarity index 100% rename from weather.openmeteo/resources/icons/alert/aqi3.png rename to weather.openmeteo/resources/icons/alert/health3.png diff --git a/weather.openmeteo/resources/icons/alert/mugwort.png b/weather.openmeteo/resources/icons/alert/mugwort.png deleted file mode 100644 index d847bcecb..000000000 Binary files a/weather.openmeteo/resources/icons/alert/mugwort.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/alert/mugwort1.png b/weather.openmeteo/resources/icons/alert/mugwort1.png deleted file mode 100644 index 6376accaf..000000000 Binary files a/weather.openmeteo/resources/icons/alert/mugwort1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/alert/mugwort2.png b/weather.openmeteo/resources/icons/alert/mugwort2.png deleted file mode 100644 index 30a23ea08..000000000 Binary files a/weather.openmeteo/resources/icons/alert/mugwort2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/alert/mugwort3.png b/weather.openmeteo/resources/icons/alert/mugwort3.png deleted file mode 100644 index 6a9227eb4..000000000 Binary files a/weather.openmeteo/resources/icons/alert/mugwort3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/alert/no2.png b/weather.openmeteo/resources/icons/alert/no2.png deleted file mode 100644 index d847bcecb..000000000 Binary files a/weather.openmeteo/resources/icons/alert/no2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/alert/no21.png b/weather.openmeteo/resources/icons/alert/no21.png deleted file mode 100644 index 6376accaf..000000000 Binary files a/weather.openmeteo/resources/icons/alert/no21.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/alert/no22.png b/weather.openmeteo/resources/icons/alert/no22.png deleted file mode 100644 index 30a23ea08..000000000 Binary files a/weather.openmeteo/resources/icons/alert/no22.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/alert/no23.png b/weather.openmeteo/resources/icons/alert/no23.png deleted file mode 100644 index 6a9227eb4..000000000 Binary files a/weather.openmeteo/resources/icons/alert/no23.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/alert/olive.png b/weather.openmeteo/resources/icons/alert/olive.png deleted file mode 100644 index d847bcecb..000000000 Binary files a/weather.openmeteo/resources/icons/alert/olive.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/alert/olive1.png b/weather.openmeteo/resources/icons/alert/olive1.png deleted file mode 100644 index 6376accaf..000000000 Binary files a/weather.openmeteo/resources/icons/alert/olive1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/alert/olive2.png b/weather.openmeteo/resources/icons/alert/olive2.png deleted file mode 100644 index 30a23ea08..000000000 Binary files a/weather.openmeteo/resources/icons/alert/olive2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/alert/olive3.png b/weather.openmeteo/resources/icons/alert/olive3.png deleted file mode 100644 index 6a9227eb4..000000000 Binary files a/weather.openmeteo/resources/icons/alert/olive3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/alert/ozone.png b/weather.openmeteo/resources/icons/alert/ozone.png deleted file mode 100644 index d847bcecb..000000000 Binary files a/weather.openmeteo/resources/icons/alert/ozone.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/alert/ozone1.png b/weather.openmeteo/resources/icons/alert/ozone1.png deleted file mode 100644 index 6376accaf..000000000 Binary files a/weather.openmeteo/resources/icons/alert/ozone1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/alert/ozone2.png b/weather.openmeteo/resources/icons/alert/ozone2.png deleted file mode 100644 index 30a23ea08..000000000 Binary files a/weather.openmeteo/resources/icons/alert/ozone2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/alert/ozone3.png b/weather.openmeteo/resources/icons/alert/ozone3.png deleted file mode 100644 index 6a9227eb4..000000000 Binary files a/weather.openmeteo/resources/icons/alert/ozone3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/alert/alder.png b/weather.openmeteo/resources/icons/alert/particles.png similarity index 100% rename from weather.openmeteo/resources/icons/alert/alder.png rename to weather.openmeteo/resources/icons/alert/particles.png diff --git a/weather.openmeteo/resources/icons/alert/alder1.png b/weather.openmeteo/resources/icons/alert/particles1.png similarity index 100% rename from weather.openmeteo/resources/icons/alert/alder1.png rename to weather.openmeteo/resources/icons/alert/particles1.png diff --git a/weather.openmeteo/resources/icons/alert/alder2.png b/weather.openmeteo/resources/icons/alert/particles2.png similarity index 100% rename from weather.openmeteo/resources/icons/alert/alder2.png rename to weather.openmeteo/resources/icons/alert/particles2.png diff --git a/weather.openmeteo/resources/icons/alert/alder3.png b/weather.openmeteo/resources/icons/alert/particles3.png similarity index 100% rename from weather.openmeteo/resources/icons/alert/alder3.png rename to weather.openmeteo/resources/icons/alert/particles3.png diff --git a/weather.openmeteo/resources/icons/alert/pm10.png b/weather.openmeteo/resources/icons/alert/pm10.png deleted file mode 100644 index d847bcecb..000000000 Binary files a/weather.openmeteo/resources/icons/alert/pm10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/alert/pm101.png b/weather.openmeteo/resources/icons/alert/pm101.png deleted file mode 100644 index 6376accaf..000000000 Binary files a/weather.openmeteo/resources/icons/alert/pm101.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/alert/pm102.png b/weather.openmeteo/resources/icons/alert/pm102.png deleted file mode 100644 index 30a23ea08..000000000 Binary files a/weather.openmeteo/resources/icons/alert/pm102.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/alert/pm103.png b/weather.openmeteo/resources/icons/alert/pm103.png deleted file mode 100644 index 6a9227eb4..000000000 Binary files a/weather.openmeteo/resources/icons/alert/pm103.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/alert/pm25.png b/weather.openmeteo/resources/icons/alert/pm25.png deleted file mode 100644 index d847bcecb..000000000 Binary files a/weather.openmeteo/resources/icons/alert/pm25.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/alert/pm251.png b/weather.openmeteo/resources/icons/alert/pm251.png deleted file mode 100644 index 6376accaf..000000000 Binary files a/weather.openmeteo/resources/icons/alert/pm251.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/alert/pm252.png b/weather.openmeteo/resources/icons/alert/pm252.png deleted file mode 100644 index 30a23ea08..000000000 Binary files a/weather.openmeteo/resources/icons/alert/pm252.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/alert/pm253.png b/weather.openmeteo/resources/icons/alert/pm253.png deleted file mode 100644 index 6a9227eb4..000000000 Binary files a/weather.openmeteo/resources/icons/alert/pm253.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/alert/birch.png b/weather.openmeteo/resources/icons/alert/pollen.png similarity index 100% rename from weather.openmeteo/resources/icons/alert/birch.png rename to weather.openmeteo/resources/icons/alert/pollen.png diff --git a/weather.openmeteo/resources/icons/alert/birch1.png b/weather.openmeteo/resources/icons/alert/pollen1.png similarity index 100% rename from weather.openmeteo/resources/icons/alert/birch1.png rename to weather.openmeteo/resources/icons/alert/pollen1.png diff --git a/weather.openmeteo/resources/icons/alert/birch2.png b/weather.openmeteo/resources/icons/alert/pollen2.png similarity index 100% rename from weather.openmeteo/resources/icons/alert/birch2.png rename to weather.openmeteo/resources/icons/alert/pollen2.png diff --git a/weather.openmeteo/resources/icons/alert/birch3.png b/weather.openmeteo/resources/icons/alert/pollen3.png similarity index 100% rename from weather.openmeteo/resources/icons/alert/birch3.png rename to weather.openmeteo/resources/icons/alert/pollen3.png diff --git a/weather.openmeteo/resources/icons/alert/precipitation1.png b/weather.openmeteo/resources/icons/alert/precipitation1.png index 1d005d574..81cf1afb2 100644 Binary files a/weather.openmeteo/resources/icons/alert/precipitation1.png and b/weather.openmeteo/resources/icons/alert/precipitation1.png differ diff --git a/weather.openmeteo/resources/icons/alert/precipitation2.png b/weather.openmeteo/resources/icons/alert/precipitation2.png index 6ae5a121d..ca83d6d34 100644 Binary files a/weather.openmeteo/resources/icons/alert/precipitation2.png and b/weather.openmeteo/resources/icons/alert/precipitation2.png differ diff --git a/weather.openmeteo/resources/icons/alert/precipitation3.png b/weather.openmeteo/resources/icons/alert/precipitation3.png index 80187f2c0..fcdfd68f0 100644 Binary files a/weather.openmeteo/resources/icons/alert/precipitation3.png and b/weather.openmeteo/resources/icons/alert/precipitation3.png differ diff --git a/weather.openmeteo/resources/icons/alert/precipitationprobability.png b/weather.openmeteo/resources/icons/alert/precipitationprobability.png deleted file mode 100644 index b0030e8f0..000000000 Binary files a/weather.openmeteo/resources/icons/alert/precipitationprobability.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/alert/precipitationprobability1.png b/weather.openmeteo/resources/icons/alert/precipitationprobability1.png deleted file mode 100644 index 604ca929a..000000000 Binary files a/weather.openmeteo/resources/icons/alert/precipitationprobability1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/alert/precipitationprobability2.png b/weather.openmeteo/resources/icons/alert/precipitationprobability2.png deleted file mode 100644 index 906641771..000000000 Binary files a/weather.openmeteo/resources/icons/alert/precipitationprobability2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/alert/precipitationprobability3.png b/weather.openmeteo/resources/icons/alert/precipitationprobability3.png deleted file mode 100644 index 8670e5754..000000000 Binary files a/weather.openmeteo/resources/icons/alert/precipitationprobability3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/alert/pressuresurface.png b/weather.openmeteo/resources/icons/alert/pressuresurface.png deleted file mode 100644 index d74ff1afc..000000000 Binary files a/weather.openmeteo/resources/icons/alert/pressuresurface.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/alert/pressuresurface1.png b/weather.openmeteo/resources/icons/alert/pressuresurface1.png deleted file mode 100644 index 8740c131e..000000000 Binary files a/weather.openmeteo/resources/icons/alert/pressuresurface1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/alert/pressuresurface2.png b/weather.openmeteo/resources/icons/alert/pressuresurface2.png deleted file mode 100644 index ec750ebcb..000000000 Binary files a/weather.openmeteo/resources/icons/alert/pressuresurface2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/alert/pressuresurface3.png b/weather.openmeteo/resources/icons/alert/pressuresurface3.png deleted file mode 100644 index 76450e456..000000000 Binary files a/weather.openmeteo/resources/icons/alert/pressuresurface3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/alert/ragweed.png b/weather.openmeteo/resources/icons/alert/ragweed.png deleted file mode 100644 index d847bcecb..000000000 Binary files a/weather.openmeteo/resources/icons/alert/ragweed.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/alert/ragweed1.png b/weather.openmeteo/resources/icons/alert/ragweed1.png deleted file mode 100644 index 6376accaf..000000000 Binary files a/weather.openmeteo/resources/icons/alert/ragweed1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/alert/ragweed2.png b/weather.openmeteo/resources/icons/alert/ragweed2.png deleted file mode 100644 index 30a23ea08..000000000 Binary files a/weather.openmeteo/resources/icons/alert/ragweed2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/alert/ragweed3.png b/weather.openmeteo/resources/icons/alert/ragweed3.png deleted file mode 100644 index 6a9227eb4..000000000 Binary files a/weather.openmeteo/resources/icons/alert/ragweed3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/alert/conditionrain.png b/weather.openmeteo/resources/icons/alert/rain.png similarity index 100% rename from weather.openmeteo/resources/icons/alert/conditionrain.png rename to weather.openmeteo/resources/icons/alert/rain.png diff --git a/weather.openmeteo/resources/icons/alert/conditionrain1.png b/weather.openmeteo/resources/icons/alert/rain1.png similarity index 100% rename from weather.openmeteo/resources/icons/alert/conditionrain1.png rename to weather.openmeteo/resources/icons/alert/rain1.png diff --git a/weather.openmeteo/resources/icons/alert/conditionrain2.png b/weather.openmeteo/resources/icons/alert/rain2.png similarity index 100% rename from weather.openmeteo/resources/icons/alert/conditionrain2.png rename to weather.openmeteo/resources/icons/alert/rain2.png diff --git a/weather.openmeteo/resources/icons/alert/conditionrain3.png b/weather.openmeteo/resources/icons/alert/rain3.png similarity index 100% rename from weather.openmeteo/resources/icons/alert/conditionrain3.png rename to weather.openmeteo/resources/icons/alert/rain3.png diff --git a/weather.openmeteo/resources/icons/alert/conditionsnow.png b/weather.openmeteo/resources/icons/alert/snow.png similarity index 100% rename from weather.openmeteo/resources/icons/alert/conditionsnow.png rename to weather.openmeteo/resources/icons/alert/snow.png diff --git a/weather.openmeteo/resources/icons/alert/conditionsnow1.png b/weather.openmeteo/resources/icons/alert/snow1.png similarity index 100% rename from weather.openmeteo/resources/icons/alert/conditionsnow1.png rename to weather.openmeteo/resources/icons/alert/snow1.png diff --git a/weather.openmeteo/resources/icons/alert/conditionsnow2.png b/weather.openmeteo/resources/icons/alert/snow2.png similarity index 100% rename from weather.openmeteo/resources/icons/alert/conditionsnow2.png rename to weather.openmeteo/resources/icons/alert/snow2.png diff --git a/weather.openmeteo/resources/icons/alert/conditionsnow3.png b/weather.openmeteo/resources/icons/alert/snow3.png similarity index 100% rename from weather.openmeteo/resources/icons/alert/conditionsnow3.png rename to weather.openmeteo/resources/icons/alert/snow3.png diff --git a/weather.openmeteo/resources/icons/alert/so2.png b/weather.openmeteo/resources/icons/alert/so2.png deleted file mode 100644 index d847bcecb..000000000 Binary files a/weather.openmeteo/resources/icons/alert/so2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/alert/so21.png b/weather.openmeteo/resources/icons/alert/so21.png deleted file mode 100644 index 6376accaf..000000000 Binary files a/weather.openmeteo/resources/icons/alert/so21.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/alert/so22.png b/weather.openmeteo/resources/icons/alert/so22.png deleted file mode 100644 index 30a23ea08..000000000 Binary files a/weather.openmeteo/resources/icons/alert/so22.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/alert/so23.png b/weather.openmeteo/resources/icons/alert/so23.png deleted file mode 100644 index 6a9227eb4..000000000 Binary files a/weather.openmeteo/resources/icons/alert/so23.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/alert/conditionstorm.png b/weather.openmeteo/resources/icons/alert/storm.png similarity index 100% rename from weather.openmeteo/resources/icons/alert/conditionstorm.png rename to weather.openmeteo/resources/icons/alert/storm.png diff --git a/weather.openmeteo/resources/icons/alert/conditionstorm1.png b/weather.openmeteo/resources/icons/alert/storm1.png similarity index 100% rename from weather.openmeteo/resources/icons/alert/conditionstorm1.png rename to weather.openmeteo/resources/icons/alert/storm1.png diff --git a/weather.openmeteo/resources/icons/alert/conditionstorm2.png b/weather.openmeteo/resources/icons/alert/storm2.png similarity index 100% rename from weather.openmeteo/resources/icons/alert/conditionstorm2.png rename to weather.openmeteo/resources/icons/alert/storm2.png diff --git a/weather.openmeteo/resources/icons/alert/conditionstorm3.png b/weather.openmeteo/resources/icons/alert/storm3.png similarity index 100% rename from weather.openmeteo/resources/icons/alert/conditionstorm3.png rename to weather.openmeteo/resources/icons/alert/storm3.png diff --git a/weather.openmeteo/resources/icons/alert/windgust.png b/weather.openmeteo/resources/icons/alert/wind.png similarity index 100% rename from weather.openmeteo/resources/icons/alert/windgust.png rename to weather.openmeteo/resources/icons/alert/wind.png diff --git a/weather.openmeteo/resources/icons/alert/windgust1.png b/weather.openmeteo/resources/icons/alert/wind1.png similarity index 100% rename from weather.openmeteo/resources/icons/alert/windgust1.png rename to weather.openmeteo/resources/icons/alert/wind1.png diff --git a/weather.openmeteo/resources/icons/alert/windgust2.png b/weather.openmeteo/resources/icons/alert/wind2.png similarity index 100% rename from weather.openmeteo/resources/icons/alert/windgust2.png rename to weather.openmeteo/resources/icons/alert/wind2.png diff --git a/weather.openmeteo/resources/icons/alert/windgust3.png b/weather.openmeteo/resources/icons/alert/wind3.png similarity index 100% rename from weather.openmeteo/resources/icons/alert/windgust3.png rename to weather.openmeteo/resources/icons/alert/wind3.png diff --git a/weather.openmeteo/resources/icons/alert/windspeed.png b/weather.openmeteo/resources/icons/alert/windspeed.png deleted file mode 100644 index e5bef3c43..000000000 Binary files a/weather.openmeteo/resources/icons/alert/windspeed.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/alert/windspeed1.png b/weather.openmeteo/resources/icons/alert/windspeed1.png deleted file mode 100644 index ed9e6d6c6..000000000 Binary files a/weather.openmeteo/resources/icons/alert/windspeed1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/alert/windspeed2.png b/weather.openmeteo/resources/icons/alert/windspeed2.png deleted file mode 100644 index 2f3fb5313..000000000 Binary files a/weather.openmeteo/resources/icons/alert/windspeed2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/alert/windspeed3.png b/weather.openmeteo/resources/icons/alert/windspeed3.png deleted file mode 100644 index 012823caa..000000000 Binary files a/weather.openmeteo/resources/icons/alert/windspeed3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/default/0d.png b/weather.openmeteo/resources/icons/default/0d.png index 772a88152..e14ff209b 100644 Binary files a/weather.openmeteo/resources/icons/default/0d.png and b/weather.openmeteo/resources/icons/default/0d.png differ diff --git a/weather.openmeteo/resources/icons/default/0n.png b/weather.openmeteo/resources/icons/default/0n.png index 1b9e87b03..8dc13a3df 100644 Binary files a/weather.openmeteo/resources/icons/default/0n.png and b/weather.openmeteo/resources/icons/default/0n.png differ diff --git a/weather.openmeteo/resources/icons/default/1d.png b/weather.openmeteo/resources/icons/default/1d.png index 571d6fd23..b0f8730f0 100644 Binary files a/weather.openmeteo/resources/icons/default/1d.png and b/weather.openmeteo/resources/icons/default/1d.png differ diff --git a/weather.openmeteo/resources/icons/default/1n.png b/weather.openmeteo/resources/icons/default/1n.png index 7d270ab39..f1a13f175 100644 Binary files a/weather.openmeteo/resources/icons/default/1n.png and b/weather.openmeteo/resources/icons/default/1n.png differ diff --git a/weather.openmeteo/resources/icons/default/2d.png b/weather.openmeteo/resources/icons/default/2d.png index 08f094972..d99c6b72c 100644 Binary files a/weather.openmeteo/resources/icons/default/2d.png and b/weather.openmeteo/resources/icons/default/2d.png differ diff --git a/weather.openmeteo/resources/icons/default/2n.png b/weather.openmeteo/resources/icons/default/2n.png index 3dadbec1b..737cf8b57 100644 Binary files a/weather.openmeteo/resources/icons/default/2n.png and b/weather.openmeteo/resources/icons/default/2n.png differ diff --git a/weather.openmeteo/resources/icons/default/3d.png b/weather.openmeteo/resources/icons/default/3d.png index 9ea0fcdea..211535de9 100644 Binary files a/weather.openmeteo/resources/icons/default/3d.png and b/weather.openmeteo/resources/icons/default/3d.png differ diff --git a/weather.openmeteo/resources/icons/default/3n.png b/weather.openmeteo/resources/icons/default/3n.png index 9ea0fcdea..d415b2020 100644 Binary files a/weather.openmeteo/resources/icons/default/3n.png and b/weather.openmeteo/resources/icons/default/3n.png differ diff --git a/weather.openmeteo/resources/icons/default/45d.png b/weather.openmeteo/resources/icons/default/45d.png index 5337086c6..d2823d7b5 100644 Binary files a/weather.openmeteo/resources/icons/default/45d.png and b/weather.openmeteo/resources/icons/default/45d.png differ diff --git a/weather.openmeteo/resources/icons/default/45n.png b/weather.openmeteo/resources/icons/default/45n.png index 5337086c6..07320675d 100644 Binary files a/weather.openmeteo/resources/icons/default/45n.png and b/weather.openmeteo/resources/icons/default/45n.png differ diff --git a/weather.openmeteo/resources/icons/default/48d.png b/weather.openmeteo/resources/icons/default/48d.png index 5337086c6..4cf634113 100644 Binary files a/weather.openmeteo/resources/icons/default/48d.png and b/weather.openmeteo/resources/icons/default/48d.png differ diff --git a/weather.openmeteo/resources/icons/default/48n.png b/weather.openmeteo/resources/icons/default/48n.png index 5337086c6..b70b335de 100644 Binary files a/weather.openmeteo/resources/icons/default/48n.png and b/weather.openmeteo/resources/icons/default/48n.png differ diff --git a/weather.openmeteo/resources/icons/default/51d.png b/weather.openmeteo/resources/icons/default/51d.png index 8b94c28a4..cfde08b6f 100644 Binary files a/weather.openmeteo/resources/icons/default/51d.png and b/weather.openmeteo/resources/icons/default/51d.png differ diff --git a/weather.openmeteo/resources/icons/default/51n.png b/weather.openmeteo/resources/icons/default/51n.png index 8b94c28a4..d96b63c8e 100644 Binary files a/weather.openmeteo/resources/icons/default/51n.png and b/weather.openmeteo/resources/icons/default/51n.png differ diff --git a/weather.openmeteo/resources/icons/default/53d.png b/weather.openmeteo/resources/icons/default/53d.png index a8b4a1e2c..97275365d 100644 Binary files a/weather.openmeteo/resources/icons/default/53d.png and b/weather.openmeteo/resources/icons/default/53d.png differ diff --git a/weather.openmeteo/resources/icons/default/53n.png b/weather.openmeteo/resources/icons/default/53n.png index a8b4a1e2c..6d626eee7 100644 Binary files a/weather.openmeteo/resources/icons/default/53n.png and b/weather.openmeteo/resources/icons/default/53n.png differ diff --git a/weather.openmeteo/resources/icons/default/55d.png b/weather.openmeteo/resources/icons/default/55d.png index a127c2486..c14824a06 100644 Binary files a/weather.openmeteo/resources/icons/default/55d.png and b/weather.openmeteo/resources/icons/default/55d.png differ diff --git a/weather.openmeteo/resources/icons/default/55n.png b/weather.openmeteo/resources/icons/default/55n.png index a127c2486..7a61937a0 100644 Binary files a/weather.openmeteo/resources/icons/default/55n.png and b/weather.openmeteo/resources/icons/default/55n.png differ diff --git a/weather.openmeteo/resources/icons/default/56d.png b/weather.openmeteo/resources/icons/default/56d.png index d93991ba4..402e89c09 100644 Binary files a/weather.openmeteo/resources/icons/default/56d.png and b/weather.openmeteo/resources/icons/default/56d.png differ diff --git a/weather.openmeteo/resources/icons/default/56n.png b/weather.openmeteo/resources/icons/default/56n.png index d93991ba4..14644a03e 100644 Binary files a/weather.openmeteo/resources/icons/default/56n.png and b/weather.openmeteo/resources/icons/default/56n.png differ diff --git a/weather.openmeteo/resources/icons/default/57d.png b/weather.openmeteo/resources/icons/default/57d.png index e68758f3a..204097ca8 100644 Binary files a/weather.openmeteo/resources/icons/default/57d.png and b/weather.openmeteo/resources/icons/default/57d.png differ diff --git a/weather.openmeteo/resources/icons/default/57n.png b/weather.openmeteo/resources/icons/default/57n.png index e68758f3a..7e60e5a10 100644 Binary files a/weather.openmeteo/resources/icons/default/57n.png and b/weather.openmeteo/resources/icons/default/57n.png differ diff --git a/weather.openmeteo/resources/icons/default/61d.png b/weather.openmeteo/resources/icons/default/61d.png index 8b94c28a4..cfde08b6f 100644 Binary files a/weather.openmeteo/resources/icons/default/61d.png and b/weather.openmeteo/resources/icons/default/61d.png differ diff --git a/weather.openmeteo/resources/icons/default/61n.png b/weather.openmeteo/resources/icons/default/61n.png index 8b94c28a4..d96b63c8e 100644 Binary files a/weather.openmeteo/resources/icons/default/61n.png and b/weather.openmeteo/resources/icons/default/61n.png differ diff --git a/weather.openmeteo/resources/icons/default/63d.png b/weather.openmeteo/resources/icons/default/63d.png index a8b4a1e2c..97275365d 100644 Binary files a/weather.openmeteo/resources/icons/default/63d.png and b/weather.openmeteo/resources/icons/default/63d.png differ diff --git a/weather.openmeteo/resources/icons/default/63n.png b/weather.openmeteo/resources/icons/default/63n.png index a8b4a1e2c..6d626eee7 100644 Binary files a/weather.openmeteo/resources/icons/default/63n.png and b/weather.openmeteo/resources/icons/default/63n.png differ diff --git a/weather.openmeteo/resources/icons/default/65d.png b/weather.openmeteo/resources/icons/default/65d.png index a127c2486..c14824a06 100644 Binary files a/weather.openmeteo/resources/icons/default/65d.png and b/weather.openmeteo/resources/icons/default/65d.png differ diff --git a/weather.openmeteo/resources/icons/default/65n.png b/weather.openmeteo/resources/icons/default/65n.png index a127c2486..7a61937a0 100644 Binary files a/weather.openmeteo/resources/icons/default/65n.png and b/weather.openmeteo/resources/icons/default/65n.png differ diff --git a/weather.openmeteo/resources/icons/default/66d.png b/weather.openmeteo/resources/icons/default/66d.png index d93991ba4..402e89c09 100644 Binary files a/weather.openmeteo/resources/icons/default/66d.png and b/weather.openmeteo/resources/icons/default/66d.png differ diff --git a/weather.openmeteo/resources/icons/default/66n.png b/weather.openmeteo/resources/icons/default/66n.png index d93991ba4..14644a03e 100644 Binary files a/weather.openmeteo/resources/icons/default/66n.png and b/weather.openmeteo/resources/icons/default/66n.png differ diff --git a/weather.openmeteo/resources/icons/default/67d.png b/weather.openmeteo/resources/icons/default/67d.png index e68758f3a..204097ca8 100644 Binary files a/weather.openmeteo/resources/icons/default/67d.png and b/weather.openmeteo/resources/icons/default/67d.png differ diff --git a/weather.openmeteo/resources/icons/default/67n.png b/weather.openmeteo/resources/icons/default/67n.png index e68758f3a..7e60e5a10 100644 Binary files a/weather.openmeteo/resources/icons/default/67n.png and b/weather.openmeteo/resources/icons/default/67n.png differ diff --git a/weather.openmeteo/resources/icons/default/71d.png b/weather.openmeteo/resources/icons/default/71d.png index 2a13fffe9..79a2816a2 100644 Binary files a/weather.openmeteo/resources/icons/default/71d.png and b/weather.openmeteo/resources/icons/default/71d.png differ diff --git a/weather.openmeteo/resources/icons/default/71n.png b/weather.openmeteo/resources/icons/default/71n.png index 2a13fffe9..c8b31de36 100644 Binary files a/weather.openmeteo/resources/icons/default/71n.png and b/weather.openmeteo/resources/icons/default/71n.png differ diff --git a/weather.openmeteo/resources/icons/default/73d.png b/weather.openmeteo/resources/icons/default/73d.png index ab1da2b1e..7da18f396 100644 Binary files a/weather.openmeteo/resources/icons/default/73d.png and b/weather.openmeteo/resources/icons/default/73d.png differ diff --git a/weather.openmeteo/resources/icons/default/73n.png b/weather.openmeteo/resources/icons/default/73n.png index ab1da2b1e..ee410f119 100644 Binary files a/weather.openmeteo/resources/icons/default/73n.png and b/weather.openmeteo/resources/icons/default/73n.png differ diff --git a/weather.openmeteo/resources/icons/default/75d.png b/weather.openmeteo/resources/icons/default/75d.png index e88355baa..7be243023 100644 Binary files a/weather.openmeteo/resources/icons/default/75d.png and b/weather.openmeteo/resources/icons/default/75d.png differ diff --git a/weather.openmeteo/resources/icons/default/75n.png b/weather.openmeteo/resources/icons/default/75n.png index e88355baa..8e4c19088 100644 Binary files a/weather.openmeteo/resources/icons/default/75n.png and b/weather.openmeteo/resources/icons/default/75n.png differ diff --git a/weather.openmeteo/resources/icons/default/77d.png b/weather.openmeteo/resources/icons/default/77d.png index 2a13fffe9..7966bb1b7 100644 Binary files a/weather.openmeteo/resources/icons/default/77d.png and b/weather.openmeteo/resources/icons/default/77d.png differ diff --git a/weather.openmeteo/resources/icons/default/77n.png b/weather.openmeteo/resources/icons/default/77n.png index 2a13fffe9..e625a0dc9 100644 Binary files a/weather.openmeteo/resources/icons/default/77n.png and b/weather.openmeteo/resources/icons/default/77n.png differ diff --git a/weather.openmeteo/resources/icons/default/80d.png b/weather.openmeteo/resources/icons/default/80d.png index 8b94c28a4..cfde08b6f 100644 Binary files a/weather.openmeteo/resources/icons/default/80d.png and b/weather.openmeteo/resources/icons/default/80d.png differ diff --git a/weather.openmeteo/resources/icons/default/80n.png b/weather.openmeteo/resources/icons/default/80n.png index 8b94c28a4..d96b63c8e 100644 Binary files a/weather.openmeteo/resources/icons/default/80n.png and b/weather.openmeteo/resources/icons/default/80n.png differ diff --git a/weather.openmeteo/resources/icons/default/81d.png b/weather.openmeteo/resources/icons/default/81d.png index a8b4a1e2c..97275365d 100644 Binary files a/weather.openmeteo/resources/icons/default/81d.png and b/weather.openmeteo/resources/icons/default/81d.png differ diff --git a/weather.openmeteo/resources/icons/default/81n.png b/weather.openmeteo/resources/icons/default/81n.png index a8b4a1e2c..6d626eee7 100644 Binary files a/weather.openmeteo/resources/icons/default/81n.png and b/weather.openmeteo/resources/icons/default/81n.png differ diff --git a/weather.openmeteo/resources/icons/default/82d.png b/weather.openmeteo/resources/icons/default/82d.png index a127c2486..c14824a06 100644 Binary files a/weather.openmeteo/resources/icons/default/82d.png and b/weather.openmeteo/resources/icons/default/82d.png differ diff --git a/weather.openmeteo/resources/icons/default/82n.png b/weather.openmeteo/resources/icons/default/82n.png index a127c2486..7a61937a0 100644 Binary files a/weather.openmeteo/resources/icons/default/82n.png and b/weather.openmeteo/resources/icons/default/82n.png differ diff --git a/weather.openmeteo/resources/icons/default/85d.png b/weather.openmeteo/resources/icons/default/85d.png index d93991ba4..d44b92ef9 100644 Binary files a/weather.openmeteo/resources/icons/default/85d.png and b/weather.openmeteo/resources/icons/default/85d.png differ diff --git a/weather.openmeteo/resources/icons/default/85n.png b/weather.openmeteo/resources/icons/default/85n.png index d93991ba4..ff0017f25 100644 Binary files a/weather.openmeteo/resources/icons/default/85n.png and b/weather.openmeteo/resources/icons/default/85n.png differ diff --git a/weather.openmeteo/resources/icons/default/86d.png b/weather.openmeteo/resources/icons/default/86d.png index e68758f3a..05cc7e991 100644 Binary files a/weather.openmeteo/resources/icons/default/86d.png and b/weather.openmeteo/resources/icons/default/86d.png differ diff --git a/weather.openmeteo/resources/icons/default/86n.png b/weather.openmeteo/resources/icons/default/86n.png index e68758f3a..0d8e1f861 100644 Binary files a/weather.openmeteo/resources/icons/default/86n.png and b/weather.openmeteo/resources/icons/default/86n.png differ diff --git a/weather.openmeteo/resources/icons/default/95d.png b/weather.openmeteo/resources/icons/default/95d.png index f3dd9723a..c060e3737 100644 Binary files a/weather.openmeteo/resources/icons/default/95d.png and b/weather.openmeteo/resources/icons/default/95d.png differ diff --git a/weather.openmeteo/resources/icons/default/95n.png b/weather.openmeteo/resources/icons/default/95n.png index f3dd9723a..c060e3737 100644 Binary files a/weather.openmeteo/resources/icons/default/95n.png and b/weather.openmeteo/resources/icons/default/95n.png differ diff --git a/weather.openmeteo/resources/icons/default/96d.png b/weather.openmeteo/resources/icons/default/96d.png index 603ed868c..6bc05f929 100644 Binary files a/weather.openmeteo/resources/icons/default/96d.png and b/weather.openmeteo/resources/icons/default/96d.png differ diff --git a/weather.openmeteo/resources/icons/default/96n.png b/weather.openmeteo/resources/icons/default/96n.png index 603ed868c..6bc05f929 100644 Binary files a/weather.openmeteo/resources/icons/default/96n.png and b/weather.openmeteo/resources/icons/default/96n.png differ diff --git a/weather.openmeteo/resources/icons/default/99d.png b/weather.openmeteo/resources/icons/default/99d.png index 603ed868c..6bc05f929 100644 Binary files a/weather.openmeteo/resources/icons/default/99d.png and b/weather.openmeteo/resources/icons/default/99d.png differ diff --git a/weather.openmeteo/resources/icons/default/99n.png b/weather.openmeteo/resources/icons/default/99n.png index 603ed868c..6bc05f929 100644 Binary files a/weather.openmeteo/resources/icons/default/99n.png and b/weather.openmeteo/resources/icons/default/99n.png differ diff --git a/weather.openmeteo/resources/icons/default/License.txt b/weather.openmeteo/resources/icons/default/License.txt new file mode 100644 index 000000000..3279a1569 --- /dev/null +++ b/weather.openmeteo/resources/icons/default/License.txt @@ -0,0 +1,3 @@ +XBMC Realistic Weather Icon Set by Mominur Rahman (www.illuminatedimages.co.uk) is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License. + +http://creativecommons.org/licenses/by-nc-sa/3.0/ \ No newline at end of file diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_0p.png b/weather.openmeteo/resources/icons/graph/1080/bar_0p.png new file mode 100644 index 000000000..d611c4cc9 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_0p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_100p.png b/weather.openmeteo/resources/icons/graph/1080/bar_100p.png new file mode 100644 index 000000000..55f734b01 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_100p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_10p.png b/weather.openmeteo/resources/icons/graph/1080/bar_10p.png new file mode 100644 index 000000000..d34e7934c Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_10p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_11p.png b/weather.openmeteo/resources/icons/graph/1080/bar_11p.png new file mode 100644 index 000000000..7a1b35c7a Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_11p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_12p.png b/weather.openmeteo/resources/icons/graph/1080/bar_12p.png new file mode 100644 index 000000000..2f260de07 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_12p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_13p.png b/weather.openmeteo/resources/icons/graph/1080/bar_13p.png new file mode 100644 index 000000000..3f363dd0d Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_13p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_14p.png b/weather.openmeteo/resources/icons/graph/1080/bar_14p.png new file mode 100644 index 000000000..70ddaf6ec Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_14p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_15p.png b/weather.openmeteo/resources/icons/graph/1080/bar_15p.png new file mode 100644 index 000000000..9cca87b1b Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_15p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_16p.png b/weather.openmeteo/resources/icons/graph/1080/bar_16p.png new file mode 100644 index 000000000..5c7da1b59 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_16p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_17p.png b/weather.openmeteo/resources/icons/graph/1080/bar_17p.png new file mode 100644 index 000000000..4c7f292b5 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_17p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_18p.png b/weather.openmeteo/resources/icons/graph/1080/bar_18p.png new file mode 100644 index 000000000..2d57e9c43 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_18p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_19p.png b/weather.openmeteo/resources/icons/graph/1080/bar_19p.png new file mode 100644 index 000000000..b1dc97aeb Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_19p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_1p.png b/weather.openmeteo/resources/icons/graph/1080/bar_1p.png new file mode 100644 index 000000000..d611c4cc9 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_1p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_20p.png b/weather.openmeteo/resources/icons/graph/1080/bar_20p.png new file mode 100644 index 000000000..96b7d386d Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_20p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_21p.png b/weather.openmeteo/resources/icons/graph/1080/bar_21p.png new file mode 100644 index 000000000..c91bdb3c5 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_21p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_22p.png b/weather.openmeteo/resources/icons/graph/1080/bar_22p.png new file mode 100644 index 000000000..51838b0f4 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_22p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_23p.png b/weather.openmeteo/resources/icons/graph/1080/bar_23p.png new file mode 100644 index 000000000..b86312eac Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_23p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_24p.png b/weather.openmeteo/resources/icons/graph/1080/bar_24p.png new file mode 100644 index 000000000..f48141993 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_24p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_25p.png b/weather.openmeteo/resources/icons/graph/1080/bar_25p.png new file mode 100644 index 000000000..2f77fded4 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_25p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_26p.png b/weather.openmeteo/resources/icons/graph/1080/bar_26p.png new file mode 100644 index 000000000..f4d244e61 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_26p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_27p.png b/weather.openmeteo/resources/icons/graph/1080/bar_27p.png new file mode 100644 index 000000000..72302dddd Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_27p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_28p.png b/weather.openmeteo/resources/icons/graph/1080/bar_28p.png new file mode 100644 index 000000000..71c9cf212 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_28p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_29p.png b/weather.openmeteo/resources/icons/graph/1080/bar_29p.png new file mode 100644 index 000000000..ddba828a1 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_29p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_2p.png b/weather.openmeteo/resources/icons/graph/1080/bar_2p.png new file mode 100644 index 000000000..b618cd6fd Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_2p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_30p.png b/weather.openmeteo/resources/icons/graph/1080/bar_30p.png new file mode 100644 index 000000000..59f309752 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_30p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_31p.png b/weather.openmeteo/resources/icons/graph/1080/bar_31p.png new file mode 100644 index 000000000..ad89f7434 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_31p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_32p.png b/weather.openmeteo/resources/icons/graph/1080/bar_32p.png new file mode 100644 index 000000000..2cc684a16 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_32p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_33p.png b/weather.openmeteo/resources/icons/graph/1080/bar_33p.png new file mode 100644 index 000000000..c0472507a Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_33p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_34p.png b/weather.openmeteo/resources/icons/graph/1080/bar_34p.png new file mode 100644 index 000000000..a75d322ac Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_34p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_35p.png b/weather.openmeteo/resources/icons/graph/1080/bar_35p.png new file mode 100644 index 000000000..2409da006 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_35p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_36p.png b/weather.openmeteo/resources/icons/graph/1080/bar_36p.png new file mode 100644 index 000000000..111f07c2d Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_36p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_37p.png b/weather.openmeteo/resources/icons/graph/1080/bar_37p.png new file mode 100644 index 000000000..79b74ea3f Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_37p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_38p.png b/weather.openmeteo/resources/icons/graph/1080/bar_38p.png new file mode 100644 index 000000000..c1487a337 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_38p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_39p.png b/weather.openmeteo/resources/icons/graph/1080/bar_39p.png new file mode 100644 index 000000000..e60ee4565 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_39p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_3p.png b/weather.openmeteo/resources/icons/graph/1080/bar_3p.png new file mode 100644 index 000000000..2861e5777 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_3p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_40p.png b/weather.openmeteo/resources/icons/graph/1080/bar_40p.png new file mode 100644 index 000000000..73da8e1c1 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_40p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_41p.png b/weather.openmeteo/resources/icons/graph/1080/bar_41p.png new file mode 100644 index 000000000..d3a8f9272 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_41p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_42p.png b/weather.openmeteo/resources/icons/graph/1080/bar_42p.png new file mode 100644 index 000000000..a96e8230d Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_42p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_43p.png b/weather.openmeteo/resources/icons/graph/1080/bar_43p.png new file mode 100644 index 000000000..51639b80b Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_43p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_44p.png b/weather.openmeteo/resources/icons/graph/1080/bar_44p.png new file mode 100644 index 000000000..fa8e9d9f7 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_44p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_45p.png b/weather.openmeteo/resources/icons/graph/1080/bar_45p.png new file mode 100644 index 000000000..7be79f27e Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_45p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_46p.png b/weather.openmeteo/resources/icons/graph/1080/bar_46p.png new file mode 100644 index 000000000..5ca79420e Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_46p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_47p.png b/weather.openmeteo/resources/icons/graph/1080/bar_47p.png new file mode 100644 index 000000000..b9b60cec2 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_47p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_48p.png b/weather.openmeteo/resources/icons/graph/1080/bar_48p.png new file mode 100644 index 000000000..83f901b12 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_48p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_49p.png b/weather.openmeteo/resources/icons/graph/1080/bar_49p.png new file mode 100644 index 000000000..70b1d0d3f Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_49p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_4p.png b/weather.openmeteo/resources/icons/graph/1080/bar_4p.png new file mode 100644 index 000000000..c0feabbae Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_4p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_50p.png b/weather.openmeteo/resources/icons/graph/1080/bar_50p.png new file mode 100644 index 000000000..099628a63 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_50p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_51p.png b/weather.openmeteo/resources/icons/graph/1080/bar_51p.png new file mode 100644 index 000000000..ecaadc744 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_51p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_52p.png b/weather.openmeteo/resources/icons/graph/1080/bar_52p.png new file mode 100644 index 000000000..546300ad1 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_52p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_53p.png b/weather.openmeteo/resources/icons/graph/1080/bar_53p.png new file mode 100644 index 000000000..300b68f29 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_53p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_54p.png b/weather.openmeteo/resources/icons/graph/1080/bar_54p.png new file mode 100644 index 000000000..fd5793d28 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_54p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_55p.png b/weather.openmeteo/resources/icons/graph/1080/bar_55p.png new file mode 100644 index 000000000..523d12ce5 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_55p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_56p.png b/weather.openmeteo/resources/icons/graph/1080/bar_56p.png new file mode 100644 index 000000000..a46e8f521 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_56p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_57p.png b/weather.openmeteo/resources/icons/graph/1080/bar_57p.png new file mode 100644 index 000000000..c2f19a30b Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_57p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_58p.png b/weather.openmeteo/resources/icons/graph/1080/bar_58p.png new file mode 100644 index 000000000..8c71e6ef7 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_58p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_59p.png b/weather.openmeteo/resources/icons/graph/1080/bar_59p.png new file mode 100644 index 000000000..dc984937c Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_59p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_5p.png b/weather.openmeteo/resources/icons/graph/1080/bar_5p.png new file mode 100644 index 000000000..3f991886c Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_5p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_60p.png b/weather.openmeteo/resources/icons/graph/1080/bar_60p.png new file mode 100644 index 000000000..d467d9e5c Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_60p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_61p.png b/weather.openmeteo/resources/icons/graph/1080/bar_61p.png new file mode 100644 index 000000000..5d8cf1181 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_61p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_62p.png b/weather.openmeteo/resources/icons/graph/1080/bar_62p.png new file mode 100644 index 000000000..2fcef63ef Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_62p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_63p.png b/weather.openmeteo/resources/icons/graph/1080/bar_63p.png new file mode 100644 index 000000000..0b1804012 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_63p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_64p.png b/weather.openmeteo/resources/icons/graph/1080/bar_64p.png new file mode 100644 index 000000000..6d3a9192f Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_64p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_65p.png b/weather.openmeteo/resources/icons/graph/1080/bar_65p.png new file mode 100644 index 000000000..8c9799472 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_65p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_66p.png b/weather.openmeteo/resources/icons/graph/1080/bar_66p.png new file mode 100644 index 000000000..9ca48e88c Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_66p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_67p.png b/weather.openmeteo/resources/icons/graph/1080/bar_67p.png new file mode 100644 index 000000000..a6dab928b Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_67p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_68p.png b/weather.openmeteo/resources/icons/graph/1080/bar_68p.png new file mode 100644 index 000000000..534c263d6 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_68p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_69p.png b/weather.openmeteo/resources/icons/graph/1080/bar_69p.png new file mode 100644 index 000000000..456c3e25d Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_69p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_6p.png b/weather.openmeteo/resources/icons/graph/1080/bar_6p.png new file mode 100644 index 000000000..f4db94b34 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_6p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_70p.png b/weather.openmeteo/resources/icons/graph/1080/bar_70p.png new file mode 100644 index 000000000..4b0377067 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_70p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_71p.png b/weather.openmeteo/resources/icons/graph/1080/bar_71p.png new file mode 100644 index 000000000..7b5501d37 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_71p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_72p.png b/weather.openmeteo/resources/icons/graph/1080/bar_72p.png new file mode 100644 index 000000000..87a852c73 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_72p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_73p.png b/weather.openmeteo/resources/icons/graph/1080/bar_73p.png new file mode 100644 index 000000000..b41a6356d Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_73p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_74p.png b/weather.openmeteo/resources/icons/graph/1080/bar_74p.png new file mode 100644 index 000000000..40b704188 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_74p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_75p.png b/weather.openmeteo/resources/icons/graph/1080/bar_75p.png new file mode 100644 index 000000000..3d01f709a Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_75p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_76p.png b/weather.openmeteo/resources/icons/graph/1080/bar_76p.png new file mode 100644 index 000000000..32368974c Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_76p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_77p.png b/weather.openmeteo/resources/icons/graph/1080/bar_77p.png new file mode 100644 index 000000000..d886de89a Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_77p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_78p.png b/weather.openmeteo/resources/icons/graph/1080/bar_78p.png new file mode 100644 index 000000000..44b7b53d4 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_78p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_79p.png b/weather.openmeteo/resources/icons/graph/1080/bar_79p.png new file mode 100644 index 000000000..bfd95e7dd Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_79p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_7p.png b/weather.openmeteo/resources/icons/graph/1080/bar_7p.png new file mode 100644 index 000000000..46c17a899 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_7p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_80p.png b/weather.openmeteo/resources/icons/graph/1080/bar_80p.png new file mode 100644 index 000000000..d611355c3 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_80p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_81p.png b/weather.openmeteo/resources/icons/graph/1080/bar_81p.png new file mode 100644 index 000000000..b8c7e863f Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_81p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_82p.png b/weather.openmeteo/resources/icons/graph/1080/bar_82p.png new file mode 100644 index 000000000..57cf780fb Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_82p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_83p.png b/weather.openmeteo/resources/icons/graph/1080/bar_83p.png new file mode 100644 index 000000000..3c5974bb5 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_83p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_84p.png b/weather.openmeteo/resources/icons/graph/1080/bar_84p.png new file mode 100644 index 000000000..bc2324686 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_84p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_85p.png b/weather.openmeteo/resources/icons/graph/1080/bar_85p.png new file mode 100644 index 000000000..5c9c9abe5 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_85p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_86p.png b/weather.openmeteo/resources/icons/graph/1080/bar_86p.png new file mode 100644 index 000000000..3a7aa9333 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_86p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_87p.png b/weather.openmeteo/resources/icons/graph/1080/bar_87p.png new file mode 100644 index 000000000..90e1dcc4e Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_87p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_88p.png b/weather.openmeteo/resources/icons/graph/1080/bar_88p.png new file mode 100644 index 000000000..fe9822042 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_88p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_89p.png b/weather.openmeteo/resources/icons/graph/1080/bar_89p.png new file mode 100644 index 000000000..2dcf2e9dc Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_89p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_8p.png b/weather.openmeteo/resources/icons/graph/1080/bar_8p.png new file mode 100644 index 000000000..cc1a848b1 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_8p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_90p.png b/weather.openmeteo/resources/icons/graph/1080/bar_90p.png new file mode 100644 index 000000000..67ae9f321 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_90p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_91p.png b/weather.openmeteo/resources/icons/graph/1080/bar_91p.png new file mode 100644 index 000000000..1e8c9a42a Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_91p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_92p.png b/weather.openmeteo/resources/icons/graph/1080/bar_92p.png new file mode 100644 index 000000000..04868e415 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_92p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_93p.png b/weather.openmeteo/resources/icons/graph/1080/bar_93p.png new file mode 100644 index 000000000..cce1b6d4f Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_93p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_94p.png b/weather.openmeteo/resources/icons/graph/1080/bar_94p.png new file mode 100644 index 000000000..e92dfc8eb Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_94p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_95p.png b/weather.openmeteo/resources/icons/graph/1080/bar_95p.png new file mode 100644 index 000000000..f9604ec24 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_95p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_96p.png b/weather.openmeteo/resources/icons/graph/1080/bar_96p.png new file mode 100644 index 000000000..9a56b596f Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_96p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_97p.png b/weather.openmeteo/resources/icons/graph/1080/bar_97p.png new file mode 100644 index 000000000..1faa437d8 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_97p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_98p.png b/weather.openmeteo/resources/icons/graph/1080/bar_98p.png new file mode 100644 index 000000000..8c40d9044 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_98p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_99p.png b/weather.openmeteo/resources/icons/graph/1080/bar_99p.png new file mode 100644 index 000000000..955043ab3 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_99p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_9p.png b/weather.openmeteo/resources/icons/graph/1080/bar_9p.png new file mode 100644 index 000000000..26f4104af Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_9p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg1_-0.0.png b/weather.openmeteo/resources/icons/graph/1080/bar_n0n.png similarity index 100% rename from weather.openmeteo/resources/icons/graph/1080/scaleneg1_-0.0.png rename to weather.openmeteo/resources/icons/graph/1080/bar_n0n.png diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n0p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n0p.png new file mode 100644 index 000000000..ab6e29e9a Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n0p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n100n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n100n.png new file mode 100644 index 000000000..663659137 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n100n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n100p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n100p.png new file mode 100644 index 000000000..4f1641f06 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n100p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n10n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n10n.png new file mode 100644 index 000000000..ea78ed0c9 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n10n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n10p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n10p.png new file mode 100644 index 000000000..7bb870790 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n10p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n11n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n11n.png new file mode 100644 index 000000000..30789f9f0 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n11n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n11p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n11p.png new file mode 100644 index 000000000..074dace2e Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n11p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n12n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n12n.png new file mode 100644 index 000000000..30789f9f0 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n12n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n12p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n12p.png new file mode 100644 index 000000000..074dace2e Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n12p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n13n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n13n.png new file mode 100644 index 000000000..30789f9f0 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n13n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n13p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n13p.png new file mode 100644 index 000000000..074dace2e Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n13p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n14n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n14n.png new file mode 100644 index 000000000..8e13a87d5 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n14n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n14p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n14p.png new file mode 100644 index 000000000..68508a243 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n14p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n15n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n15n.png new file mode 100644 index 000000000..24b9c99e9 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n15n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n15p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n15p.png new file mode 100644 index 000000000..73d19e11a Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n15p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n16n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n16n.png new file mode 100644 index 000000000..24b9c99e9 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n16n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n16p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n16p.png new file mode 100644 index 000000000..73d19e11a Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n16p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n17n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n17n.png new file mode 100644 index 000000000..24b9c99e9 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n17n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n17p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n17p.png new file mode 100644 index 000000000..73d19e11a Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n17p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n18n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n18n.png new file mode 100644 index 000000000..d1e1e8eee Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n18n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n18p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n18p.png new file mode 100644 index 000000000..424742825 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n18p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n19n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n19n.png new file mode 100644 index 000000000..c576c6c59 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n19n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n19p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n19p.png new file mode 100644 index 000000000..5dfa3598e Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n19p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-1.png b/weather.openmeteo/resources/icons/graph/1080/bar_n1n.png similarity index 100% rename from weather.openmeteo/resources/icons/graph/1080/scaleneg40_-1.png rename to weather.openmeteo/resources/icons/graph/1080/bar_n1n.png diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n1p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n1p.png new file mode 100644 index 000000000..68adc5740 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n1p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n20n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n20n.png new file mode 100644 index 000000000..c576c6c59 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n20n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n20p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n20p.png new file mode 100644 index 000000000..5dfa3598e Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n20p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n21n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n21n.png new file mode 100644 index 000000000..362c9d072 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n21n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n21p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n21p.png new file mode 100644 index 000000000..2430670ee Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n21p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n22n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n22n.png new file mode 100644 index 000000000..6e784f731 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n22n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n22p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n22p.png new file mode 100644 index 000000000..7d1bd3ead Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n22p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n23n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n23n.png new file mode 100644 index 000000000..b6fbea8a3 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n23n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n23p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n23p.png new file mode 100644 index 000000000..8bd199bd2 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n23p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n24n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n24n.png new file mode 100644 index 000000000..b6fbea8a3 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n24n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n24p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n24p.png new file mode 100644 index 000000000..8bd199bd2 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n24p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n25n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n25n.png new file mode 100644 index 000000000..b6fbea8a3 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n25n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n25p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n25p.png new file mode 100644 index 000000000..8bd199bd2 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n25p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n26n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n26n.png new file mode 100644 index 000000000..7cae156b5 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n26n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n26p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n26p.png new file mode 100644 index 000000000..92a510e76 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n26p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n27n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n27n.png new file mode 100644 index 000000000..ae9c7c50d Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n27n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n27p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n27p.png new file mode 100644 index 000000000..d39123a0e Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n27p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n28n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n28n.png new file mode 100644 index 000000000..8cac096a0 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n28n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n28p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n28p.png new file mode 100644 index 000000000..34e84a4db Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n28p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n29n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n29n.png new file mode 100644 index 000000000..8cac096a0 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n29n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n29p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n29p.png new file mode 100644 index 000000000..34e84a4db Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n29p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-1.png b/weather.openmeteo/resources/icons/graph/1080/bar_n2n.png similarity index 100% rename from weather.openmeteo/resources/icons/graph/1080/scaleneg50_-1.png rename to weather.openmeteo/resources/icons/graph/1080/bar_n2n.png diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n2p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n2p.png new file mode 100644 index 000000000..68adc5740 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n2p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n30n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n30n.png new file mode 100644 index 000000000..1f462e907 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n30n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n30p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n30p.png new file mode 100644 index 000000000..aa246b682 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n30p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n31n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n31n.png new file mode 100644 index 000000000..092e280be Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n31n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n31p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n31p.png new file mode 100644 index 000000000..96f693aa1 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n31p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n32n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n32n.png new file mode 100644 index 000000000..092e280be Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n32n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n32p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n32p.png new file mode 100644 index 000000000..96f693aa1 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n32p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n33n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n33n.png new file mode 100644 index 000000000..092e280be Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n33n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n33p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n33p.png new file mode 100644 index 000000000..96f693aa1 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n33p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n34n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n34n.png new file mode 100644 index 000000000..81980ab91 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n34n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n34p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n34p.png new file mode 100644 index 000000000..ee890b093 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n34p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n35n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n35n.png new file mode 100644 index 000000000..7e6264105 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n35n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n35p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n35p.png new file mode 100644 index 000000000..6948ecd55 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n35p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n36n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n36n.png new file mode 100644 index 000000000..7e6264105 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n36n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n36p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n36p.png new file mode 100644 index 000000000..6948ecd55 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n36p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n37n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n37n.png new file mode 100644 index 000000000..7e6264105 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n37n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n37p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n37p.png new file mode 100644 index 000000000..6948ecd55 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n37p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n38n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n38n.png new file mode 100644 index 000000000..6df012cb1 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n38n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n38p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n38p.png new file mode 100644 index 000000000..aa11de7ab Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n38p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n39n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n39n.png new file mode 100644 index 000000000..bc82206ad Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n39n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n39p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n39p.png new file mode 100644 index 000000000..eddc2fbd4 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n39p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n3n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n3n.png new file mode 100644 index 000000000..cd24c0f90 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n3n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n3p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n3p.png new file mode 100644 index 000000000..ea6d263d2 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n3p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n40n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n40n.png new file mode 100644 index 000000000..bc82206ad Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n40n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n40p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n40p.png new file mode 100644 index 000000000..eddc2fbd4 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n40p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n41n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n41n.png new file mode 100644 index 000000000..d6f261492 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n41n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n41p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n41p.png new file mode 100644 index 000000000..cffae32d2 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n41p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n42n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n42n.png new file mode 100644 index 000000000..b900f82a9 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n42n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n42p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n42p.png new file mode 100644 index 000000000..95b1bc6e0 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n42p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n43n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n43n.png new file mode 100644 index 000000000..ca03c4504 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n43n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n43p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n43p.png new file mode 100644 index 000000000..c266d6975 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n43p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n44n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n44n.png new file mode 100644 index 000000000..ca03c4504 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n44n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n44p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n44p.png new file mode 100644 index 000000000..c266d6975 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n44p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n45n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n45n.png new file mode 100644 index 000000000..ca03c4504 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n45n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n45p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n45p.png new file mode 100644 index 000000000..c266d6975 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n45p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n46n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n46n.png new file mode 100644 index 000000000..6e48af369 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n46n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n46p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n46p.png new file mode 100644 index 000000000..c5f6b64c1 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n46p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n47n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n47n.png new file mode 100644 index 000000000..13495aebb Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n47n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n47p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n47p.png new file mode 100644 index 000000000..ac8928951 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n47p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n48n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n48n.png new file mode 100644 index 000000000..13495aebb Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n48n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n48p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n48p.png new file mode 100644 index 000000000..ac8928951 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n48p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n49n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n49n.png new file mode 100644 index 000000000..13495aebb Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n49n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n49p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n49p.png new file mode 100644 index 000000000..ac8928951 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n49p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n4n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n4n.png new file mode 100644 index 000000000..cd24c0f90 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n4n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n4p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n4p.png new file mode 100644 index 000000000..ea6d263d2 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n4p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n50n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n50n.png new file mode 100644 index 000000000..83dc87fcd Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n50n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n50p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n50p.png new file mode 100644 index 000000000..f9b85d697 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n50p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n51n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n51n.png new file mode 100644 index 000000000..39f514ab4 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n51n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n51p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n51p.png new file mode 100644 index 000000000..735e62858 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n51p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n52n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n52n.png new file mode 100644 index 000000000..39f514ab4 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n52n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n52p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n52p.png new file mode 100644 index 000000000..735e62858 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n52p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n53n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n53n.png new file mode 100644 index 000000000..39f514ab4 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n53n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n53p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n53p.png new file mode 100644 index 000000000..735e62858 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n53p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n54n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n54n.png new file mode 100644 index 000000000..074997906 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n54n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n54p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n54p.png new file mode 100644 index 000000000..5d4738f7d Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n54p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n55n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n55n.png new file mode 100644 index 000000000..f958582a4 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n55n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n55p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n55p.png new file mode 100644 index 000000000..317562096 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n55p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n56n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n56n.png new file mode 100644 index 000000000..f958582a4 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n56n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n56p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n56p.png new file mode 100644 index 000000000..317562096 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n56p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n57n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n57n.png new file mode 100644 index 000000000..f958582a4 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n57n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n57p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n57p.png new file mode 100644 index 000000000..317562096 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n57p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n58n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n58n.png new file mode 100644 index 000000000..b66f94b03 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n58n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n58p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n58p.png new file mode 100644 index 000000000..b275811ea Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n58p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n59n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n59n.png new file mode 100644 index 000000000..7629787f7 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n59n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n59p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n59p.png new file mode 100644 index 000000000..96469fd8f Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n59p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n5n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n5n.png new file mode 100644 index 000000000..cd24c0f90 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n5n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n5p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n5p.png new file mode 100644 index 000000000..ea6d263d2 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n5p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n60n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n60n.png new file mode 100644 index 000000000..7629787f7 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n60n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n60p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n60p.png new file mode 100644 index 000000000..96469fd8f Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n60p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n61n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n61n.png new file mode 100644 index 000000000..7ea631174 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n61n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n61p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n61p.png new file mode 100644 index 000000000..3c0e6a869 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n61p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n62n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n62n.png new file mode 100644 index 000000000..6433da9fd Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n62n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n62p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n62p.png new file mode 100644 index 000000000..4983d8c70 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n62p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n63n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n63n.png new file mode 100644 index 000000000..bfd51e55d Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n63n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n63p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n63p.png new file mode 100644 index 000000000..25b9c0f8d Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n63p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n64n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n64n.png new file mode 100644 index 000000000..bfd51e55d Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n64n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n64p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n64p.png new file mode 100644 index 000000000..25b9c0f8d Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n64p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n65n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n65n.png new file mode 100644 index 000000000..bfd51e55d Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n65n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n65p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n65p.png new file mode 100644 index 000000000..25b9c0f8d Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n65p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n66n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n66n.png new file mode 100644 index 000000000..3b185818f Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n66n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n66p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n66p.png new file mode 100644 index 000000000..036c9c953 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n66p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n67n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n67n.png new file mode 100644 index 000000000..d451cbba1 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n67n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n67p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n67p.png new file mode 100644 index 000000000..86804883d Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n67p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n68n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n68n.png new file mode 100644 index 000000000..6c2baa098 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n68n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n68p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n68p.png new file mode 100644 index 000000000..86804883d Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n68p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n69n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n69n.png new file mode 100644 index 000000000..6c2baa098 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n69n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n69p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n69p.png new file mode 100644 index 000000000..86804883d Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n69p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n6n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n6n.png new file mode 100644 index 000000000..fedad0cb9 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n6n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n6p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n6p.png new file mode 100644 index 000000000..8a72905be Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n6p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n70n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n70n.png new file mode 100644 index 000000000..ad991a399 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n70n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n70p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n70p.png new file mode 100644 index 000000000..7994e9655 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n70p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n71n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n71n.png new file mode 100644 index 000000000..fce23bd08 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n71n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n71p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n71p.png new file mode 100644 index 000000000..bcb99dc34 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n71p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n72n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n72n.png new file mode 100644 index 000000000..fce23bd08 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n72n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n72p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n72p.png new file mode 100644 index 000000000..bcb99dc34 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n72p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n73n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n73n.png new file mode 100644 index 000000000..fce23bd08 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n73n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n73p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n73p.png new file mode 100644 index 000000000..bcb99dc34 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n73p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n74n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n74n.png new file mode 100644 index 000000000..b6779cd26 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n74n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n74p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n74p.png new file mode 100644 index 000000000..a23bff405 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n74p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n75n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n75n.png new file mode 100644 index 000000000..b9535a558 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n75n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n75p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n75p.png new file mode 100644 index 000000000..0f54d0a64 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n75p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n76n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n76n.png new file mode 100644 index 000000000..b9535a558 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n76n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n76p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n76p.png new file mode 100644 index 000000000..0f54d0a64 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n76p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n77n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n77n.png new file mode 100644 index 000000000..b9535a558 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n77n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n77p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n77p.png new file mode 100644 index 000000000..0f54d0a64 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n77p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n78n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n78n.png new file mode 100644 index 000000000..e72f09d01 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n78n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n78p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n78p.png new file mode 100644 index 000000000..982dfd095 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n78p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n79n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n79n.png new file mode 100644 index 000000000..9c51827c1 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n79n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n79p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n79p.png new file mode 100644 index 000000000..d25a9a937 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n79p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n7n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n7n.png new file mode 100644 index 000000000..808005ae0 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n7n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n7p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n7p.png new file mode 100644 index 000000000..6e5f88f0c Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n7p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n80n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n80n.png new file mode 100644 index 000000000..9c51827c1 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n80n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n80p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n80p.png new file mode 100644 index 000000000..d25a9a937 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n80p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n81n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n81n.png new file mode 100644 index 000000000..db49861c3 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n81n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n81p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n81p.png new file mode 100644 index 000000000..e9e8e73bd Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n81p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n82n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n82n.png new file mode 100644 index 000000000..ee79dfe78 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n82n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n82p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n82p.png new file mode 100644 index 000000000..04aae4b3f Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n82p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n83n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n83n.png new file mode 100644 index 000000000..e6a1746cb Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n83n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n83p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n83p.png new file mode 100644 index 000000000..4546653d3 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n83p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n84n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n84n.png new file mode 100644 index 000000000..e6a1746cb Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n84n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n84p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n84p.png new file mode 100644 index 000000000..4546653d3 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n84p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n85n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n85n.png new file mode 100644 index 000000000..e6a1746cb Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n85n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n85p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n85p.png new file mode 100644 index 000000000..4546653d3 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n85p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n86n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n86n.png new file mode 100644 index 000000000..9e5c213fe Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n86n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n86p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n86p.png new file mode 100644 index 000000000..fd6fa03f3 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n86p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n87n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n87n.png new file mode 100644 index 000000000..6a55a492c Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n87n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n87p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n87p.png new file mode 100644 index 000000000..0006f2e73 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n87p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n88n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n88n.png new file mode 100644 index 000000000..6a55a492c Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n88n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n88p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n88p.png new file mode 100644 index 000000000..0006f2e73 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n88p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n89n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n89n.png new file mode 100644 index 000000000..6a55a492c Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n89n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n89p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n89p.png new file mode 100644 index 000000000..0006f2e73 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n89p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n8n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n8n.png new file mode 100644 index 000000000..590edc5d8 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n8n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n8p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n8p.png new file mode 100644 index 000000000..e784f185d Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n8p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n90n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n90n.png new file mode 100644 index 000000000..542e54958 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n90n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n90p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n90p.png new file mode 100644 index 000000000..a615649e3 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n90p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n91n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n91n.png new file mode 100644 index 000000000..c32435775 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n91n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n91p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n91p.png new file mode 100644 index 000000000..4ef197808 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n91p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n92n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n92n.png new file mode 100644 index 000000000..c32435775 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n92n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n92p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n92p.png new file mode 100644 index 000000000..4ef197808 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n92p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n93n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n93n.png new file mode 100644 index 000000000..c32435775 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n93n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n93p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n93p.png new file mode 100644 index 000000000..4ef197808 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n93p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n94n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n94n.png new file mode 100644 index 000000000..c29b2adac Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n94n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n94p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n94p.png new file mode 100644 index 000000000..e6aeed604 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n94p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n95n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n95n.png new file mode 100644 index 000000000..0f99be1e4 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n95n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n95p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n95p.png new file mode 100644 index 000000000..4eef5bd26 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n95p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n96n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n96n.png new file mode 100644 index 000000000..0f99be1e4 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n96n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n96p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n96p.png new file mode 100644 index 000000000..4eef5bd26 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n96p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n97n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n97n.png new file mode 100644 index 000000000..0f99be1e4 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n97n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n97p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n97p.png new file mode 100644 index 000000000..4eef5bd26 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n97p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n98n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n98n.png new file mode 100644 index 000000000..cd950cac0 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n98n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n98p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n98p.png new file mode 100644 index 000000000..5597647af Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n98p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n99n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n99n.png new file mode 100644 index 000000000..663659137 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n99n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n99p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n99p.png new file mode 100644 index 000000000..886e37a07 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n99p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n9n.png b/weather.openmeteo/resources/icons/graph/1080/bar_n9n.png new file mode 100644 index 000000000..590edc5d8 Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n9n.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/bar_n9p.png b/weather.openmeteo/resources/icons/graph/1080/bar_n9p.png new file mode 100644 index 000000000..e784f185d Binary files /dev/null and b/weather.openmeteo/resources/icons/graph/1080/bar_n9p.png differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_0.png b/weather.openmeteo/resources/icons/graph/1080/scale100_0.png deleted file mode 100644 index e0263dc45..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_1.png b/weather.openmeteo/resources/icons/graph/1080/scale100_1.png deleted file mode 100644 index 25c8ff3cf..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_10.png b/weather.openmeteo/resources/icons/graph/1080/scale100_10.png deleted file mode 100644 index e0d209137..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_100.png b/weather.openmeteo/resources/icons/graph/1080/scale100_100.png deleted file mode 100644 index fdd096a6e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_100.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_11.png b/weather.openmeteo/resources/icons/graph/1080/scale100_11.png deleted file mode 100644 index 007242ee4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_12.png b/weather.openmeteo/resources/icons/graph/1080/scale100_12.png deleted file mode 100644 index e0dd47c20..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_13.png b/weather.openmeteo/resources/icons/graph/1080/scale100_13.png deleted file mode 100644 index 28e16612f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_14.png b/weather.openmeteo/resources/icons/graph/1080/scale100_14.png deleted file mode 100644 index 9977d30b1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_15.png b/weather.openmeteo/resources/icons/graph/1080/scale100_15.png deleted file mode 100644 index cda201be6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_16.png b/weather.openmeteo/resources/icons/graph/1080/scale100_16.png deleted file mode 100644 index 81d828077..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_17.png b/weather.openmeteo/resources/icons/graph/1080/scale100_17.png deleted file mode 100644 index fdd55eaaa..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_18.png b/weather.openmeteo/resources/icons/graph/1080/scale100_18.png deleted file mode 100644 index d709db4ae..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_19.png b/weather.openmeteo/resources/icons/graph/1080/scale100_19.png deleted file mode 100644 index c658d30d8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_2.png b/weather.openmeteo/resources/icons/graph/1080/scale100_2.png deleted file mode 100644 index 549074af2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_20.png b/weather.openmeteo/resources/icons/graph/1080/scale100_20.png deleted file mode 100644 index 628d66801..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_21.png b/weather.openmeteo/resources/icons/graph/1080/scale100_21.png deleted file mode 100644 index 7d9184c1f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_21.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_22.png b/weather.openmeteo/resources/icons/graph/1080/scale100_22.png deleted file mode 100644 index 417c98da3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_22.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_23.png b/weather.openmeteo/resources/icons/graph/1080/scale100_23.png deleted file mode 100644 index f8953e874..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_23.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_24.png b/weather.openmeteo/resources/icons/graph/1080/scale100_24.png deleted file mode 100644 index e6e22f9f4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_24.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_25.png b/weather.openmeteo/resources/icons/graph/1080/scale100_25.png deleted file mode 100644 index b7648f42d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_25.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_26.png b/weather.openmeteo/resources/icons/graph/1080/scale100_26.png deleted file mode 100644 index 1f657b5fa..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_26.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_27.png b/weather.openmeteo/resources/icons/graph/1080/scale100_27.png deleted file mode 100644 index 08635f4da..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_27.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_28.png b/weather.openmeteo/resources/icons/graph/1080/scale100_28.png deleted file mode 100644 index 39f1ae845..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_28.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_29.png b/weather.openmeteo/resources/icons/graph/1080/scale100_29.png deleted file mode 100644 index 90418ba72..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_29.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_3.png b/weather.openmeteo/resources/icons/graph/1080/scale100_3.png deleted file mode 100644 index 9d1b288cc..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_30.png b/weather.openmeteo/resources/icons/graph/1080/scale100_30.png deleted file mode 100644 index e0fc076d7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_30.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_31.png b/weather.openmeteo/resources/icons/graph/1080/scale100_31.png deleted file mode 100644 index 2b2c0e333..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_31.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_32.png b/weather.openmeteo/resources/icons/graph/1080/scale100_32.png deleted file mode 100644 index a3ae8722d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_32.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_33.png b/weather.openmeteo/resources/icons/graph/1080/scale100_33.png deleted file mode 100644 index d31e5a47d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_33.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_34.png b/weather.openmeteo/resources/icons/graph/1080/scale100_34.png deleted file mode 100644 index 269a1539c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_34.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_35.png b/weather.openmeteo/resources/icons/graph/1080/scale100_35.png deleted file mode 100644 index 7f9965132..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_35.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_36.png b/weather.openmeteo/resources/icons/graph/1080/scale100_36.png deleted file mode 100644 index 815053fe8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_36.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_37.png b/weather.openmeteo/resources/icons/graph/1080/scale100_37.png deleted file mode 100644 index 6babb41fb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_37.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_38.png b/weather.openmeteo/resources/icons/graph/1080/scale100_38.png deleted file mode 100644 index 36db91522..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_38.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_39.png b/weather.openmeteo/resources/icons/graph/1080/scale100_39.png deleted file mode 100644 index 6eaf79b85..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_39.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_4.png b/weather.openmeteo/resources/icons/graph/1080/scale100_4.png deleted file mode 100644 index 6a5d21123..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_40.png b/weather.openmeteo/resources/icons/graph/1080/scale100_40.png deleted file mode 100644 index 6200012dd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_40.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_41.png b/weather.openmeteo/resources/icons/graph/1080/scale100_41.png deleted file mode 100644 index f603b5ebc..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_41.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_42.png b/weather.openmeteo/resources/icons/graph/1080/scale100_42.png deleted file mode 100644 index c3a863628..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_42.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_43.png b/weather.openmeteo/resources/icons/graph/1080/scale100_43.png deleted file mode 100644 index 922480c17..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_43.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_44.png b/weather.openmeteo/resources/icons/graph/1080/scale100_44.png deleted file mode 100644 index cb5ec4bc0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_44.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_45.png b/weather.openmeteo/resources/icons/graph/1080/scale100_45.png deleted file mode 100644 index 4dbf9a73a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_45.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_46.png b/weather.openmeteo/resources/icons/graph/1080/scale100_46.png deleted file mode 100644 index fca1473de..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_46.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_47.png b/weather.openmeteo/resources/icons/graph/1080/scale100_47.png deleted file mode 100644 index d0d5b2d1e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_47.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_48.png b/weather.openmeteo/resources/icons/graph/1080/scale100_48.png deleted file mode 100644 index a7b84b6b1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_48.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_49.png b/weather.openmeteo/resources/icons/graph/1080/scale100_49.png deleted file mode 100644 index e32a43c4d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_49.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_5.png b/weather.openmeteo/resources/icons/graph/1080/scale100_5.png deleted file mode 100644 index 15f623d87..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_50.png b/weather.openmeteo/resources/icons/graph/1080/scale100_50.png deleted file mode 100644 index 45eb4e5a7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_50.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_51.png b/weather.openmeteo/resources/icons/graph/1080/scale100_51.png deleted file mode 100644 index 60f29ece3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_51.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_52.png b/weather.openmeteo/resources/icons/graph/1080/scale100_52.png deleted file mode 100644 index 0fa502253..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_52.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_53.png b/weather.openmeteo/resources/icons/graph/1080/scale100_53.png deleted file mode 100644 index 7311f4053..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_53.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_54.png b/weather.openmeteo/resources/icons/graph/1080/scale100_54.png deleted file mode 100644 index de63d1899..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_54.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_55.png b/weather.openmeteo/resources/icons/graph/1080/scale100_55.png deleted file mode 100644 index 20b9353c5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_55.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_56.png b/weather.openmeteo/resources/icons/graph/1080/scale100_56.png deleted file mode 100644 index ac6bdb011..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_56.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_57.png b/weather.openmeteo/resources/icons/graph/1080/scale100_57.png deleted file mode 100644 index 8ea676778..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_57.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_58.png b/weather.openmeteo/resources/icons/graph/1080/scale100_58.png deleted file mode 100644 index 9365c5b78..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_58.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_59.png b/weather.openmeteo/resources/icons/graph/1080/scale100_59.png deleted file mode 100644 index 722623f56..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_59.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_6.png b/weather.openmeteo/resources/icons/graph/1080/scale100_6.png deleted file mode 100644 index f7d70e565..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_60.png b/weather.openmeteo/resources/icons/graph/1080/scale100_60.png deleted file mode 100644 index d4d1c314f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_60.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_61.png b/weather.openmeteo/resources/icons/graph/1080/scale100_61.png deleted file mode 100644 index 455db496a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_61.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_62.png b/weather.openmeteo/resources/icons/graph/1080/scale100_62.png deleted file mode 100644 index c31715164..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_62.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_63.png b/weather.openmeteo/resources/icons/graph/1080/scale100_63.png deleted file mode 100644 index f7b044fe9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_63.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_64.png b/weather.openmeteo/resources/icons/graph/1080/scale100_64.png deleted file mode 100644 index 11a63ddab..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_64.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_65.png b/weather.openmeteo/resources/icons/graph/1080/scale100_65.png deleted file mode 100644 index ade468c4a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_65.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_66.png b/weather.openmeteo/resources/icons/graph/1080/scale100_66.png deleted file mode 100644 index 9c8b9a68c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_66.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_67.png b/weather.openmeteo/resources/icons/graph/1080/scale100_67.png deleted file mode 100644 index d19987821..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_67.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_68.png b/weather.openmeteo/resources/icons/graph/1080/scale100_68.png deleted file mode 100644 index 257d218f0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_68.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_69.png b/weather.openmeteo/resources/icons/graph/1080/scale100_69.png deleted file mode 100644 index 2df5417c7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_69.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_7.png b/weather.openmeteo/resources/icons/graph/1080/scale100_7.png deleted file mode 100644 index 9e179ade0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_70.png b/weather.openmeteo/resources/icons/graph/1080/scale100_70.png deleted file mode 100644 index 3770dc2d9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_70.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_71.png b/weather.openmeteo/resources/icons/graph/1080/scale100_71.png deleted file mode 100644 index 77d00536c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_71.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_72.png b/weather.openmeteo/resources/icons/graph/1080/scale100_72.png deleted file mode 100644 index f7a41b3c1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_72.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_73.png b/weather.openmeteo/resources/icons/graph/1080/scale100_73.png deleted file mode 100644 index 565959907..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_73.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_74.png b/weather.openmeteo/resources/icons/graph/1080/scale100_74.png deleted file mode 100644 index ae6320f3f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_74.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_75.png b/weather.openmeteo/resources/icons/graph/1080/scale100_75.png deleted file mode 100644 index 6629af777..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_75.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_76.png b/weather.openmeteo/resources/icons/graph/1080/scale100_76.png deleted file mode 100644 index ffcbebe99..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_76.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_77.png b/weather.openmeteo/resources/icons/graph/1080/scale100_77.png deleted file mode 100644 index a73a3ce6d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_77.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_78.png b/weather.openmeteo/resources/icons/graph/1080/scale100_78.png deleted file mode 100644 index 9d9debdf7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_78.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_79.png b/weather.openmeteo/resources/icons/graph/1080/scale100_79.png deleted file mode 100644 index 0cccad317..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_79.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_8.png b/weather.openmeteo/resources/icons/graph/1080/scale100_8.png deleted file mode 100644 index 569b7b4f2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_80.png b/weather.openmeteo/resources/icons/graph/1080/scale100_80.png deleted file mode 100644 index 6ce1e226a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_80.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_81.png b/weather.openmeteo/resources/icons/graph/1080/scale100_81.png deleted file mode 100644 index 0a35bc77c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_81.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_82.png b/weather.openmeteo/resources/icons/graph/1080/scale100_82.png deleted file mode 100644 index 9fc04da02..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_82.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_83.png b/weather.openmeteo/resources/icons/graph/1080/scale100_83.png deleted file mode 100644 index d7e7daf7b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_83.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_84.png b/weather.openmeteo/resources/icons/graph/1080/scale100_84.png deleted file mode 100644 index 5ec58466e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_84.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_85.png b/weather.openmeteo/resources/icons/graph/1080/scale100_85.png deleted file mode 100644 index 778d20664..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_85.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_86.png b/weather.openmeteo/resources/icons/graph/1080/scale100_86.png deleted file mode 100644 index 7c24a1f9a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_86.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_87.png b/weather.openmeteo/resources/icons/graph/1080/scale100_87.png deleted file mode 100644 index f9a79b800..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_87.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_88.png b/weather.openmeteo/resources/icons/graph/1080/scale100_88.png deleted file mode 100644 index 6e15d2d00..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_88.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_89.png b/weather.openmeteo/resources/icons/graph/1080/scale100_89.png deleted file mode 100644 index 2c5a8383a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_89.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_9.png b/weather.openmeteo/resources/icons/graph/1080/scale100_9.png deleted file mode 100644 index 4e3189f50..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_90.png b/weather.openmeteo/resources/icons/graph/1080/scale100_90.png deleted file mode 100644 index 5987e8e51..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_90.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_91.png b/weather.openmeteo/resources/icons/graph/1080/scale100_91.png deleted file mode 100644 index f68afb4dd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_91.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_92.png b/weather.openmeteo/resources/icons/graph/1080/scale100_92.png deleted file mode 100644 index 032349d00..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_92.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_93.png b/weather.openmeteo/resources/icons/graph/1080/scale100_93.png deleted file mode 100644 index ee80e5858..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_93.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_94.png b/weather.openmeteo/resources/icons/graph/1080/scale100_94.png deleted file mode 100644 index bfb228fbb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_94.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_95.png b/weather.openmeteo/resources/icons/graph/1080/scale100_95.png deleted file mode 100644 index a447b90fc..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_95.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_96.png b/weather.openmeteo/resources/icons/graph/1080/scale100_96.png deleted file mode 100644 index bbe05c4bc..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_96.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_97.png b/weather.openmeteo/resources/icons/graph/1080/scale100_97.png deleted file mode 100644 index a464e6fdb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_97.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_98.png b/weather.openmeteo/resources/icons/graph/1080/scale100_98.png deleted file mode 100644 index 44a321449..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_98.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale100_99.png b/weather.openmeteo/resources/icons/graph/1080/scale100_99.png deleted file mode 100644 index d6f527f77..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale100_99.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale10_0.png b/weather.openmeteo/resources/icons/graph/1080/scale10_0.png deleted file mode 100644 index 10a0512d9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale10_0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale10_1.png b/weather.openmeteo/resources/icons/graph/1080/scale10_1.png deleted file mode 100644 index 7ff9a9a98..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale10_1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale10_10.png b/weather.openmeteo/resources/icons/graph/1080/scale10_10.png deleted file mode 100644 index b985bf5a0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale10_10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale10_2.png b/weather.openmeteo/resources/icons/graph/1080/scale10_2.png deleted file mode 100644 index fe087307c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale10_2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale10_3.png b/weather.openmeteo/resources/icons/graph/1080/scale10_3.png deleted file mode 100644 index 061fd5e22..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale10_3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale10_4.png b/weather.openmeteo/resources/icons/graph/1080/scale10_4.png deleted file mode 100644 index f005b75e2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale10_4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale10_5.png b/weather.openmeteo/resources/icons/graph/1080/scale10_5.png deleted file mode 100644 index b7ad609b4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale10_5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale10_6.png b/weather.openmeteo/resources/icons/graph/1080/scale10_6.png deleted file mode 100644 index b0d4bff18..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale10_6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale10_7.png b/weather.openmeteo/resources/icons/graph/1080/scale10_7.png deleted file mode 100644 index 98bf8c82e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale10_7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale10_8.png b/weather.openmeteo/resources/icons/graph/1080/scale10_8.png deleted file mode 100644 index 6c9b6d057..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale10_8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale10_9.png b/weather.openmeteo/resources/icons/graph/1080/scale10_9.png deleted file mode 100644 index ed9298f71..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale10_9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_0.png b/weather.openmeteo/resources/icons/graph/1080/scale150_0.png deleted file mode 100644 index 5a27ab2f7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_1.png b/weather.openmeteo/resources/icons/graph/1080/scale150_1.png deleted file mode 100644 index 5a27ab2f7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_10.png b/weather.openmeteo/resources/icons/graph/1080/scale150_10.png deleted file mode 100644 index 761123184..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_100.png b/weather.openmeteo/resources/icons/graph/1080/scale150_100.png deleted file mode 100644 index 456f67c74..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_100.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_101.png b/weather.openmeteo/resources/icons/graph/1080/scale150_101.png deleted file mode 100644 index 456f67c74..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_101.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_102.png b/weather.openmeteo/resources/icons/graph/1080/scale150_102.png deleted file mode 100644 index 5b58248d4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_102.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_103.png b/weather.openmeteo/resources/icons/graph/1080/scale150_103.png deleted file mode 100644 index d1becba50..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_103.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_104.png b/weather.openmeteo/resources/icons/graph/1080/scale150_104.png deleted file mode 100644 index d1becba50..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_104.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_105.png b/weather.openmeteo/resources/icons/graph/1080/scale150_105.png deleted file mode 100644 index 4f70aa9db..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_105.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_106.png b/weather.openmeteo/resources/icons/graph/1080/scale150_106.png deleted file mode 100644 index e40bce7c8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_106.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_107.png b/weather.openmeteo/resources/icons/graph/1080/scale150_107.png deleted file mode 100644 index e40bce7c8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_107.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_108.png b/weather.openmeteo/resources/icons/graph/1080/scale150_108.png deleted file mode 100644 index b49ff8d09..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_108.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_109.png b/weather.openmeteo/resources/icons/graph/1080/scale150_109.png deleted file mode 100644 index b83171d50..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_109.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_11.png b/weather.openmeteo/resources/icons/graph/1080/scale150_11.png deleted file mode 100644 index 761123184..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_110.png b/weather.openmeteo/resources/icons/graph/1080/scale150_110.png deleted file mode 100644 index b83171d50..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_110.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_111.png b/weather.openmeteo/resources/icons/graph/1080/scale150_111.png deleted file mode 100644 index 6dbb7ceaa..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_111.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_112.png b/weather.openmeteo/resources/icons/graph/1080/scale150_112.png deleted file mode 100644 index 905aee265..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_112.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_113.png b/weather.openmeteo/resources/icons/graph/1080/scale150_113.png deleted file mode 100644 index 905aee265..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_113.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_114.png b/weather.openmeteo/resources/icons/graph/1080/scale150_114.png deleted file mode 100644 index 50399755a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_114.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_115.png b/weather.openmeteo/resources/icons/graph/1080/scale150_115.png deleted file mode 100644 index ef8ce6bd1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_115.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_116.png b/weather.openmeteo/resources/icons/graph/1080/scale150_116.png deleted file mode 100644 index ef8ce6bd1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_116.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_117.png b/weather.openmeteo/resources/icons/graph/1080/scale150_117.png deleted file mode 100644 index e8bc8cfd5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_117.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_118.png b/weather.openmeteo/resources/icons/graph/1080/scale150_118.png deleted file mode 100644 index c7fe5e147..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_118.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_119.png b/weather.openmeteo/resources/icons/graph/1080/scale150_119.png deleted file mode 100644 index c7fe5e147..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_119.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_12.png b/weather.openmeteo/resources/icons/graph/1080/scale150_12.png deleted file mode 100644 index 1454e1b08..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_120.png b/weather.openmeteo/resources/icons/graph/1080/scale150_120.png deleted file mode 100644 index 24b342e74..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_120.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_121.png b/weather.openmeteo/resources/icons/graph/1080/scale150_121.png deleted file mode 100644 index 1448255cf..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_121.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_122.png b/weather.openmeteo/resources/icons/graph/1080/scale150_122.png deleted file mode 100644 index 1448255cf..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_122.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_123.png b/weather.openmeteo/resources/icons/graph/1080/scale150_123.png deleted file mode 100644 index cffe44cdc..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_123.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_124.png b/weather.openmeteo/resources/icons/graph/1080/scale150_124.png deleted file mode 100644 index 2b4d41602..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_124.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_125.png b/weather.openmeteo/resources/icons/graph/1080/scale150_125.png deleted file mode 100644 index 2b4d41602..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_125.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_126.png b/weather.openmeteo/resources/icons/graph/1080/scale150_126.png deleted file mode 100644 index 5a977bc94..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_126.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_127.png b/weather.openmeteo/resources/icons/graph/1080/scale150_127.png deleted file mode 100644 index fa4ec3cff..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_127.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_128.png b/weather.openmeteo/resources/icons/graph/1080/scale150_128.png deleted file mode 100644 index fa4ec3cff..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_128.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_129.png b/weather.openmeteo/resources/icons/graph/1080/scale150_129.png deleted file mode 100644 index 56176d449..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_129.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_13.png b/weather.openmeteo/resources/icons/graph/1080/scale150_13.png deleted file mode 100644 index c2d0280f4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_130.png b/weather.openmeteo/resources/icons/graph/1080/scale150_130.png deleted file mode 100644 index 34a06a376..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_130.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_131.png b/weather.openmeteo/resources/icons/graph/1080/scale150_131.png deleted file mode 100644 index 34a06a376..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_131.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_132.png b/weather.openmeteo/resources/icons/graph/1080/scale150_132.png deleted file mode 100644 index a067c1b6e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_132.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_133.png b/weather.openmeteo/resources/icons/graph/1080/scale150_133.png deleted file mode 100644 index 27d744424..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_133.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_134.png b/weather.openmeteo/resources/icons/graph/1080/scale150_134.png deleted file mode 100644 index 27d744424..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_134.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_135.png b/weather.openmeteo/resources/icons/graph/1080/scale150_135.png deleted file mode 100644 index 9d18463ba..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_135.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_136.png b/weather.openmeteo/resources/icons/graph/1080/scale150_136.png deleted file mode 100644 index 80c28b6db..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_136.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_137.png b/weather.openmeteo/resources/icons/graph/1080/scale150_137.png deleted file mode 100644 index 6d7079df7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_137.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_138.png b/weather.openmeteo/resources/icons/graph/1080/scale150_138.png deleted file mode 100644 index 80d69334f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_138.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_139.png b/weather.openmeteo/resources/icons/graph/1080/scale150_139.png deleted file mode 100644 index d3f8155c1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_139.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_14.png b/weather.openmeteo/resources/icons/graph/1080/scale150_14.png deleted file mode 100644 index c2d0280f4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_140.png b/weather.openmeteo/resources/icons/graph/1080/scale150_140.png deleted file mode 100644 index ecba9e48e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_140.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_141.png b/weather.openmeteo/resources/icons/graph/1080/scale150_141.png deleted file mode 100644 index 51cb473d4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_141.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_142.png b/weather.openmeteo/resources/icons/graph/1080/scale150_142.png deleted file mode 100644 index d9091eaf8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_142.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_143.png b/weather.openmeteo/resources/icons/graph/1080/scale150_143.png deleted file mode 100644 index 07dfa0a83..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_143.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_144.png b/weather.openmeteo/resources/icons/graph/1080/scale150_144.png deleted file mode 100644 index 470a2de12..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_144.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_145.png b/weather.openmeteo/resources/icons/graph/1080/scale150_145.png deleted file mode 100644 index 728e564a9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_145.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_146.png b/weather.openmeteo/resources/icons/graph/1080/scale150_146.png deleted file mode 100644 index f28dba5b9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_146.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_147.png b/weather.openmeteo/resources/icons/graph/1080/scale150_147.png deleted file mode 100644 index b9f16cff8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_147.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_148.png b/weather.openmeteo/resources/icons/graph/1080/scale150_148.png deleted file mode 100644 index 16c173765..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_148.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_149.png b/weather.openmeteo/resources/icons/graph/1080/scale150_149.png deleted file mode 100644 index 0d4e25ad8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_149.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_15.png b/weather.openmeteo/resources/icons/graph/1080/scale150_15.png deleted file mode 100644 index 325a4d182..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_150.png b/weather.openmeteo/resources/icons/graph/1080/scale150_150.png deleted file mode 100644 index db86de19e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_150.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_16.png b/weather.openmeteo/resources/icons/graph/1080/scale150_16.png deleted file mode 100644 index 296ab7b75..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_17.png b/weather.openmeteo/resources/icons/graph/1080/scale150_17.png deleted file mode 100644 index 296ab7b75..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_18.png b/weather.openmeteo/resources/icons/graph/1080/scale150_18.png deleted file mode 100644 index 04a19cb27..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_19.png b/weather.openmeteo/resources/icons/graph/1080/scale150_19.png deleted file mode 100644 index b8872e13a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_2.png b/weather.openmeteo/resources/icons/graph/1080/scale150_2.png deleted file mode 100644 index 5a27ab2f7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_20.png b/weather.openmeteo/resources/icons/graph/1080/scale150_20.png deleted file mode 100644 index b8872e13a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_21.png b/weather.openmeteo/resources/icons/graph/1080/scale150_21.png deleted file mode 100644 index 3c359c687..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_21.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_22.png b/weather.openmeteo/resources/icons/graph/1080/scale150_22.png deleted file mode 100644 index 674361add..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_22.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_23.png b/weather.openmeteo/resources/icons/graph/1080/scale150_23.png deleted file mode 100644 index 674361add..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_23.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_24.png b/weather.openmeteo/resources/icons/graph/1080/scale150_24.png deleted file mode 100644 index fd1ae45d4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_24.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_25.png b/weather.openmeteo/resources/icons/graph/1080/scale150_25.png deleted file mode 100644 index a0611420b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_25.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_26.png b/weather.openmeteo/resources/icons/graph/1080/scale150_26.png deleted file mode 100644 index a0611420b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_26.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_27.png b/weather.openmeteo/resources/icons/graph/1080/scale150_27.png deleted file mode 100644 index 76b61b9c6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_27.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_28.png b/weather.openmeteo/resources/icons/graph/1080/scale150_28.png deleted file mode 100644 index 2edaeec21..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_28.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_29.png b/weather.openmeteo/resources/icons/graph/1080/scale150_29.png deleted file mode 100644 index 2edaeec21..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_29.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_3.png b/weather.openmeteo/resources/icons/graph/1080/scale150_3.png deleted file mode 100644 index 55ef552cf..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_30.png b/weather.openmeteo/resources/icons/graph/1080/scale150_30.png deleted file mode 100644 index fd2b7adfc..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_30.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_31.png b/weather.openmeteo/resources/icons/graph/1080/scale150_31.png deleted file mode 100644 index f5a82201b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_31.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_32.png b/weather.openmeteo/resources/icons/graph/1080/scale150_32.png deleted file mode 100644 index f5a82201b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_32.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_33.png b/weather.openmeteo/resources/icons/graph/1080/scale150_33.png deleted file mode 100644 index 9f0ef18da..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_33.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_34.png b/weather.openmeteo/resources/icons/graph/1080/scale150_34.png deleted file mode 100644 index f24688c91..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_34.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_35.png b/weather.openmeteo/resources/icons/graph/1080/scale150_35.png deleted file mode 100644 index 45e8291b4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_35.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_36.png b/weather.openmeteo/resources/icons/graph/1080/scale150_36.png deleted file mode 100644 index d93ac633e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_36.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_37.png b/weather.openmeteo/resources/icons/graph/1080/scale150_37.png deleted file mode 100644 index d380435df..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_37.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_38.png b/weather.openmeteo/resources/icons/graph/1080/scale150_38.png deleted file mode 100644 index c3a346d1c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_38.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_39.png b/weather.openmeteo/resources/icons/graph/1080/scale150_39.png deleted file mode 100644 index afb4d4ad3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_39.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_4.png b/weather.openmeteo/resources/icons/graph/1080/scale150_4.png deleted file mode 100644 index 692fa7a39..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_40.png b/weather.openmeteo/resources/icons/graph/1080/scale150_40.png deleted file mode 100644 index 203e6653c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_40.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_41.png b/weather.openmeteo/resources/icons/graph/1080/scale150_41.png deleted file mode 100644 index 07f9f4a97..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_41.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_42.png b/weather.openmeteo/resources/icons/graph/1080/scale150_42.png deleted file mode 100644 index 7bb1655fb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_42.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_43.png b/weather.openmeteo/resources/icons/graph/1080/scale150_43.png deleted file mode 100644 index a5db8c221..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_43.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_44.png b/weather.openmeteo/resources/icons/graph/1080/scale150_44.png deleted file mode 100644 index 3a2d1d339..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_44.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_45.png b/weather.openmeteo/resources/icons/graph/1080/scale150_45.png deleted file mode 100644 index e09816569..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_45.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_46.png b/weather.openmeteo/resources/icons/graph/1080/scale150_46.png deleted file mode 100644 index 2922c748a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_46.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_47.png b/weather.openmeteo/resources/icons/graph/1080/scale150_47.png deleted file mode 100644 index 20ac51d5f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_47.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_48.png b/weather.openmeteo/resources/icons/graph/1080/scale150_48.png deleted file mode 100644 index 478ac9b5f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_48.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_49.png b/weather.openmeteo/resources/icons/graph/1080/scale150_49.png deleted file mode 100644 index ecf09872b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_49.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_5.png b/weather.openmeteo/resources/icons/graph/1080/scale150_5.png deleted file mode 100644 index 692fa7a39..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_50.png b/weather.openmeteo/resources/icons/graph/1080/scale150_50.png deleted file mode 100644 index ecf09872b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_50.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_51.png b/weather.openmeteo/resources/icons/graph/1080/scale150_51.png deleted file mode 100644 index 2a38be18d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_51.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_52.png b/weather.openmeteo/resources/icons/graph/1080/scale150_52.png deleted file mode 100644 index da2bef5ec..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_52.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_53.png b/weather.openmeteo/resources/icons/graph/1080/scale150_53.png deleted file mode 100644 index da2bef5ec..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_53.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_54.png b/weather.openmeteo/resources/icons/graph/1080/scale150_54.png deleted file mode 100644 index edb4edd47..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_54.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_55.png b/weather.openmeteo/resources/icons/graph/1080/scale150_55.png deleted file mode 100644 index 0fb6835a1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_55.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_56.png b/weather.openmeteo/resources/icons/graph/1080/scale150_56.png deleted file mode 100644 index 0fb6835a1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_56.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_57.png b/weather.openmeteo/resources/icons/graph/1080/scale150_57.png deleted file mode 100644 index 4eb0204eb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_57.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_58.png b/weather.openmeteo/resources/icons/graph/1080/scale150_58.png deleted file mode 100644 index d017ed9d4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_58.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_59.png b/weather.openmeteo/resources/icons/graph/1080/scale150_59.png deleted file mode 100644 index d017ed9d4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_59.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_6.png b/weather.openmeteo/resources/icons/graph/1080/scale150_6.png deleted file mode 100644 index baeb55980..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_60.png b/weather.openmeteo/resources/icons/graph/1080/scale150_60.png deleted file mode 100644 index 4a043b67d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_60.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_61.png b/weather.openmeteo/resources/icons/graph/1080/scale150_61.png deleted file mode 100644 index 87a9239fa..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_61.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_62.png b/weather.openmeteo/resources/icons/graph/1080/scale150_62.png deleted file mode 100644 index 87a9239fa..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_62.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_63.png b/weather.openmeteo/resources/icons/graph/1080/scale150_63.png deleted file mode 100644 index 5fc451b31..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_63.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_64.png b/weather.openmeteo/resources/icons/graph/1080/scale150_64.png deleted file mode 100644 index e7a2a0d85..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_64.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_65.png b/weather.openmeteo/resources/icons/graph/1080/scale150_65.png deleted file mode 100644 index e7a2a0d85..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_65.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_66.png b/weather.openmeteo/resources/icons/graph/1080/scale150_66.png deleted file mode 100644 index 349d8ef0a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_66.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_67.png b/weather.openmeteo/resources/icons/graph/1080/scale150_67.png deleted file mode 100644 index f86b45ea9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_67.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_68.png b/weather.openmeteo/resources/icons/graph/1080/scale150_68.png deleted file mode 100644 index f86b45ea9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_68.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_69.png b/weather.openmeteo/resources/icons/graph/1080/scale150_69.png deleted file mode 100644 index da63a1735..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_69.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_7.png b/weather.openmeteo/resources/icons/graph/1080/scale150_7.png deleted file mode 100644 index 2ad38d772..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_70.png b/weather.openmeteo/resources/icons/graph/1080/scale150_70.png deleted file mode 100644 index 347922ce8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_70.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_71.png b/weather.openmeteo/resources/icons/graph/1080/scale150_71.png deleted file mode 100644 index 347922ce8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_71.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_72.png b/weather.openmeteo/resources/icons/graph/1080/scale150_72.png deleted file mode 100644 index 784a4d629..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_72.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_73.png b/weather.openmeteo/resources/icons/graph/1080/scale150_73.png deleted file mode 100644 index e853dbe65..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_73.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_74.png b/weather.openmeteo/resources/icons/graph/1080/scale150_74.png deleted file mode 100644 index e853dbe65..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_74.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_75.png b/weather.openmeteo/resources/icons/graph/1080/scale150_75.png deleted file mode 100644 index e4db19848..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_75.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_76.png b/weather.openmeteo/resources/icons/graph/1080/scale150_76.png deleted file mode 100644 index f76832558..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_76.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_77.png b/weather.openmeteo/resources/icons/graph/1080/scale150_77.png deleted file mode 100644 index f76832558..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_77.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_78.png b/weather.openmeteo/resources/icons/graph/1080/scale150_78.png deleted file mode 100644 index 3c3b2618f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_78.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_79.png b/weather.openmeteo/resources/icons/graph/1080/scale150_79.png deleted file mode 100644 index 990b6ea15..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_79.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_8.png b/weather.openmeteo/resources/icons/graph/1080/scale150_8.png deleted file mode 100644 index 2ad38d772..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_80.png b/weather.openmeteo/resources/icons/graph/1080/scale150_80.png deleted file mode 100644 index 990b6ea15..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_80.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_81.png b/weather.openmeteo/resources/icons/graph/1080/scale150_81.png deleted file mode 100644 index d7a2bce63..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_81.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_82.png b/weather.openmeteo/resources/icons/graph/1080/scale150_82.png deleted file mode 100644 index 42a0a8dd7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_82.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_83.png b/weather.openmeteo/resources/icons/graph/1080/scale150_83.png deleted file mode 100644 index d341ddb1d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_83.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_84.png b/weather.openmeteo/resources/icons/graph/1080/scale150_84.png deleted file mode 100644 index 561072330..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_84.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_85.png b/weather.openmeteo/resources/icons/graph/1080/scale150_85.png deleted file mode 100644 index ae1751aa7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_85.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_86.png b/weather.openmeteo/resources/icons/graph/1080/scale150_86.png deleted file mode 100644 index 66f66ca6d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_86.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_87.png b/weather.openmeteo/resources/icons/graph/1080/scale150_87.png deleted file mode 100644 index f5b372df2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_87.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_88.png b/weather.openmeteo/resources/icons/graph/1080/scale150_88.png deleted file mode 100644 index 1a65a64f9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_88.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_89.png b/weather.openmeteo/resources/icons/graph/1080/scale150_89.png deleted file mode 100644 index edb7e2eb1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_89.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_9.png b/weather.openmeteo/resources/icons/graph/1080/scale150_9.png deleted file mode 100644 index 70c060eda..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_90.png b/weather.openmeteo/resources/icons/graph/1080/scale150_90.png deleted file mode 100644 index 522300c9d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_90.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_91.png b/weather.openmeteo/resources/icons/graph/1080/scale150_91.png deleted file mode 100644 index 6dce9b16f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_91.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_92.png b/weather.openmeteo/resources/icons/graph/1080/scale150_92.png deleted file mode 100644 index 3c3a6c696..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_92.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_93.png b/weather.openmeteo/resources/icons/graph/1080/scale150_93.png deleted file mode 100644 index ff853cdd0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_93.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_94.png b/weather.openmeteo/resources/icons/graph/1080/scale150_94.png deleted file mode 100644 index c2d68b180..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_94.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_95.png b/weather.openmeteo/resources/icons/graph/1080/scale150_95.png deleted file mode 100644 index 5b93549c4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_95.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_96.png b/weather.openmeteo/resources/icons/graph/1080/scale150_96.png deleted file mode 100644 index 7b825b841..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_96.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_97.png b/weather.openmeteo/resources/icons/graph/1080/scale150_97.png deleted file mode 100644 index 95479568d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_97.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_98.png b/weather.openmeteo/resources/icons/graph/1080/scale150_98.png deleted file mode 100644 index 95479568d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_98.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale150_99.png b/weather.openmeteo/resources/icons/graph/1080/scale150_99.png deleted file mode 100644 index 541871bcd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale150_99.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale1_0.0.png b/weather.openmeteo/resources/icons/graph/1080/scale1_0.0.png deleted file mode 100644 index d4de109bf..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale1_0.0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale1_0.1.png b/weather.openmeteo/resources/icons/graph/1080/scale1_0.1.png deleted file mode 100644 index fd2ca6387..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale1_0.1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale1_0.2.png b/weather.openmeteo/resources/icons/graph/1080/scale1_0.2.png deleted file mode 100644 index fa143143e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale1_0.2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale1_0.3.png b/weather.openmeteo/resources/icons/graph/1080/scale1_0.3.png deleted file mode 100644 index 280ba75b0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale1_0.3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale1_0.4.png b/weather.openmeteo/resources/icons/graph/1080/scale1_0.4.png deleted file mode 100644 index ee2348577..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale1_0.4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale1_0.5.png b/weather.openmeteo/resources/icons/graph/1080/scale1_0.5.png deleted file mode 100644 index ee879a677..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale1_0.5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale1_0.6.png b/weather.openmeteo/resources/icons/graph/1080/scale1_0.6.png deleted file mode 100644 index 5251517d0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale1_0.6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale1_0.7.png b/weather.openmeteo/resources/icons/graph/1080/scale1_0.7.png deleted file mode 100644 index ce4e110f7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale1_0.7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale1_0.8.png b/weather.openmeteo/resources/icons/graph/1080/scale1_0.8.png deleted file mode 100644 index 2bd5abb49..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale1_0.8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale1_0.9.png b/weather.openmeteo/resources/icons/graph/1080/scale1_0.9.png deleted file mode 100644 index 267399b73..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale1_0.9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale1_1.0.png b/weather.openmeteo/resources/icons/graph/1080/scale1_1.0.png deleted file mode 100644 index ed2080ba4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale1_1.0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_0.png b/weather.openmeteo/resources/icons/graph/1080/scale200_0.png deleted file mode 100644 index fa2e49188..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_1.png b/weather.openmeteo/resources/icons/graph/1080/scale200_1.png deleted file mode 100644 index fa2e49188..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_10.png b/weather.openmeteo/resources/icons/graph/1080/scale200_10.png deleted file mode 100644 index 7ba3d2ea4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_100.png b/weather.openmeteo/resources/icons/graph/1080/scale200_100.png deleted file mode 100644 index 1ef8a1b47..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_100.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_101.png b/weather.openmeteo/resources/icons/graph/1080/scale200_101.png deleted file mode 100644 index ef1805ba2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_101.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_102.png b/weather.openmeteo/resources/icons/graph/1080/scale200_102.png deleted file mode 100644 index 15cfe86c8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_102.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_103.png b/weather.openmeteo/resources/icons/graph/1080/scale200_103.png deleted file mode 100644 index 40fe2020f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_103.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_104.png b/weather.openmeteo/resources/icons/graph/1080/scale200_104.png deleted file mode 100644 index dcc7087da..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_104.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_105.png b/weather.openmeteo/resources/icons/graph/1080/scale200_105.png deleted file mode 100644 index dcc7087da..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_105.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_106.png b/weather.openmeteo/resources/icons/graph/1080/scale200_106.png deleted file mode 100644 index fc93df2ce..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_106.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_107.png b/weather.openmeteo/resources/icons/graph/1080/scale200_107.png deleted file mode 100644 index e43b7affa..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_107.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_108.png b/weather.openmeteo/resources/icons/graph/1080/scale200_108.png deleted file mode 100644 index e43b7affa..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_108.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_109.png b/weather.openmeteo/resources/icons/graph/1080/scale200_109.png deleted file mode 100644 index e43b7affa..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_109.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_11.png b/weather.openmeteo/resources/icons/graph/1080/scale200_11.png deleted file mode 100644 index 652dc2af2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_110.png b/weather.openmeteo/resources/icons/graph/1080/scale200_110.png deleted file mode 100644 index ed19fcacc..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_110.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_111.png b/weather.openmeteo/resources/icons/graph/1080/scale200_111.png deleted file mode 100644 index 63d7b57c8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_111.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_112.png b/weather.openmeteo/resources/icons/graph/1080/scale200_112.png deleted file mode 100644 index 63d7b57c8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_112.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_113.png b/weather.openmeteo/resources/icons/graph/1080/scale200_113.png deleted file mode 100644 index 63d7b57c8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_113.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_114.png b/weather.openmeteo/resources/icons/graph/1080/scale200_114.png deleted file mode 100644 index 0f6c7a36d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_114.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_115.png b/weather.openmeteo/resources/icons/graph/1080/scale200_115.png deleted file mode 100644 index c9249aa48..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_115.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_116.png b/weather.openmeteo/resources/icons/graph/1080/scale200_116.png deleted file mode 100644 index c9249aa48..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_116.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_117.png b/weather.openmeteo/resources/icons/graph/1080/scale200_117.png deleted file mode 100644 index 60f457b03..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_117.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_118.png b/weather.openmeteo/resources/icons/graph/1080/scale200_118.png deleted file mode 100644 index 8279d07ae..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_118.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_119.png b/weather.openmeteo/resources/icons/graph/1080/scale200_119.png deleted file mode 100644 index 58fa9c2cf..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_119.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_12.png b/weather.openmeteo/resources/icons/graph/1080/scale200_12.png deleted file mode 100644 index 652dc2af2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_120.png b/weather.openmeteo/resources/icons/graph/1080/scale200_120.png deleted file mode 100644 index 08fe5bcd4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_120.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_121.png b/weather.openmeteo/resources/icons/graph/1080/scale200_121.png deleted file mode 100644 index 08fe5bcd4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_121.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_122.png b/weather.openmeteo/resources/icons/graph/1080/scale200_122.png deleted file mode 100644 index c93f4f3f1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_122.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_123.png b/weather.openmeteo/resources/icons/graph/1080/scale200_123.png deleted file mode 100644 index f2edc4c48..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_123.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_124.png b/weather.openmeteo/resources/icons/graph/1080/scale200_124.png deleted file mode 100644 index f2edc4c48..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_124.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_125.png b/weather.openmeteo/resources/icons/graph/1080/scale200_125.png deleted file mode 100644 index f2edc4c48..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_125.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_126.png b/weather.openmeteo/resources/icons/graph/1080/scale200_126.png deleted file mode 100644 index 1df0a2b05..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_126.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_127.png b/weather.openmeteo/resources/icons/graph/1080/scale200_127.png deleted file mode 100644 index 4ff6f0b81..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_127.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_128.png b/weather.openmeteo/resources/icons/graph/1080/scale200_128.png deleted file mode 100644 index 4ff6f0b81..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_128.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_129.png b/weather.openmeteo/resources/icons/graph/1080/scale200_129.png deleted file mode 100644 index 4ff6f0b81..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_129.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_13.png b/weather.openmeteo/resources/icons/graph/1080/scale200_13.png deleted file mode 100644 index 652dc2af2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_130.png b/weather.openmeteo/resources/icons/graph/1080/scale200_130.png deleted file mode 100644 index 0373c4be6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_130.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_131.png b/weather.openmeteo/resources/icons/graph/1080/scale200_131.png deleted file mode 100644 index 8f8287de9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_131.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_132.png b/weather.openmeteo/resources/icons/graph/1080/scale200_132.png deleted file mode 100644 index 8f8287de9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_132.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_133.png b/weather.openmeteo/resources/icons/graph/1080/scale200_133.png deleted file mode 100644 index 99447b931..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_133.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_134.png b/weather.openmeteo/resources/icons/graph/1080/scale200_134.png deleted file mode 100644 index 1c4b81e32..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_134.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_135.png b/weather.openmeteo/resources/icons/graph/1080/scale200_135.png deleted file mode 100644 index 133852586..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_135.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_136.png b/weather.openmeteo/resources/icons/graph/1080/scale200_136.png deleted file mode 100644 index fc72d9440..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_136.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_137.png b/weather.openmeteo/resources/icons/graph/1080/scale200_137.png deleted file mode 100644 index fc72d9440..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_137.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_138.png b/weather.openmeteo/resources/icons/graph/1080/scale200_138.png deleted file mode 100644 index e37c3dd43..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_138.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_139.png b/weather.openmeteo/resources/icons/graph/1080/scale200_139.png deleted file mode 100644 index d4bc37cff..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_139.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_14.png b/weather.openmeteo/resources/icons/graph/1080/scale200_14.png deleted file mode 100644 index b9a81a4af..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_140.png b/weather.openmeteo/resources/icons/graph/1080/scale200_140.png deleted file mode 100644 index d4bc37cff..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_140.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_141.png b/weather.openmeteo/resources/icons/graph/1080/scale200_141.png deleted file mode 100644 index d4bc37cff..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_141.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_142.png b/weather.openmeteo/resources/icons/graph/1080/scale200_142.png deleted file mode 100644 index 7d2543426..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_142.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_143.png b/weather.openmeteo/resources/icons/graph/1080/scale200_143.png deleted file mode 100644 index f97056bd4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_143.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_144.png b/weather.openmeteo/resources/icons/graph/1080/scale200_144.png deleted file mode 100644 index f97056bd4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_144.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_145.png b/weather.openmeteo/resources/icons/graph/1080/scale200_145.png deleted file mode 100644 index 873b7457c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_145.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_146.png b/weather.openmeteo/resources/icons/graph/1080/scale200_146.png deleted file mode 100644 index 1ff59aacf..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_146.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_147.png b/weather.openmeteo/resources/icons/graph/1080/scale200_147.png deleted file mode 100644 index a7f22b0d3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_147.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_148.png b/weather.openmeteo/resources/icons/graph/1080/scale200_148.png deleted file mode 100644 index a7f22b0d3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_148.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_149.png b/weather.openmeteo/resources/icons/graph/1080/scale200_149.png deleted file mode 100644 index f2e53666c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_149.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_15.png b/weather.openmeteo/resources/icons/graph/1080/scale200_15.png deleted file mode 100644 index 08d3c1b4e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_150.png b/weather.openmeteo/resources/icons/graph/1080/scale200_150.png deleted file mode 100644 index a75ae0da1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_150.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_151.png b/weather.openmeteo/resources/icons/graph/1080/scale200_151.png deleted file mode 100644 index bec0d9713..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_151.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_152.png b/weather.openmeteo/resources/icons/graph/1080/scale200_152.png deleted file mode 100644 index 9351a99fa..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_152.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_153.png b/weather.openmeteo/resources/icons/graph/1080/scale200_153.png deleted file mode 100644 index 9351a99fa..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_153.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_154.png b/weather.openmeteo/resources/icons/graph/1080/scale200_154.png deleted file mode 100644 index e9fefaf59..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_154.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_155.png b/weather.openmeteo/resources/icons/graph/1080/scale200_155.png deleted file mode 100644 index ebd7741ad..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_155.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_156.png b/weather.openmeteo/resources/icons/graph/1080/scale200_156.png deleted file mode 100644 index ebd7741ad..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_156.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_157.png b/weather.openmeteo/resources/icons/graph/1080/scale200_157.png deleted file mode 100644 index ebd7741ad..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_157.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_158.png b/weather.openmeteo/resources/icons/graph/1080/scale200_158.png deleted file mode 100644 index 722e8986a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_158.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_159.png b/weather.openmeteo/resources/icons/graph/1080/scale200_159.png deleted file mode 100644 index 9748a2cf3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_159.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_16.png b/weather.openmeteo/resources/icons/graph/1080/scale200_16.png deleted file mode 100644 index 08d3c1b4e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_160.png b/weather.openmeteo/resources/icons/graph/1080/scale200_160.png deleted file mode 100644 index 9748a2cf3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_160.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_161.png b/weather.openmeteo/resources/icons/graph/1080/scale200_161.png deleted file mode 100644 index 860768317..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_161.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_162.png b/weather.openmeteo/resources/icons/graph/1080/scale200_162.png deleted file mode 100644 index 2ab1f22f9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_162.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_163.png b/weather.openmeteo/resources/icons/graph/1080/scale200_163.png deleted file mode 100644 index c0a22a59c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_163.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_164.png b/weather.openmeteo/resources/icons/graph/1080/scale200_164.png deleted file mode 100644 index c0a22a59c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_164.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_165.png b/weather.openmeteo/resources/icons/graph/1080/scale200_165.png deleted file mode 100644 index c11e7fe1d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_165.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_166.png b/weather.openmeteo/resources/icons/graph/1080/scale200_166.png deleted file mode 100644 index 708750428..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_166.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_167.png b/weather.openmeteo/resources/icons/graph/1080/scale200_167.png deleted file mode 100644 index 9938e3939..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_167.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_168.png b/weather.openmeteo/resources/icons/graph/1080/scale200_168.png deleted file mode 100644 index 424177887..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_168.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_169.png b/weather.openmeteo/resources/icons/graph/1080/scale200_169.png deleted file mode 100644 index 424177887..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_169.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_17.png b/weather.openmeteo/resources/icons/graph/1080/scale200_17.png deleted file mode 100644 index 08d3c1b4e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_170.png b/weather.openmeteo/resources/icons/graph/1080/scale200_170.png deleted file mode 100644 index e03018fd3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_170.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_171.png b/weather.openmeteo/resources/icons/graph/1080/scale200_171.png deleted file mode 100644 index 0830d6caf..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_171.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_172.png b/weather.openmeteo/resources/icons/graph/1080/scale200_172.png deleted file mode 100644 index 0830d6caf..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_172.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_173.png b/weather.openmeteo/resources/icons/graph/1080/scale200_173.png deleted file mode 100644 index 0830d6caf..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_173.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_174.png b/weather.openmeteo/resources/icons/graph/1080/scale200_174.png deleted file mode 100644 index b13245738..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_174.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_175.png b/weather.openmeteo/resources/icons/graph/1080/scale200_175.png deleted file mode 100644 index aa4075e87..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_175.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_176.png b/weather.openmeteo/resources/icons/graph/1080/scale200_176.png deleted file mode 100644 index aa4075e87..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_176.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_177.png b/weather.openmeteo/resources/icons/graph/1080/scale200_177.png deleted file mode 100644 index 55cba2d82..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_177.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_178.png b/weather.openmeteo/resources/icons/graph/1080/scale200_178.png deleted file mode 100644 index 1ca1f6e80..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_178.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_179.png b/weather.openmeteo/resources/icons/graph/1080/scale200_179.png deleted file mode 100644 index 1cb7c8792..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_179.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_18.png b/weather.openmeteo/resources/icons/graph/1080/scale200_18.png deleted file mode 100644 index 488772c09..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_180.png b/weather.openmeteo/resources/icons/graph/1080/scale200_180.png deleted file mode 100644 index 1cb7c8792..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_180.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_181.png b/weather.openmeteo/resources/icons/graph/1080/scale200_181.png deleted file mode 100644 index d43a71ebe..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_181.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_182.png b/weather.openmeteo/resources/icons/graph/1080/scale200_182.png deleted file mode 100644 index f0b21be6b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_182.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_183.png b/weather.openmeteo/resources/icons/graph/1080/scale200_183.png deleted file mode 100644 index b3498d77f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_183.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_184.png b/weather.openmeteo/resources/icons/graph/1080/scale200_184.png deleted file mode 100644 index d73973c04..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_184.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_185.png b/weather.openmeteo/resources/icons/graph/1080/scale200_185.png deleted file mode 100644 index d73973c04..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_185.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_186.png b/weather.openmeteo/resources/icons/graph/1080/scale200_186.png deleted file mode 100644 index 1b44c47bb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_186.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_187.png b/weather.openmeteo/resources/icons/graph/1080/scale200_187.png deleted file mode 100644 index 421a5218d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_187.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_188.png b/weather.openmeteo/resources/icons/graph/1080/scale200_188.png deleted file mode 100644 index 421a5218d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_188.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_189.png b/weather.openmeteo/resources/icons/graph/1080/scale200_189.png deleted file mode 100644 index 421a5218d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_189.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_19.png b/weather.openmeteo/resources/icons/graph/1080/scale200_19.png deleted file mode 100644 index 6b2c14a21..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_190.png b/weather.openmeteo/resources/icons/graph/1080/scale200_190.png deleted file mode 100644 index a337f7174..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_190.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_191.png b/weather.openmeteo/resources/icons/graph/1080/scale200_191.png deleted file mode 100644 index 825fe0596..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_191.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_192.png b/weather.openmeteo/resources/icons/graph/1080/scale200_192.png deleted file mode 100644 index 825fe0596..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_192.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_193.png b/weather.openmeteo/resources/icons/graph/1080/scale200_193.png deleted file mode 100644 index 9572ac6c9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_193.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_194.png b/weather.openmeteo/resources/icons/graph/1080/scale200_194.png deleted file mode 100644 index 158c2977b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_194.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_195.png b/weather.openmeteo/resources/icons/graph/1080/scale200_195.png deleted file mode 100644 index 96010a89f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_195.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_196.png b/weather.openmeteo/resources/icons/graph/1080/scale200_196.png deleted file mode 100644 index 6cf8b9ffa..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_196.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_197.png b/weather.openmeteo/resources/icons/graph/1080/scale200_197.png deleted file mode 100644 index 6cf8b9ffa..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_197.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_198.png b/weather.openmeteo/resources/icons/graph/1080/scale200_198.png deleted file mode 100644 index 2532781ba..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_198.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_199.png b/weather.openmeteo/resources/icons/graph/1080/scale200_199.png deleted file mode 100644 index 46ea0d8ba..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_199.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_2.png b/weather.openmeteo/resources/icons/graph/1080/scale200_2.png deleted file mode 100644 index def81bcbb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_20.png b/weather.openmeteo/resources/icons/graph/1080/scale200_20.png deleted file mode 100644 index 6b2c14a21..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_200.png b/weather.openmeteo/resources/icons/graph/1080/scale200_200.png deleted file mode 100644 index 3b8eef762..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_200.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_21.png b/weather.openmeteo/resources/icons/graph/1080/scale200_21.png deleted file mode 100644 index 4ddd15ae7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_21.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_22.png b/weather.openmeteo/resources/icons/graph/1080/scale200_22.png deleted file mode 100644 index dd77f45d8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_22.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_23.png b/weather.openmeteo/resources/icons/graph/1080/scale200_23.png deleted file mode 100644 index b660287d7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_23.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_24.png b/weather.openmeteo/resources/icons/graph/1080/scale200_24.png deleted file mode 100644 index d9ffbdcec..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_24.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_25.png b/weather.openmeteo/resources/icons/graph/1080/scale200_25.png deleted file mode 100644 index d9ffbdcec..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_25.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_26.png b/weather.openmeteo/resources/icons/graph/1080/scale200_26.png deleted file mode 100644 index 2b768b5f2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_26.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_27.png b/weather.openmeteo/resources/icons/graph/1080/scale200_27.png deleted file mode 100644 index f6b5eddcf..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_27.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_28.png b/weather.openmeteo/resources/icons/graph/1080/scale200_28.png deleted file mode 100644 index f6b5eddcf..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_28.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_29.png b/weather.openmeteo/resources/icons/graph/1080/scale200_29.png deleted file mode 100644 index f6b5eddcf..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_29.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_3.png b/weather.openmeteo/resources/icons/graph/1080/scale200_3.png deleted file mode 100644 index e6daaad6e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_30.png b/weather.openmeteo/resources/icons/graph/1080/scale200_30.png deleted file mode 100644 index 655680a83..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_30.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_31.png b/weather.openmeteo/resources/icons/graph/1080/scale200_31.png deleted file mode 100644 index 28a735b54..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_31.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_32.png b/weather.openmeteo/resources/icons/graph/1080/scale200_32.png deleted file mode 100644 index 28a735b54..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_32.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_33.png b/weather.openmeteo/resources/icons/graph/1080/scale200_33.png deleted file mode 100644 index 28a735b54..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_33.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_34.png b/weather.openmeteo/resources/icons/graph/1080/scale200_34.png deleted file mode 100644 index a44681f1a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_34.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_35.png b/weather.openmeteo/resources/icons/graph/1080/scale200_35.png deleted file mode 100644 index b0c55fa83..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_35.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_36.png b/weather.openmeteo/resources/icons/graph/1080/scale200_36.png deleted file mode 100644 index b0c55fa83..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_36.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_37.png b/weather.openmeteo/resources/icons/graph/1080/scale200_37.png deleted file mode 100644 index 913d92c2c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_37.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_38.png b/weather.openmeteo/resources/icons/graph/1080/scale200_38.png deleted file mode 100644 index 34e844d5f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_38.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_39.png b/weather.openmeteo/resources/icons/graph/1080/scale200_39.png deleted file mode 100644 index bde37682a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_39.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_4.png b/weather.openmeteo/resources/icons/graph/1080/scale200_4.png deleted file mode 100644 index e6daaad6e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_40.png b/weather.openmeteo/resources/icons/graph/1080/scale200_40.png deleted file mode 100644 index b274705da..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_40.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_41.png b/weather.openmeteo/resources/icons/graph/1080/scale200_41.png deleted file mode 100644 index b274705da..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_41.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_42.png b/weather.openmeteo/resources/icons/graph/1080/scale200_42.png deleted file mode 100644 index 831dfc27b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_42.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_43.png b/weather.openmeteo/resources/icons/graph/1080/scale200_43.png deleted file mode 100644 index ed2c7e337..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_43.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_44.png b/weather.openmeteo/resources/icons/graph/1080/scale200_44.png deleted file mode 100644 index ed2c7e337..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_44.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_45.png b/weather.openmeteo/resources/icons/graph/1080/scale200_45.png deleted file mode 100644 index ed2c7e337..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_45.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_46.png b/weather.openmeteo/resources/icons/graph/1080/scale200_46.png deleted file mode 100644 index f30fb016b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_46.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_47.png b/weather.openmeteo/resources/icons/graph/1080/scale200_47.png deleted file mode 100644 index 5771bfa54..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_47.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_48.png b/weather.openmeteo/resources/icons/graph/1080/scale200_48.png deleted file mode 100644 index 5771bfa54..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_48.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_49.png b/weather.openmeteo/resources/icons/graph/1080/scale200_49.png deleted file mode 100644 index 5771bfa54..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_49.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_5.png b/weather.openmeteo/resources/icons/graph/1080/scale200_5.png deleted file mode 100644 index 275245344..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_50.png b/weather.openmeteo/resources/icons/graph/1080/scale200_50.png deleted file mode 100644 index b1352e572..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_50.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_51.png b/weather.openmeteo/resources/icons/graph/1080/scale200_51.png deleted file mode 100644 index a02321c7e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_51.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_52.png b/weather.openmeteo/resources/icons/graph/1080/scale200_52.png deleted file mode 100644 index a02321c7e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_52.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_53.png b/weather.openmeteo/resources/icons/graph/1080/scale200_53.png deleted file mode 100644 index 4a3187ed2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_53.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_54.png b/weather.openmeteo/resources/icons/graph/1080/scale200_54.png deleted file mode 100644 index 7258c5cfa..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_54.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_55.png b/weather.openmeteo/resources/icons/graph/1080/scale200_55.png deleted file mode 100644 index 12203267c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_55.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_56.png b/weather.openmeteo/resources/icons/graph/1080/scale200_56.png deleted file mode 100644 index d44f7c59d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_56.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_57.png b/weather.openmeteo/resources/icons/graph/1080/scale200_57.png deleted file mode 100644 index d44f7c59d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_57.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_58.png b/weather.openmeteo/resources/icons/graph/1080/scale200_58.png deleted file mode 100644 index 42257d886..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_58.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_59.png b/weather.openmeteo/resources/icons/graph/1080/scale200_59.png deleted file mode 100644 index f098ab5f9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_59.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_6.png b/weather.openmeteo/resources/icons/graph/1080/scale200_6.png deleted file mode 100644 index 51beaa9de..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_60.png b/weather.openmeteo/resources/icons/graph/1080/scale200_60.png deleted file mode 100644 index f098ab5f9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_60.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_61.png b/weather.openmeteo/resources/icons/graph/1080/scale200_61.png deleted file mode 100644 index f098ab5f9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_61.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_62.png b/weather.openmeteo/resources/icons/graph/1080/scale200_62.png deleted file mode 100644 index b3fcc788d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_62.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_63.png b/weather.openmeteo/resources/icons/graph/1080/scale200_63.png deleted file mode 100644 index f08b552b3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_63.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_64.png b/weather.openmeteo/resources/icons/graph/1080/scale200_64.png deleted file mode 100644 index f08b552b3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_64.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_65.png b/weather.openmeteo/resources/icons/graph/1080/scale200_65.png deleted file mode 100644 index f08b552b3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_65.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_66.png b/weather.openmeteo/resources/icons/graph/1080/scale200_66.png deleted file mode 100644 index f10e078ce..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_66.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_67.png b/weather.openmeteo/resources/icons/graph/1080/scale200_67.png deleted file mode 100644 index db786cc78..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_67.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_68.png b/weather.openmeteo/resources/icons/graph/1080/scale200_68.png deleted file mode 100644 index db786cc78..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_68.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_69.png b/weather.openmeteo/resources/icons/graph/1080/scale200_69.png deleted file mode 100644 index 34c7f6eef..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_69.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_7.png b/weather.openmeteo/resources/icons/graph/1080/scale200_7.png deleted file mode 100644 index 9ba338f26..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_70.png b/weather.openmeteo/resources/icons/graph/1080/scale200_70.png deleted file mode 100644 index cf7611b53..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_70.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_71.png b/weather.openmeteo/resources/icons/graph/1080/scale200_71.png deleted file mode 100644 index ff295637a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_71.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_72.png b/weather.openmeteo/resources/icons/graph/1080/scale200_72.png deleted file mode 100644 index 6be5851b4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_72.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_73.png b/weather.openmeteo/resources/icons/graph/1080/scale200_73.png deleted file mode 100644 index 6be5851b4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_73.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_74.png b/weather.openmeteo/resources/icons/graph/1080/scale200_74.png deleted file mode 100644 index 403c7fd44..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_74.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_75.png b/weather.openmeteo/resources/icons/graph/1080/scale200_75.png deleted file mode 100644 index 597cdee06..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_75.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_76.png b/weather.openmeteo/resources/icons/graph/1080/scale200_76.png deleted file mode 100644 index 597cdee06..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_76.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_77.png b/weather.openmeteo/resources/icons/graph/1080/scale200_77.png deleted file mode 100644 index 597cdee06..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_77.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_78.png b/weather.openmeteo/resources/icons/graph/1080/scale200_78.png deleted file mode 100644 index 94679bd15..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_78.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_79.png b/weather.openmeteo/resources/icons/graph/1080/scale200_79.png deleted file mode 100644 index 178debc3f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_79.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_8.png b/weather.openmeteo/resources/icons/graph/1080/scale200_8.png deleted file mode 100644 index 2e4343ad5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_80.png b/weather.openmeteo/resources/icons/graph/1080/scale200_80.png deleted file mode 100644 index 178debc3f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_80.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_81.png b/weather.openmeteo/resources/icons/graph/1080/scale200_81.png deleted file mode 100644 index 178debc3f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_81.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_82.png b/weather.openmeteo/resources/icons/graph/1080/scale200_82.png deleted file mode 100644 index 348ac5d53..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_82.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_83.png b/weather.openmeteo/resources/icons/graph/1080/scale200_83.png deleted file mode 100644 index ddf2e9fbe..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_83.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_84.png b/weather.openmeteo/resources/icons/graph/1080/scale200_84.png deleted file mode 100644 index ddf2e9fbe..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_84.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_85.png b/weather.openmeteo/resources/icons/graph/1080/scale200_85.png deleted file mode 100644 index 771d6a43d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_85.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_86.png b/weather.openmeteo/resources/icons/graph/1080/scale200_86.png deleted file mode 100644 index da7d61f58..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_86.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_87.png b/weather.openmeteo/resources/icons/graph/1080/scale200_87.png deleted file mode 100644 index 3ed9e3c00..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_87.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_88.png b/weather.openmeteo/resources/icons/graph/1080/scale200_88.png deleted file mode 100644 index 6c948b61f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_88.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_89.png b/weather.openmeteo/resources/icons/graph/1080/scale200_89.png deleted file mode 100644 index 6c948b61f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_89.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_9.png b/weather.openmeteo/resources/icons/graph/1080/scale200_9.png deleted file mode 100644 index 2e4343ad5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_90.png b/weather.openmeteo/resources/icons/graph/1080/scale200_90.png deleted file mode 100644 index 2f18d1b33..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_90.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_91.png b/weather.openmeteo/resources/icons/graph/1080/scale200_91.png deleted file mode 100644 index 7f3dfe952..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_91.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_92.png b/weather.openmeteo/resources/icons/graph/1080/scale200_92.png deleted file mode 100644 index 7f3dfe952..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_92.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_93.png b/weather.openmeteo/resources/icons/graph/1080/scale200_93.png deleted file mode 100644 index 7f3dfe952..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_93.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_94.png b/weather.openmeteo/resources/icons/graph/1080/scale200_94.png deleted file mode 100644 index d88897087..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_94.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_95.png b/weather.openmeteo/resources/icons/graph/1080/scale200_95.png deleted file mode 100644 index 0d7299a3e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_95.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_96.png b/weather.openmeteo/resources/icons/graph/1080/scale200_96.png deleted file mode 100644 index 0d7299a3e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_96.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_97.png b/weather.openmeteo/resources/icons/graph/1080/scale200_97.png deleted file mode 100644 index 0d7299a3e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_97.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_98.png b/weather.openmeteo/resources/icons/graph/1080/scale200_98.png deleted file mode 100644 index a21b89d76..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_98.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale200_99.png b/weather.openmeteo/resources/icons/graph/1080/scale200_99.png deleted file mode 100644 index 1ef8a1b47..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale200_99.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale20_0.png b/weather.openmeteo/resources/icons/graph/1080/scale20_0.png deleted file mode 100644 index 6f1da6fa8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale20_0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale20_1.png b/weather.openmeteo/resources/icons/graph/1080/scale20_1.png deleted file mode 100644 index 2a0825db0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale20_1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale20_10.png b/weather.openmeteo/resources/icons/graph/1080/scale20_10.png deleted file mode 100644 index 04bf0c097..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale20_10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale20_11.png b/weather.openmeteo/resources/icons/graph/1080/scale20_11.png deleted file mode 100644 index 5f5214bc3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale20_11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale20_12.png b/weather.openmeteo/resources/icons/graph/1080/scale20_12.png deleted file mode 100644 index 8ed1d2698..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale20_12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale20_13.png b/weather.openmeteo/resources/icons/graph/1080/scale20_13.png deleted file mode 100644 index 22e4269e1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale20_13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale20_14.png b/weather.openmeteo/resources/icons/graph/1080/scale20_14.png deleted file mode 100644 index d50687747..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale20_14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale20_15.png b/weather.openmeteo/resources/icons/graph/1080/scale20_15.png deleted file mode 100644 index 6a8b0fb32..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale20_15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale20_16.png b/weather.openmeteo/resources/icons/graph/1080/scale20_16.png deleted file mode 100644 index e697d584b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale20_16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale20_17.png b/weather.openmeteo/resources/icons/graph/1080/scale20_17.png deleted file mode 100644 index fb6696e3d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale20_17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale20_18.png b/weather.openmeteo/resources/icons/graph/1080/scale20_18.png deleted file mode 100644 index 4f27a3892..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale20_18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale20_19.png b/weather.openmeteo/resources/icons/graph/1080/scale20_19.png deleted file mode 100644 index 24275add8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale20_19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale20_2.png b/weather.openmeteo/resources/icons/graph/1080/scale20_2.png deleted file mode 100644 index 1d1bb2813..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale20_2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale20_20.png b/weather.openmeteo/resources/icons/graph/1080/scale20_20.png deleted file mode 100644 index 810c7af83..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale20_20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale20_3.png b/weather.openmeteo/resources/icons/graph/1080/scale20_3.png deleted file mode 100644 index 546e3ca06..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale20_3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale20_4.png b/weather.openmeteo/resources/icons/graph/1080/scale20_4.png deleted file mode 100644 index 894436e94..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale20_4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale20_5.png b/weather.openmeteo/resources/icons/graph/1080/scale20_5.png deleted file mode 100644 index b1d5ece12..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale20_5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale20_6.png b/weather.openmeteo/resources/icons/graph/1080/scale20_6.png deleted file mode 100644 index c1c2bc6ea..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale20_6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale20_7.png b/weather.openmeteo/resources/icons/graph/1080/scale20_7.png deleted file mode 100644 index 7911c9a0d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale20_7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale20_8.png b/weather.openmeteo/resources/icons/graph/1080/scale20_8.png deleted file mode 100644 index 327b9a11e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale20_8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale20_9.png b/weather.openmeteo/resources/icons/graph/1080/scale20_9.png deleted file mode 100644 index c3cc6da06..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale20_9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale30_0.png b/weather.openmeteo/resources/icons/graph/1080/scale30_0.png deleted file mode 100644 index 10a527057..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale30_0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale30_1.png b/weather.openmeteo/resources/icons/graph/1080/scale30_1.png deleted file mode 100644 index cce57a265..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale30_1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale30_10.png b/weather.openmeteo/resources/icons/graph/1080/scale30_10.png deleted file mode 100644 index 20ac341ab..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale30_10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale30_11.png b/weather.openmeteo/resources/icons/graph/1080/scale30_11.png deleted file mode 100644 index 3332d3e01..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale30_11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale30_12.png b/weather.openmeteo/resources/icons/graph/1080/scale30_12.png deleted file mode 100644 index 1d2cf5987..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale30_12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale30_13.png b/weather.openmeteo/resources/icons/graph/1080/scale30_13.png deleted file mode 100644 index 83a9714f5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale30_13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale30_14.png b/weather.openmeteo/resources/icons/graph/1080/scale30_14.png deleted file mode 100644 index 39b8a41e7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale30_14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale30_15.png b/weather.openmeteo/resources/icons/graph/1080/scale30_15.png deleted file mode 100644 index 31b87284b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale30_15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale30_16.png b/weather.openmeteo/resources/icons/graph/1080/scale30_16.png deleted file mode 100644 index ab547719a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale30_16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale30_17.png b/weather.openmeteo/resources/icons/graph/1080/scale30_17.png deleted file mode 100644 index 6faab0422..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale30_17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale30_18.png b/weather.openmeteo/resources/icons/graph/1080/scale30_18.png deleted file mode 100644 index 4fb785512..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale30_18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale30_19.png b/weather.openmeteo/resources/icons/graph/1080/scale30_19.png deleted file mode 100644 index bfdd669cb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale30_19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale30_2.png b/weather.openmeteo/resources/icons/graph/1080/scale30_2.png deleted file mode 100644 index b0d36d891..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale30_2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale30_20.png b/weather.openmeteo/resources/icons/graph/1080/scale30_20.png deleted file mode 100644 index 41577f44b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale30_20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale30_21.png b/weather.openmeteo/resources/icons/graph/1080/scale30_21.png deleted file mode 100644 index 400de44c9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale30_21.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale30_22.png b/weather.openmeteo/resources/icons/graph/1080/scale30_22.png deleted file mode 100644 index bd1787628..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale30_22.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale30_23.png b/weather.openmeteo/resources/icons/graph/1080/scale30_23.png deleted file mode 100644 index a4396df39..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale30_23.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale30_24.png b/weather.openmeteo/resources/icons/graph/1080/scale30_24.png deleted file mode 100644 index e01a67359..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale30_24.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale30_25.png b/weather.openmeteo/resources/icons/graph/1080/scale30_25.png deleted file mode 100644 index 1a6908fff..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale30_25.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale30_26.png b/weather.openmeteo/resources/icons/graph/1080/scale30_26.png deleted file mode 100644 index caad7879c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale30_26.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale30_27.png b/weather.openmeteo/resources/icons/graph/1080/scale30_27.png deleted file mode 100644 index 43b1ce390..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale30_27.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale30_28.png b/weather.openmeteo/resources/icons/graph/1080/scale30_28.png deleted file mode 100644 index 963c2ff25..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale30_28.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale30_29.png b/weather.openmeteo/resources/icons/graph/1080/scale30_29.png deleted file mode 100644 index dfacdfe59..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale30_29.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale30_3.png b/weather.openmeteo/resources/icons/graph/1080/scale30_3.png deleted file mode 100644 index 9959ddf71..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale30_3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale30_30.png b/weather.openmeteo/resources/icons/graph/1080/scale30_30.png deleted file mode 100644 index 6fb65c835..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale30_30.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale30_4.png b/weather.openmeteo/resources/icons/graph/1080/scale30_4.png deleted file mode 100644 index 82ca1dfa0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale30_4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale30_5.png b/weather.openmeteo/resources/icons/graph/1080/scale30_5.png deleted file mode 100644 index 6d3193f32..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale30_5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale30_6.png b/weather.openmeteo/resources/icons/graph/1080/scale30_6.png deleted file mode 100644 index b6b2e8799..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale30_6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale30_7.png b/weather.openmeteo/resources/icons/graph/1080/scale30_7.png deleted file mode 100644 index 5477d6d27..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale30_7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale30_8.png b/weather.openmeteo/resources/icons/graph/1080/scale30_8.png deleted file mode 100644 index 219237642..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale30_8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale30_9.png b/weather.openmeteo/resources/icons/graph/1080/scale30_9.png deleted file mode 100644 index 12e90e584..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale30_9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale40_0.png b/weather.openmeteo/resources/icons/graph/1080/scale40_0.png deleted file mode 100644 index 4fd717448..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale40_0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale40_1.png b/weather.openmeteo/resources/icons/graph/1080/scale40_1.png deleted file mode 100644 index 55e75b7bd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale40_1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale40_10.png b/weather.openmeteo/resources/icons/graph/1080/scale40_10.png deleted file mode 100644 index 71a9582fa..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale40_10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale40_11.png b/weather.openmeteo/resources/icons/graph/1080/scale40_11.png deleted file mode 100644 index d7ef3618a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale40_11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale40_12.png b/weather.openmeteo/resources/icons/graph/1080/scale40_12.png deleted file mode 100644 index 5e9634c51..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale40_12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale40_13.png b/weather.openmeteo/resources/icons/graph/1080/scale40_13.png deleted file mode 100644 index 3361d4ba7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale40_13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale40_14.png b/weather.openmeteo/resources/icons/graph/1080/scale40_14.png deleted file mode 100644 index c639d8e24..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale40_14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale40_15.png b/weather.openmeteo/resources/icons/graph/1080/scale40_15.png deleted file mode 100644 index a72789299..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale40_15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale40_16.png b/weather.openmeteo/resources/icons/graph/1080/scale40_16.png deleted file mode 100644 index 7e521cafc..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale40_16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale40_17.png b/weather.openmeteo/resources/icons/graph/1080/scale40_17.png deleted file mode 100644 index 32508caa1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale40_17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale40_18.png b/weather.openmeteo/resources/icons/graph/1080/scale40_18.png deleted file mode 100644 index 743ebdd83..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale40_18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale40_19.png b/weather.openmeteo/resources/icons/graph/1080/scale40_19.png deleted file mode 100644 index 86955572b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale40_19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale40_2.png b/weather.openmeteo/resources/icons/graph/1080/scale40_2.png deleted file mode 100644 index fc326bdfe..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale40_2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale40_20.png b/weather.openmeteo/resources/icons/graph/1080/scale40_20.png deleted file mode 100644 index 4e65f1fb7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale40_20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale40_21.png b/weather.openmeteo/resources/icons/graph/1080/scale40_21.png deleted file mode 100644 index 279322369..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale40_21.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale40_22.png b/weather.openmeteo/resources/icons/graph/1080/scale40_22.png deleted file mode 100644 index c86196c90..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale40_22.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale40_23.png b/weather.openmeteo/resources/icons/graph/1080/scale40_23.png deleted file mode 100644 index a506a2b9a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale40_23.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale40_24.png b/weather.openmeteo/resources/icons/graph/1080/scale40_24.png deleted file mode 100644 index b7d64ac74..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale40_24.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale40_25.png b/weather.openmeteo/resources/icons/graph/1080/scale40_25.png deleted file mode 100644 index ceb3df8bd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale40_25.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale40_26.png b/weather.openmeteo/resources/icons/graph/1080/scale40_26.png deleted file mode 100644 index 87ff84b2b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale40_26.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale40_27.png b/weather.openmeteo/resources/icons/graph/1080/scale40_27.png deleted file mode 100644 index ff23934d8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale40_27.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale40_28.png b/weather.openmeteo/resources/icons/graph/1080/scale40_28.png deleted file mode 100644 index e5dabe8b5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale40_28.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale40_29.png b/weather.openmeteo/resources/icons/graph/1080/scale40_29.png deleted file mode 100644 index 2a0b6a705..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale40_29.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale40_3.png b/weather.openmeteo/resources/icons/graph/1080/scale40_3.png deleted file mode 100644 index 0b6f09691..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale40_3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale40_30.png b/weather.openmeteo/resources/icons/graph/1080/scale40_30.png deleted file mode 100644 index 12d801148..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale40_30.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale40_31.png b/weather.openmeteo/resources/icons/graph/1080/scale40_31.png deleted file mode 100644 index dba44e93e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale40_31.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale40_32.png b/weather.openmeteo/resources/icons/graph/1080/scale40_32.png deleted file mode 100644 index 30f42317e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale40_32.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale40_33.png b/weather.openmeteo/resources/icons/graph/1080/scale40_33.png deleted file mode 100644 index ccbe913d0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale40_33.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale40_34.png b/weather.openmeteo/resources/icons/graph/1080/scale40_34.png deleted file mode 100644 index a6acdefed..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale40_34.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale40_35.png b/weather.openmeteo/resources/icons/graph/1080/scale40_35.png deleted file mode 100644 index c7dd8ace2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale40_35.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale40_36.png b/weather.openmeteo/resources/icons/graph/1080/scale40_36.png deleted file mode 100644 index 3adc11e91..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale40_36.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale40_37.png b/weather.openmeteo/resources/icons/graph/1080/scale40_37.png deleted file mode 100644 index 7e506fb59..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale40_37.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale40_38.png b/weather.openmeteo/resources/icons/graph/1080/scale40_38.png deleted file mode 100644 index 98e0dbbc9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale40_38.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale40_39.png b/weather.openmeteo/resources/icons/graph/1080/scale40_39.png deleted file mode 100644 index 645142e96..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale40_39.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale40_4.png b/weather.openmeteo/resources/icons/graph/1080/scale40_4.png deleted file mode 100644 index f59bfbe65..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale40_4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale40_40.png b/weather.openmeteo/resources/icons/graph/1080/scale40_40.png deleted file mode 100644 index 3a482e0db..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale40_40.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale40_5.png b/weather.openmeteo/resources/icons/graph/1080/scale40_5.png deleted file mode 100644 index b1f6f78e6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale40_5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale40_6.png b/weather.openmeteo/resources/icons/graph/1080/scale40_6.png deleted file mode 100644 index 283e43f87..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale40_6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale40_7.png b/weather.openmeteo/resources/icons/graph/1080/scale40_7.png deleted file mode 100644 index 6496f5940..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale40_7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale40_8.png b/weather.openmeteo/resources/icons/graph/1080/scale40_8.png deleted file mode 100644 index 582b1d6cd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale40_8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale40_9.png b/weather.openmeteo/resources/icons/graph/1080/scale40_9.png deleted file mode 100644 index e892db891..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale40_9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale50_0.png b/weather.openmeteo/resources/icons/graph/1080/scale50_0.png deleted file mode 100644 index 0ae4e6af6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale50_0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale50_1.png b/weather.openmeteo/resources/icons/graph/1080/scale50_1.png deleted file mode 100644 index d0fb6c473..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale50_1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale50_10.png b/weather.openmeteo/resources/icons/graph/1080/scale50_10.png deleted file mode 100644 index 96e1d05d5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale50_10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale50_11.png b/weather.openmeteo/resources/icons/graph/1080/scale50_11.png deleted file mode 100644 index bb75dedfe..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale50_11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale50_12.png b/weather.openmeteo/resources/icons/graph/1080/scale50_12.png deleted file mode 100644 index a7eeae244..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale50_12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale50_13.png b/weather.openmeteo/resources/icons/graph/1080/scale50_13.png deleted file mode 100644 index 51845c907..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale50_13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale50_14.png b/weather.openmeteo/resources/icons/graph/1080/scale50_14.png deleted file mode 100644 index ef8428c1d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale50_14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale50_15.png b/weather.openmeteo/resources/icons/graph/1080/scale50_15.png deleted file mode 100644 index eebea2b35..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale50_15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale50_16.png b/weather.openmeteo/resources/icons/graph/1080/scale50_16.png deleted file mode 100644 index ac7dfa6ae..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale50_16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale50_17.png b/weather.openmeteo/resources/icons/graph/1080/scale50_17.png deleted file mode 100644 index 5d95ee566..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale50_17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale50_18.png b/weather.openmeteo/resources/icons/graph/1080/scale50_18.png deleted file mode 100644 index b72d50439..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale50_18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale50_19.png b/weather.openmeteo/resources/icons/graph/1080/scale50_19.png deleted file mode 100644 index 9ca4d6482..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale50_19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale50_2.png b/weather.openmeteo/resources/icons/graph/1080/scale50_2.png deleted file mode 100644 index 8f72a80cb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale50_2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale50_20.png b/weather.openmeteo/resources/icons/graph/1080/scale50_20.png deleted file mode 100644 index 98db77d4e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale50_20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale50_21.png b/weather.openmeteo/resources/icons/graph/1080/scale50_21.png deleted file mode 100644 index 02003f551..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale50_21.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale50_22.png b/weather.openmeteo/resources/icons/graph/1080/scale50_22.png deleted file mode 100644 index b8346c2f2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale50_22.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale50_23.png b/weather.openmeteo/resources/icons/graph/1080/scale50_23.png deleted file mode 100644 index dacbd3eb3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale50_23.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale50_24.png b/weather.openmeteo/resources/icons/graph/1080/scale50_24.png deleted file mode 100644 index 4aad2bcc4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale50_24.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale50_25.png b/weather.openmeteo/resources/icons/graph/1080/scale50_25.png deleted file mode 100644 index eab326525..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale50_25.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale50_26.png b/weather.openmeteo/resources/icons/graph/1080/scale50_26.png deleted file mode 100644 index 54683c350..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale50_26.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale50_27.png b/weather.openmeteo/resources/icons/graph/1080/scale50_27.png deleted file mode 100644 index b61556ed8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale50_27.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale50_28.png b/weather.openmeteo/resources/icons/graph/1080/scale50_28.png deleted file mode 100644 index 0fed191e2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale50_28.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale50_29.png b/weather.openmeteo/resources/icons/graph/1080/scale50_29.png deleted file mode 100644 index 3c30f730b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale50_29.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale50_3.png b/weather.openmeteo/resources/icons/graph/1080/scale50_3.png deleted file mode 100644 index 9f824575a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale50_3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale50_30.png b/weather.openmeteo/resources/icons/graph/1080/scale50_30.png deleted file mode 100644 index 1afe20788..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale50_30.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale50_31.png b/weather.openmeteo/resources/icons/graph/1080/scale50_31.png deleted file mode 100644 index 9fa40c332..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale50_31.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale50_32.png b/weather.openmeteo/resources/icons/graph/1080/scale50_32.png deleted file mode 100644 index bc16519a1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale50_32.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale50_33.png b/weather.openmeteo/resources/icons/graph/1080/scale50_33.png deleted file mode 100644 index 8695a08d2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale50_33.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale50_34.png b/weather.openmeteo/resources/icons/graph/1080/scale50_34.png deleted file mode 100644 index 56754db82..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale50_34.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale50_35.png b/weather.openmeteo/resources/icons/graph/1080/scale50_35.png deleted file mode 100644 index 93252bd66..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale50_35.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale50_36.png b/weather.openmeteo/resources/icons/graph/1080/scale50_36.png deleted file mode 100644 index dcd7be6a3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale50_36.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale50_37.png b/weather.openmeteo/resources/icons/graph/1080/scale50_37.png deleted file mode 100644 index 7b75f0b6c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale50_37.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale50_38.png b/weather.openmeteo/resources/icons/graph/1080/scale50_38.png deleted file mode 100644 index ba1673088..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale50_38.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale50_39.png b/weather.openmeteo/resources/icons/graph/1080/scale50_39.png deleted file mode 100644 index 6adf56aa2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale50_39.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale50_4.png b/weather.openmeteo/resources/icons/graph/1080/scale50_4.png deleted file mode 100644 index a7f3286ff..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale50_4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale50_40.png b/weather.openmeteo/resources/icons/graph/1080/scale50_40.png deleted file mode 100644 index b9ba575b2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale50_40.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale50_41.png b/weather.openmeteo/resources/icons/graph/1080/scale50_41.png deleted file mode 100644 index 66e9ff3d7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale50_41.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale50_42.png b/weather.openmeteo/resources/icons/graph/1080/scale50_42.png deleted file mode 100644 index c3b085691..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale50_42.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale50_43.png b/weather.openmeteo/resources/icons/graph/1080/scale50_43.png deleted file mode 100644 index 4864ece2c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale50_43.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale50_44.png b/weather.openmeteo/resources/icons/graph/1080/scale50_44.png deleted file mode 100644 index dd223b1b8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale50_44.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale50_45.png b/weather.openmeteo/resources/icons/graph/1080/scale50_45.png deleted file mode 100644 index 0c284fb79..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale50_45.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale50_46.png b/weather.openmeteo/resources/icons/graph/1080/scale50_46.png deleted file mode 100644 index 9fcdc015f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale50_46.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale50_47.png b/weather.openmeteo/resources/icons/graph/1080/scale50_47.png deleted file mode 100644 index 835f8e1f4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale50_47.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale50_48.png b/weather.openmeteo/resources/icons/graph/1080/scale50_48.png deleted file mode 100644 index 0784c9e5a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale50_48.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale50_49.png b/weather.openmeteo/resources/icons/graph/1080/scale50_49.png deleted file mode 100644 index 4035a5b8c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale50_49.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale50_5.png b/weather.openmeteo/resources/icons/graph/1080/scale50_5.png deleted file mode 100644 index d7be69ae0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale50_5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale50_50.png b/weather.openmeteo/resources/icons/graph/1080/scale50_50.png deleted file mode 100644 index dc89bbab8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale50_50.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale50_6.png b/weather.openmeteo/resources/icons/graph/1080/scale50_6.png deleted file mode 100644 index abe7586d9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale50_6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale50_7.png b/weather.openmeteo/resources/icons/graph/1080/scale50_7.png deleted file mode 100644 index 7c1db44a0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale50_7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale50_8.png b/weather.openmeteo/resources/icons/graph/1080/scale50_8.png deleted file mode 100644 index aa0926131..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale50_8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale50_9.png b/weather.openmeteo/resources/icons/graph/1080/scale50_9.png deleted file mode 100644 index fe4967800..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale50_9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale60_0.png b/weather.openmeteo/resources/icons/graph/1080/scale60_0.png deleted file mode 100644 index 7325d57ad..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale60_0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale60_1.png b/weather.openmeteo/resources/icons/graph/1080/scale60_1.png deleted file mode 100644 index 94cb132b0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale60_1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale60_10.png b/weather.openmeteo/resources/icons/graph/1080/scale60_10.png deleted file mode 100644 index 990a34cb1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale60_10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale60_11.png b/weather.openmeteo/resources/icons/graph/1080/scale60_11.png deleted file mode 100644 index 83749143b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale60_11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale60_12.png b/weather.openmeteo/resources/icons/graph/1080/scale60_12.png deleted file mode 100644 index 938ad6fee..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale60_12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale60_13.png b/weather.openmeteo/resources/icons/graph/1080/scale60_13.png deleted file mode 100644 index b28d908eb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale60_13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale60_14.png b/weather.openmeteo/resources/icons/graph/1080/scale60_14.png deleted file mode 100644 index 44899b47f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale60_14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale60_15.png b/weather.openmeteo/resources/icons/graph/1080/scale60_15.png deleted file mode 100644 index 3b689b6ec..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale60_15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale60_16.png b/weather.openmeteo/resources/icons/graph/1080/scale60_16.png deleted file mode 100644 index da32c9b9d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale60_16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale60_17.png b/weather.openmeteo/resources/icons/graph/1080/scale60_17.png deleted file mode 100644 index 099cec7b7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale60_17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale60_18.png b/weather.openmeteo/resources/icons/graph/1080/scale60_18.png deleted file mode 100644 index e5cd83d8a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale60_18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale60_19.png b/weather.openmeteo/resources/icons/graph/1080/scale60_19.png deleted file mode 100644 index 729f73b15..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale60_19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale60_2.png b/weather.openmeteo/resources/icons/graph/1080/scale60_2.png deleted file mode 100644 index 2308a4795..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale60_2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale60_20.png b/weather.openmeteo/resources/icons/graph/1080/scale60_20.png deleted file mode 100644 index 109115de7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale60_20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale60_21.png b/weather.openmeteo/resources/icons/graph/1080/scale60_21.png deleted file mode 100644 index a9d07892c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale60_21.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale60_22.png b/weather.openmeteo/resources/icons/graph/1080/scale60_22.png deleted file mode 100644 index 990c8fd98..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale60_22.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale60_23.png b/weather.openmeteo/resources/icons/graph/1080/scale60_23.png deleted file mode 100644 index 422c64a43..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale60_23.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale60_24.png b/weather.openmeteo/resources/icons/graph/1080/scale60_24.png deleted file mode 100644 index 0730a8d1a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale60_24.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale60_25.png b/weather.openmeteo/resources/icons/graph/1080/scale60_25.png deleted file mode 100644 index ebd015d26..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale60_25.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale60_26.png b/weather.openmeteo/resources/icons/graph/1080/scale60_26.png deleted file mode 100644 index f6ad98c64..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale60_26.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale60_27.png b/weather.openmeteo/resources/icons/graph/1080/scale60_27.png deleted file mode 100644 index ddcc37e6a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale60_27.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale60_28.png b/weather.openmeteo/resources/icons/graph/1080/scale60_28.png deleted file mode 100644 index 23d8bc389..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale60_28.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale60_29.png b/weather.openmeteo/resources/icons/graph/1080/scale60_29.png deleted file mode 100644 index 8400f40f1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale60_29.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale60_3.png b/weather.openmeteo/resources/icons/graph/1080/scale60_3.png deleted file mode 100644 index 919943f16..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale60_3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale60_30.png b/weather.openmeteo/resources/icons/graph/1080/scale60_30.png deleted file mode 100644 index d78faddac..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale60_30.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale60_31.png b/weather.openmeteo/resources/icons/graph/1080/scale60_31.png deleted file mode 100644 index 0068e3088..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale60_31.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale60_32.png b/weather.openmeteo/resources/icons/graph/1080/scale60_32.png deleted file mode 100644 index 9c1c02476..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale60_32.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale60_33.png b/weather.openmeteo/resources/icons/graph/1080/scale60_33.png deleted file mode 100644 index c42bf323c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale60_33.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale60_34.png b/weather.openmeteo/resources/icons/graph/1080/scale60_34.png deleted file mode 100644 index 1678ef0a6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale60_34.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale60_35.png b/weather.openmeteo/resources/icons/graph/1080/scale60_35.png deleted file mode 100644 index 80bd79080..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale60_35.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale60_36.png b/weather.openmeteo/resources/icons/graph/1080/scale60_36.png deleted file mode 100644 index 51f634748..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale60_36.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale60_37.png b/weather.openmeteo/resources/icons/graph/1080/scale60_37.png deleted file mode 100644 index 60db80a8c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale60_37.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale60_38.png b/weather.openmeteo/resources/icons/graph/1080/scale60_38.png deleted file mode 100644 index af1b01ffc..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale60_38.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale60_39.png b/weather.openmeteo/resources/icons/graph/1080/scale60_39.png deleted file mode 100644 index ad286a91f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale60_39.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale60_4.png b/weather.openmeteo/resources/icons/graph/1080/scale60_4.png deleted file mode 100644 index fa2dbe376..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale60_4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale60_40.png b/weather.openmeteo/resources/icons/graph/1080/scale60_40.png deleted file mode 100644 index 21138de03..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale60_40.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale60_41.png b/weather.openmeteo/resources/icons/graph/1080/scale60_41.png deleted file mode 100644 index d568393f7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale60_41.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale60_42.png b/weather.openmeteo/resources/icons/graph/1080/scale60_42.png deleted file mode 100644 index c413a8c99..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale60_42.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale60_43.png b/weather.openmeteo/resources/icons/graph/1080/scale60_43.png deleted file mode 100644 index 14357f6ea..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale60_43.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale60_44.png b/weather.openmeteo/resources/icons/graph/1080/scale60_44.png deleted file mode 100644 index 8aa44e328..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale60_44.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale60_45.png b/weather.openmeteo/resources/icons/graph/1080/scale60_45.png deleted file mode 100644 index d50bef76f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale60_45.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale60_46.png b/weather.openmeteo/resources/icons/graph/1080/scale60_46.png deleted file mode 100644 index 94213b070..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale60_46.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale60_47.png b/weather.openmeteo/resources/icons/graph/1080/scale60_47.png deleted file mode 100644 index 37361b89b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale60_47.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale60_48.png b/weather.openmeteo/resources/icons/graph/1080/scale60_48.png deleted file mode 100644 index 91ea10586..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale60_48.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale60_49.png b/weather.openmeteo/resources/icons/graph/1080/scale60_49.png deleted file mode 100644 index b0db30b99..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale60_49.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale60_5.png b/weather.openmeteo/resources/icons/graph/1080/scale60_5.png deleted file mode 100644 index 1f0c63fa7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale60_5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale60_50.png b/weather.openmeteo/resources/icons/graph/1080/scale60_50.png deleted file mode 100644 index a06c42518..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale60_50.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale60_51.png b/weather.openmeteo/resources/icons/graph/1080/scale60_51.png deleted file mode 100644 index a5bdb0077..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale60_51.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale60_52.png b/weather.openmeteo/resources/icons/graph/1080/scale60_52.png deleted file mode 100644 index 5a390f520..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale60_52.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale60_53.png b/weather.openmeteo/resources/icons/graph/1080/scale60_53.png deleted file mode 100644 index 94881d74d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale60_53.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale60_54.png b/weather.openmeteo/resources/icons/graph/1080/scale60_54.png deleted file mode 100644 index 8dcd6e5b3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale60_54.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale60_55.png b/weather.openmeteo/resources/icons/graph/1080/scale60_55.png deleted file mode 100644 index 1d42e1eb8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale60_55.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale60_56.png b/weather.openmeteo/resources/icons/graph/1080/scale60_56.png deleted file mode 100644 index 5e71ef1b9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale60_56.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale60_57.png b/weather.openmeteo/resources/icons/graph/1080/scale60_57.png deleted file mode 100644 index 06cfcf688..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale60_57.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale60_58.png b/weather.openmeteo/resources/icons/graph/1080/scale60_58.png deleted file mode 100644 index 20ba692ae..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale60_58.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale60_59.png b/weather.openmeteo/resources/icons/graph/1080/scale60_59.png deleted file mode 100644 index 21df95465..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale60_59.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale60_6.png b/weather.openmeteo/resources/icons/graph/1080/scale60_6.png deleted file mode 100644 index a3b0e4748..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale60_6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale60_60.png b/weather.openmeteo/resources/icons/graph/1080/scale60_60.png deleted file mode 100644 index c84997bc9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale60_60.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale60_7.png b/weather.openmeteo/resources/icons/graph/1080/scale60_7.png deleted file mode 100644 index c8c9a8697..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale60_7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale60_8.png b/weather.openmeteo/resources/icons/graph/1080/scale60_8.png deleted file mode 100644 index 7c4c5ff64..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale60_8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale60_9.png b/weather.openmeteo/resources/icons/graph/1080/scale60_9.png deleted file mode 100644 index 579cc7c8e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale60_9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale70_0.png b/weather.openmeteo/resources/icons/graph/1080/scale70_0.png deleted file mode 100644 index 1dc0e42c3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale70_0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale70_1.png b/weather.openmeteo/resources/icons/graph/1080/scale70_1.png deleted file mode 100644 index 1dc0e42c3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale70_1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale70_10.png b/weather.openmeteo/resources/icons/graph/1080/scale70_10.png deleted file mode 100644 index 3ef61b225..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale70_10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale70_11.png b/weather.openmeteo/resources/icons/graph/1080/scale70_11.png deleted file mode 100644 index dbd899ae5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale70_11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale70_12.png b/weather.openmeteo/resources/icons/graph/1080/scale70_12.png deleted file mode 100644 index 8a37afce8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale70_12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale70_13.png b/weather.openmeteo/resources/icons/graph/1080/scale70_13.png deleted file mode 100644 index 042f46633..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale70_13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale70_14.png b/weather.openmeteo/resources/icons/graph/1080/scale70_14.png deleted file mode 100644 index 22a9ad946..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale70_14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale70_15.png b/weather.openmeteo/resources/icons/graph/1080/scale70_15.png deleted file mode 100644 index 51430f541..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale70_15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale70_16.png b/weather.openmeteo/resources/icons/graph/1080/scale70_16.png deleted file mode 100644 index 4971a021f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale70_16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale70_17.png b/weather.openmeteo/resources/icons/graph/1080/scale70_17.png deleted file mode 100644 index 9d97477fc..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale70_17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale70_18.png b/weather.openmeteo/resources/icons/graph/1080/scale70_18.png deleted file mode 100644 index 06c554b57..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale70_18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale70_19.png b/weather.openmeteo/resources/icons/graph/1080/scale70_19.png deleted file mode 100644 index 8cdf72983..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale70_19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale70_2.png b/weather.openmeteo/resources/icons/graph/1080/scale70_2.png deleted file mode 100644 index 56c6a1c46..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale70_2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale70_20.png b/weather.openmeteo/resources/icons/graph/1080/scale70_20.png deleted file mode 100644 index ca1870459..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale70_20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale70_21.png b/weather.openmeteo/resources/icons/graph/1080/scale70_21.png deleted file mode 100644 index 78a48a619..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale70_21.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale70_22.png b/weather.openmeteo/resources/icons/graph/1080/scale70_22.png deleted file mode 100644 index 8abc1bee5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale70_22.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale70_23.png b/weather.openmeteo/resources/icons/graph/1080/scale70_23.png deleted file mode 100644 index b12351e3b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale70_23.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale70_24.png b/weather.openmeteo/resources/icons/graph/1080/scale70_24.png deleted file mode 100644 index b12e7aa8f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale70_24.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale70_25.png b/weather.openmeteo/resources/icons/graph/1080/scale70_25.png deleted file mode 100644 index 4dfde5859..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale70_25.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale70_26.png b/weather.openmeteo/resources/icons/graph/1080/scale70_26.png deleted file mode 100644 index 856ddbc81..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale70_26.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale70_27.png b/weather.openmeteo/resources/icons/graph/1080/scale70_27.png deleted file mode 100644 index 2043c8d1f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale70_27.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale70_28.png b/weather.openmeteo/resources/icons/graph/1080/scale70_28.png deleted file mode 100644 index 7a8136ad8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale70_28.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale70_29.png b/weather.openmeteo/resources/icons/graph/1080/scale70_29.png deleted file mode 100644 index b41161113..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale70_29.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale70_3.png b/weather.openmeteo/resources/icons/graph/1080/scale70_3.png deleted file mode 100644 index 0f471c14b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale70_3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale70_30.png b/weather.openmeteo/resources/icons/graph/1080/scale70_30.png deleted file mode 100644 index b5e72061f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale70_30.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale70_31.png b/weather.openmeteo/resources/icons/graph/1080/scale70_31.png deleted file mode 100644 index b2313506e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale70_31.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale70_32.png b/weather.openmeteo/resources/icons/graph/1080/scale70_32.png deleted file mode 100644 index 901ee3b0e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale70_32.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale70_33.png b/weather.openmeteo/resources/icons/graph/1080/scale70_33.png deleted file mode 100644 index 74cc1e882..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale70_33.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale70_34.png b/weather.openmeteo/resources/icons/graph/1080/scale70_34.png deleted file mode 100644 index 7414f93e8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale70_34.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale70_35.png b/weather.openmeteo/resources/icons/graph/1080/scale70_35.png deleted file mode 100644 index 1b3400af3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale70_35.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale70_36.png b/weather.openmeteo/resources/icons/graph/1080/scale70_36.png deleted file mode 100644 index 5abbf1280..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale70_36.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale70_37.png b/weather.openmeteo/resources/icons/graph/1080/scale70_37.png deleted file mode 100644 index 053c4a899..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale70_37.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale70_38.png b/weather.openmeteo/resources/icons/graph/1080/scale70_38.png deleted file mode 100644 index f8296cbad..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale70_38.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale70_39.png b/weather.openmeteo/resources/icons/graph/1080/scale70_39.png deleted file mode 100644 index bbd406b78..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale70_39.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale70_4.png b/weather.openmeteo/resources/icons/graph/1080/scale70_4.png deleted file mode 100644 index 36069ad52..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale70_4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale70_40.png b/weather.openmeteo/resources/icons/graph/1080/scale70_40.png deleted file mode 100644 index 0a2de44fd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale70_40.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale70_41.png b/weather.openmeteo/resources/icons/graph/1080/scale70_41.png deleted file mode 100644 index 2fcb43de5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale70_41.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale70_42.png b/weather.openmeteo/resources/icons/graph/1080/scale70_42.png deleted file mode 100644 index c4e0b6f64..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale70_42.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale70_43.png b/weather.openmeteo/resources/icons/graph/1080/scale70_43.png deleted file mode 100644 index d5caaacb2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale70_43.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale70_44.png b/weather.openmeteo/resources/icons/graph/1080/scale70_44.png deleted file mode 100644 index 7931b4256..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale70_44.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale70_45.png b/weather.openmeteo/resources/icons/graph/1080/scale70_45.png deleted file mode 100644 index 78849b163..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale70_45.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale70_46.png b/weather.openmeteo/resources/icons/graph/1080/scale70_46.png deleted file mode 100644 index 03b70fe96..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale70_46.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale70_47.png b/weather.openmeteo/resources/icons/graph/1080/scale70_47.png deleted file mode 100644 index 6742f6931..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale70_47.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale70_48.png b/weather.openmeteo/resources/icons/graph/1080/scale70_48.png deleted file mode 100644 index 79249ea53..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale70_48.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale70_49.png b/weather.openmeteo/resources/icons/graph/1080/scale70_49.png deleted file mode 100644 index def989a33..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale70_49.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale70_5.png b/weather.openmeteo/resources/icons/graph/1080/scale70_5.png deleted file mode 100644 index b4e1ac74c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale70_5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale70_50.png b/weather.openmeteo/resources/icons/graph/1080/scale70_50.png deleted file mode 100644 index bbf745872..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale70_50.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale70_51.png b/weather.openmeteo/resources/icons/graph/1080/scale70_51.png deleted file mode 100644 index c5ce9b52e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale70_51.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale70_52.png b/weather.openmeteo/resources/icons/graph/1080/scale70_52.png deleted file mode 100644 index 299e4517e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale70_52.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale70_53.png b/weather.openmeteo/resources/icons/graph/1080/scale70_53.png deleted file mode 100644 index 904dc3590..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale70_53.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale70_54.png b/weather.openmeteo/resources/icons/graph/1080/scale70_54.png deleted file mode 100644 index 0f22261f0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale70_54.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale70_55.png b/weather.openmeteo/resources/icons/graph/1080/scale70_55.png deleted file mode 100644 index cad06b489..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale70_55.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale70_56.png b/weather.openmeteo/resources/icons/graph/1080/scale70_56.png deleted file mode 100644 index ea3e9032f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale70_56.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale70_57.png b/weather.openmeteo/resources/icons/graph/1080/scale70_57.png deleted file mode 100644 index b0e6a9d4f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale70_57.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale70_58.png b/weather.openmeteo/resources/icons/graph/1080/scale70_58.png deleted file mode 100644 index f98e7f927..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale70_58.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale70_59.png b/weather.openmeteo/resources/icons/graph/1080/scale70_59.png deleted file mode 100644 index 3f024bf0c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale70_59.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale70_6.png b/weather.openmeteo/resources/icons/graph/1080/scale70_6.png deleted file mode 100644 index c2bc06c43..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale70_6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale70_60.png b/weather.openmeteo/resources/icons/graph/1080/scale70_60.png deleted file mode 100644 index cdbb459f8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale70_60.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale70_61.png b/weather.openmeteo/resources/icons/graph/1080/scale70_61.png deleted file mode 100644 index 154bec397..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale70_61.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale70_62.png b/weather.openmeteo/resources/icons/graph/1080/scale70_62.png deleted file mode 100644 index 5c0b004d7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale70_62.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale70_63.png b/weather.openmeteo/resources/icons/graph/1080/scale70_63.png deleted file mode 100644 index 7b43f0451..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale70_63.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale70_64.png b/weather.openmeteo/resources/icons/graph/1080/scale70_64.png deleted file mode 100644 index fba954469..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale70_64.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale70_65.png b/weather.openmeteo/resources/icons/graph/1080/scale70_65.png deleted file mode 100644 index d027fa93b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale70_65.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale70_66.png b/weather.openmeteo/resources/icons/graph/1080/scale70_66.png deleted file mode 100644 index 99f52fd6d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale70_66.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale70_67.png b/weather.openmeteo/resources/icons/graph/1080/scale70_67.png deleted file mode 100644 index 21204ebb8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale70_67.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale70_68.png b/weather.openmeteo/resources/icons/graph/1080/scale70_68.png deleted file mode 100644 index fa2c18432..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale70_68.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale70_69.png b/weather.openmeteo/resources/icons/graph/1080/scale70_69.png deleted file mode 100644 index 3c778c142..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale70_69.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale70_7.png b/weather.openmeteo/resources/icons/graph/1080/scale70_7.png deleted file mode 100644 index fa4f819b9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale70_7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale70_70.png b/weather.openmeteo/resources/icons/graph/1080/scale70_70.png deleted file mode 100644 index 9fbfd3a18..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale70_70.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale70_8.png b/weather.openmeteo/resources/icons/graph/1080/scale70_8.png deleted file mode 100644 index ee7296e7e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale70_8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale70_9.png b/weather.openmeteo/resources/icons/graph/1080/scale70_9.png deleted file mode 100644 index ae34fac44..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale70_9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_0.png b/weather.openmeteo/resources/icons/graph/1080/scale80_0.png deleted file mode 100644 index 8011f8a3d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_1.png b/weather.openmeteo/resources/icons/graph/1080/scale80_1.png deleted file mode 100644 index 6273314f2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_10.png b/weather.openmeteo/resources/icons/graph/1080/scale80_10.png deleted file mode 100644 index dfdcd5508..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_11.png b/weather.openmeteo/resources/icons/graph/1080/scale80_11.png deleted file mode 100644 index ff6722732..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_12.png b/weather.openmeteo/resources/icons/graph/1080/scale80_12.png deleted file mode 100644 index 0a0b92ee9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_13.png b/weather.openmeteo/resources/icons/graph/1080/scale80_13.png deleted file mode 100644 index 1489204e7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_14.png b/weather.openmeteo/resources/icons/graph/1080/scale80_14.png deleted file mode 100644 index 5092ecf42..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_15.png b/weather.openmeteo/resources/icons/graph/1080/scale80_15.png deleted file mode 100644 index e11f2892f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_16.png b/weather.openmeteo/resources/icons/graph/1080/scale80_16.png deleted file mode 100644 index 98d877985..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_17.png b/weather.openmeteo/resources/icons/graph/1080/scale80_17.png deleted file mode 100644 index 5b7fbd12b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_18.png b/weather.openmeteo/resources/icons/graph/1080/scale80_18.png deleted file mode 100644 index a291bba74..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_19.png b/weather.openmeteo/resources/icons/graph/1080/scale80_19.png deleted file mode 100644 index 6b23393f6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_2.png b/weather.openmeteo/resources/icons/graph/1080/scale80_2.png deleted file mode 100644 index 56c74659e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_20.png b/weather.openmeteo/resources/icons/graph/1080/scale80_20.png deleted file mode 100644 index 49bbc63bd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_21.png b/weather.openmeteo/resources/icons/graph/1080/scale80_21.png deleted file mode 100644 index 8f1887a15..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_21.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_22.png b/weather.openmeteo/resources/icons/graph/1080/scale80_22.png deleted file mode 100644 index 1ac393cad..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_22.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_23.png b/weather.openmeteo/resources/icons/graph/1080/scale80_23.png deleted file mode 100644 index a93ad935a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_23.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_24.png b/weather.openmeteo/resources/icons/graph/1080/scale80_24.png deleted file mode 100644 index bb4f6873b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_24.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_25.png b/weather.openmeteo/resources/icons/graph/1080/scale80_25.png deleted file mode 100644 index 4d6b3fdca..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_25.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_26.png b/weather.openmeteo/resources/icons/graph/1080/scale80_26.png deleted file mode 100644 index 7b5987188..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_26.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_27.png b/weather.openmeteo/resources/icons/graph/1080/scale80_27.png deleted file mode 100644 index e661651e3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_27.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_28.png b/weather.openmeteo/resources/icons/graph/1080/scale80_28.png deleted file mode 100644 index ef9a02ff6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_28.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_29.png b/weather.openmeteo/resources/icons/graph/1080/scale80_29.png deleted file mode 100644 index 07a35613d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_29.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_3.png b/weather.openmeteo/resources/icons/graph/1080/scale80_3.png deleted file mode 100644 index e4ea08484..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_30.png b/weather.openmeteo/resources/icons/graph/1080/scale80_30.png deleted file mode 100644 index 6f95ef250..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_30.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_31.png b/weather.openmeteo/resources/icons/graph/1080/scale80_31.png deleted file mode 100644 index fa62706e7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_31.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_32.png b/weather.openmeteo/resources/icons/graph/1080/scale80_32.png deleted file mode 100644 index c0c1d855c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_32.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_33.png b/weather.openmeteo/resources/icons/graph/1080/scale80_33.png deleted file mode 100644 index 10fc944f7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_33.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_34.png b/weather.openmeteo/resources/icons/graph/1080/scale80_34.png deleted file mode 100644 index 489cfbefe..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_34.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_35.png b/weather.openmeteo/resources/icons/graph/1080/scale80_35.png deleted file mode 100644 index cdfcb9307..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_35.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_36.png b/weather.openmeteo/resources/icons/graph/1080/scale80_36.png deleted file mode 100644 index fef1f3259..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_36.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_37.png b/weather.openmeteo/resources/icons/graph/1080/scale80_37.png deleted file mode 100644 index c9ee04be9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_37.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_38.png b/weather.openmeteo/resources/icons/graph/1080/scale80_38.png deleted file mode 100644 index d33976e08..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_38.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_39.png b/weather.openmeteo/resources/icons/graph/1080/scale80_39.png deleted file mode 100644 index aa90e0887..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_39.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_4.png b/weather.openmeteo/resources/icons/graph/1080/scale80_4.png deleted file mode 100644 index 92a8040dc..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_40.png b/weather.openmeteo/resources/icons/graph/1080/scale80_40.png deleted file mode 100644 index a4b74aba3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_40.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_41.png b/weather.openmeteo/resources/icons/graph/1080/scale80_41.png deleted file mode 100644 index 79e8e3cf7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_41.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_42.png b/weather.openmeteo/resources/icons/graph/1080/scale80_42.png deleted file mode 100644 index be8af4eff..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_42.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_43.png b/weather.openmeteo/resources/icons/graph/1080/scale80_43.png deleted file mode 100644 index 5a8408770..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_43.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_44.png b/weather.openmeteo/resources/icons/graph/1080/scale80_44.png deleted file mode 100644 index 34fa6e668..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_44.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_45.png b/weather.openmeteo/resources/icons/graph/1080/scale80_45.png deleted file mode 100644 index 909b99e6e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_45.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_46.png b/weather.openmeteo/resources/icons/graph/1080/scale80_46.png deleted file mode 100644 index b9c43cf2b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_46.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_47.png b/weather.openmeteo/resources/icons/graph/1080/scale80_47.png deleted file mode 100644 index fbc95e990..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_47.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_48.png b/weather.openmeteo/resources/icons/graph/1080/scale80_48.png deleted file mode 100644 index e4439de64..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_48.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_49.png b/weather.openmeteo/resources/icons/graph/1080/scale80_49.png deleted file mode 100644 index 9641e4f5e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_49.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_5.png b/weather.openmeteo/resources/icons/graph/1080/scale80_5.png deleted file mode 100644 index 8d309e7fd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_50.png b/weather.openmeteo/resources/icons/graph/1080/scale80_50.png deleted file mode 100644 index 029c308ec..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_50.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_51.png b/weather.openmeteo/resources/icons/graph/1080/scale80_51.png deleted file mode 100644 index 3bccdf0c5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_51.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_52.png b/weather.openmeteo/resources/icons/graph/1080/scale80_52.png deleted file mode 100644 index 0bf2b65fe..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_52.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_53.png b/weather.openmeteo/resources/icons/graph/1080/scale80_53.png deleted file mode 100644 index a428371b8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_53.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_54.png b/weather.openmeteo/resources/icons/graph/1080/scale80_54.png deleted file mode 100644 index 2e5236889..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_54.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_55.png b/weather.openmeteo/resources/icons/graph/1080/scale80_55.png deleted file mode 100644 index dc04225cd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_55.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_56.png b/weather.openmeteo/resources/icons/graph/1080/scale80_56.png deleted file mode 100644 index 7f96c9953..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_56.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_57.png b/weather.openmeteo/resources/icons/graph/1080/scale80_57.png deleted file mode 100644 index 1faf50d2c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_57.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_58.png b/weather.openmeteo/resources/icons/graph/1080/scale80_58.png deleted file mode 100644 index e6939a220..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_58.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_59.png b/weather.openmeteo/resources/icons/graph/1080/scale80_59.png deleted file mode 100644 index 00f9d1705..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_59.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_6.png b/weather.openmeteo/resources/icons/graph/1080/scale80_6.png deleted file mode 100644 index f9ee73b6f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_60.png b/weather.openmeteo/resources/icons/graph/1080/scale80_60.png deleted file mode 100644 index 89fa680cf..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_60.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_61.png b/weather.openmeteo/resources/icons/graph/1080/scale80_61.png deleted file mode 100644 index b46785896..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_61.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_62.png b/weather.openmeteo/resources/icons/graph/1080/scale80_62.png deleted file mode 100644 index 0a1c5939f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_62.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_63.png b/weather.openmeteo/resources/icons/graph/1080/scale80_63.png deleted file mode 100644 index 444ea5f89..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_63.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_64.png b/weather.openmeteo/resources/icons/graph/1080/scale80_64.png deleted file mode 100644 index 95694d243..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_64.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_65.png b/weather.openmeteo/resources/icons/graph/1080/scale80_65.png deleted file mode 100644 index c93ee87c4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_65.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_66.png b/weather.openmeteo/resources/icons/graph/1080/scale80_66.png deleted file mode 100644 index 079ab904e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_66.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_67.png b/weather.openmeteo/resources/icons/graph/1080/scale80_67.png deleted file mode 100644 index 6bdc4e510..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_67.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_68.png b/weather.openmeteo/resources/icons/graph/1080/scale80_68.png deleted file mode 100644 index 1e51d538c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_68.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_69.png b/weather.openmeteo/resources/icons/graph/1080/scale80_69.png deleted file mode 100644 index efb575e8c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_69.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_7.png b/weather.openmeteo/resources/icons/graph/1080/scale80_7.png deleted file mode 100644 index 50cfef4e6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_70.png b/weather.openmeteo/resources/icons/graph/1080/scale80_70.png deleted file mode 100644 index 2189dddf7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_70.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_71.png b/weather.openmeteo/resources/icons/graph/1080/scale80_71.png deleted file mode 100644 index 40a37e57d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_71.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_72.png b/weather.openmeteo/resources/icons/graph/1080/scale80_72.png deleted file mode 100644 index ed63dbaf0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_72.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_73.png b/weather.openmeteo/resources/icons/graph/1080/scale80_73.png deleted file mode 100644 index 1eb7e1369..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_73.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_74.png b/weather.openmeteo/resources/icons/graph/1080/scale80_74.png deleted file mode 100644 index 89b5afed2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_74.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_75.png b/weather.openmeteo/resources/icons/graph/1080/scale80_75.png deleted file mode 100644 index 22bdc99c3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_75.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_76.png b/weather.openmeteo/resources/icons/graph/1080/scale80_76.png deleted file mode 100644 index b9f9d183c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_76.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_77.png b/weather.openmeteo/resources/icons/graph/1080/scale80_77.png deleted file mode 100644 index 268184345..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_77.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_78.png b/weather.openmeteo/resources/icons/graph/1080/scale80_78.png deleted file mode 100644 index b20f9b674..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_78.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_79.png b/weather.openmeteo/resources/icons/graph/1080/scale80_79.png deleted file mode 100644 index 18e265a79..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_79.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_8.png b/weather.openmeteo/resources/icons/graph/1080/scale80_8.png deleted file mode 100644 index b55976b8f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_80.png b/weather.openmeteo/resources/icons/graph/1080/scale80_80.png deleted file mode 100644 index 0d74539d8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_80.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale80_9.png b/weather.openmeteo/resources/icons/graph/1080/scale80_9.png deleted file mode 100644 index 52a2d2249..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale80_9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_0.png b/weather.openmeteo/resources/icons/graph/1080/scale90_0.png deleted file mode 100644 index 6ea5ddeee..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_1.png b/weather.openmeteo/resources/icons/graph/1080/scale90_1.png deleted file mode 100644 index 6ea5ddeee..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_10.png b/weather.openmeteo/resources/icons/graph/1080/scale90_10.png deleted file mode 100644 index ac8cd4528..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_11.png b/weather.openmeteo/resources/icons/graph/1080/scale90_11.png deleted file mode 100644 index 13ba5b855..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_12.png b/weather.openmeteo/resources/icons/graph/1080/scale90_12.png deleted file mode 100644 index fc0318af2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_13.png b/weather.openmeteo/resources/icons/graph/1080/scale90_13.png deleted file mode 100644 index b3c0379b0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_14.png b/weather.openmeteo/resources/icons/graph/1080/scale90_14.png deleted file mode 100644 index a67190269..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_15.png b/weather.openmeteo/resources/icons/graph/1080/scale90_15.png deleted file mode 100644 index 5d35b34c3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_16.png b/weather.openmeteo/resources/icons/graph/1080/scale90_16.png deleted file mode 100644 index 2825c38dc..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_17.png b/weather.openmeteo/resources/icons/graph/1080/scale90_17.png deleted file mode 100644 index 96f585b45..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_18.png b/weather.openmeteo/resources/icons/graph/1080/scale90_18.png deleted file mode 100644 index 0b8211388..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_19.png b/weather.openmeteo/resources/icons/graph/1080/scale90_19.png deleted file mode 100644 index 788b912e2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_2.png b/weather.openmeteo/resources/icons/graph/1080/scale90_2.png deleted file mode 100644 index d0b2e4528..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_20.png b/weather.openmeteo/resources/icons/graph/1080/scale90_20.png deleted file mode 100644 index 3e7d1c39e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_21.png b/weather.openmeteo/resources/icons/graph/1080/scale90_21.png deleted file mode 100644 index 9f5a1f05f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_21.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_22.png b/weather.openmeteo/resources/icons/graph/1080/scale90_22.png deleted file mode 100644 index 7e0dae949..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_22.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_23.png b/weather.openmeteo/resources/icons/graph/1080/scale90_23.png deleted file mode 100644 index 071429db7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_23.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_24.png b/weather.openmeteo/resources/icons/graph/1080/scale90_24.png deleted file mode 100644 index 635198d72..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_24.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_25.png b/weather.openmeteo/resources/icons/graph/1080/scale90_25.png deleted file mode 100644 index 4a39f22e3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_25.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_26.png b/weather.openmeteo/resources/icons/graph/1080/scale90_26.png deleted file mode 100644 index 101dc3cc4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_26.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_27.png b/weather.openmeteo/resources/icons/graph/1080/scale90_27.png deleted file mode 100644 index f3f79609d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_27.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_28.png b/weather.openmeteo/resources/icons/graph/1080/scale90_28.png deleted file mode 100644 index e91217724..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_28.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_29.png b/weather.openmeteo/resources/icons/graph/1080/scale90_29.png deleted file mode 100644 index 17f78a445..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_29.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_3.png b/weather.openmeteo/resources/icons/graph/1080/scale90_3.png deleted file mode 100644 index 0eb405f7b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_30.png b/weather.openmeteo/resources/icons/graph/1080/scale90_30.png deleted file mode 100644 index 943394a7f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_30.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_31.png b/weather.openmeteo/resources/icons/graph/1080/scale90_31.png deleted file mode 100644 index 1b5d6c1c3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_31.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_32.png b/weather.openmeteo/resources/icons/graph/1080/scale90_32.png deleted file mode 100644 index bae5cc50f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_32.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_33.png b/weather.openmeteo/resources/icons/graph/1080/scale90_33.png deleted file mode 100644 index 7a095af56..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_33.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_34.png b/weather.openmeteo/resources/icons/graph/1080/scale90_34.png deleted file mode 100644 index c0dc610a1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_34.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_35.png b/weather.openmeteo/resources/icons/graph/1080/scale90_35.png deleted file mode 100644 index d78f57c6e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_35.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_36.png b/weather.openmeteo/resources/icons/graph/1080/scale90_36.png deleted file mode 100644 index 9537db9de..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_36.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_37.png b/weather.openmeteo/resources/icons/graph/1080/scale90_37.png deleted file mode 100644 index 59a212b97..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_37.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_38.png b/weather.openmeteo/resources/icons/graph/1080/scale90_38.png deleted file mode 100644 index 2195708c9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_38.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_39.png b/weather.openmeteo/resources/icons/graph/1080/scale90_39.png deleted file mode 100644 index 65cf4aa24..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_39.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_4.png b/weather.openmeteo/resources/icons/graph/1080/scale90_4.png deleted file mode 100644 index 875357e4a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_40.png b/weather.openmeteo/resources/icons/graph/1080/scale90_40.png deleted file mode 100644 index 986e23530..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_40.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_41.png b/weather.openmeteo/resources/icons/graph/1080/scale90_41.png deleted file mode 100644 index ecdee3580..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_41.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_42.png b/weather.openmeteo/resources/icons/graph/1080/scale90_42.png deleted file mode 100644 index 4474fbf0a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_42.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_43.png b/weather.openmeteo/resources/icons/graph/1080/scale90_43.png deleted file mode 100644 index 84dadb407..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_43.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_44.png b/weather.openmeteo/resources/icons/graph/1080/scale90_44.png deleted file mode 100644 index 98834a370..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_44.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_45.png b/weather.openmeteo/resources/icons/graph/1080/scale90_45.png deleted file mode 100644 index fe3a02218..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_45.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_46.png b/weather.openmeteo/resources/icons/graph/1080/scale90_46.png deleted file mode 100644 index 06ac764c4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_46.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_47.png b/weather.openmeteo/resources/icons/graph/1080/scale90_47.png deleted file mode 100644 index f908bda11..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_47.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_48.png b/weather.openmeteo/resources/icons/graph/1080/scale90_48.png deleted file mode 100644 index e57fcfce6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_48.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_49.png b/weather.openmeteo/resources/icons/graph/1080/scale90_49.png deleted file mode 100644 index 6bd0bbc32..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_49.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_5.png b/weather.openmeteo/resources/icons/graph/1080/scale90_5.png deleted file mode 100644 index 90d02b843..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_50.png b/weather.openmeteo/resources/icons/graph/1080/scale90_50.png deleted file mode 100644 index 556a2bf04..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_50.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_51.png b/weather.openmeteo/resources/icons/graph/1080/scale90_51.png deleted file mode 100644 index c7b6133db..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_51.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_52.png b/weather.openmeteo/resources/icons/graph/1080/scale90_52.png deleted file mode 100644 index aee3bd6a6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_52.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_53.png b/weather.openmeteo/resources/icons/graph/1080/scale90_53.png deleted file mode 100644 index 3d710593c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_53.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_54.png b/weather.openmeteo/resources/icons/graph/1080/scale90_54.png deleted file mode 100644 index 617aa4abc..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_54.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_55.png b/weather.openmeteo/resources/icons/graph/1080/scale90_55.png deleted file mode 100644 index 9845b5c1a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_55.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_56.png b/weather.openmeteo/resources/icons/graph/1080/scale90_56.png deleted file mode 100644 index 4a4f04121..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_56.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_57.png b/weather.openmeteo/resources/icons/graph/1080/scale90_57.png deleted file mode 100644 index d7514e440..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_57.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_58.png b/weather.openmeteo/resources/icons/graph/1080/scale90_58.png deleted file mode 100644 index 6f9b999b9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_58.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_59.png b/weather.openmeteo/resources/icons/graph/1080/scale90_59.png deleted file mode 100644 index 2e1b964fd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_59.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_6.png b/weather.openmeteo/resources/icons/graph/1080/scale90_6.png deleted file mode 100644 index a4454cc34..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_60.png b/weather.openmeteo/resources/icons/graph/1080/scale90_60.png deleted file mode 100644 index 747af35f2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_60.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_61.png b/weather.openmeteo/resources/icons/graph/1080/scale90_61.png deleted file mode 100644 index 6bcf71a2f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_61.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_62.png b/weather.openmeteo/resources/icons/graph/1080/scale90_62.png deleted file mode 100644 index 30af912db..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_62.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_63.png b/weather.openmeteo/resources/icons/graph/1080/scale90_63.png deleted file mode 100644 index 7e6b6b828..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_63.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_64.png b/weather.openmeteo/resources/icons/graph/1080/scale90_64.png deleted file mode 100644 index df2d525fb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_64.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_65.png b/weather.openmeteo/resources/icons/graph/1080/scale90_65.png deleted file mode 100644 index 86ac91de2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_65.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_66.png b/weather.openmeteo/resources/icons/graph/1080/scale90_66.png deleted file mode 100644 index 97e668fe3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_66.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_67.png b/weather.openmeteo/resources/icons/graph/1080/scale90_67.png deleted file mode 100644 index 438c3c7bf..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_67.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_68.png b/weather.openmeteo/resources/icons/graph/1080/scale90_68.png deleted file mode 100644 index 7b4f82c4d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_68.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_69.png b/weather.openmeteo/resources/icons/graph/1080/scale90_69.png deleted file mode 100644 index cde5e4f89..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_69.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_7.png b/weather.openmeteo/resources/icons/graph/1080/scale90_7.png deleted file mode 100644 index 084d1772b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_70.png b/weather.openmeteo/resources/icons/graph/1080/scale90_70.png deleted file mode 100644 index 12610a49b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_70.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_71.png b/weather.openmeteo/resources/icons/graph/1080/scale90_71.png deleted file mode 100644 index 159c70156..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_71.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_72.png b/weather.openmeteo/resources/icons/graph/1080/scale90_72.png deleted file mode 100644 index 61705178a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_72.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_73.png b/weather.openmeteo/resources/icons/graph/1080/scale90_73.png deleted file mode 100644 index 5aa370579..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_73.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_74.png b/weather.openmeteo/resources/icons/graph/1080/scale90_74.png deleted file mode 100644 index a2d522ba2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_74.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_75.png b/weather.openmeteo/resources/icons/graph/1080/scale90_75.png deleted file mode 100644 index f88098917..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_75.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_76.png b/weather.openmeteo/resources/icons/graph/1080/scale90_76.png deleted file mode 100644 index 7ed345bc6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_76.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_77.png b/weather.openmeteo/resources/icons/graph/1080/scale90_77.png deleted file mode 100644 index 727e2c698..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_77.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_78.png b/weather.openmeteo/resources/icons/graph/1080/scale90_78.png deleted file mode 100644 index ecb626e0c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_78.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_79.png b/weather.openmeteo/resources/icons/graph/1080/scale90_79.png deleted file mode 100644 index 12ac0c4eb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_79.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_8.png b/weather.openmeteo/resources/icons/graph/1080/scale90_8.png deleted file mode 100644 index 2e740beaf..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_80.png b/weather.openmeteo/resources/icons/graph/1080/scale90_80.png deleted file mode 100644 index cc90ebac4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_80.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_81.png b/weather.openmeteo/resources/icons/graph/1080/scale90_81.png deleted file mode 100644 index fc36ed4ff..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_81.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_82.png b/weather.openmeteo/resources/icons/graph/1080/scale90_82.png deleted file mode 100644 index d4e0bc03e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_82.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_83.png b/weather.openmeteo/resources/icons/graph/1080/scale90_83.png deleted file mode 100644 index d445a24ce..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_83.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_84.png b/weather.openmeteo/resources/icons/graph/1080/scale90_84.png deleted file mode 100644 index afd4a28fd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_84.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_85.png b/weather.openmeteo/resources/icons/graph/1080/scale90_85.png deleted file mode 100644 index 2d07a5cb4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_85.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_86.png b/weather.openmeteo/resources/icons/graph/1080/scale90_86.png deleted file mode 100644 index 84e8954f5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_86.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_87.png b/weather.openmeteo/resources/icons/graph/1080/scale90_87.png deleted file mode 100644 index a1b9330dd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_87.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_88.png b/weather.openmeteo/resources/icons/graph/1080/scale90_88.png deleted file mode 100644 index ceb7ef840..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_88.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_89.png b/weather.openmeteo/resources/icons/graph/1080/scale90_89.png deleted file mode 100644 index 283e26fae..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_89.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_9.png b/weather.openmeteo/resources/icons/graph/1080/scale90_9.png deleted file mode 100644 index 669604b02..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scale90_90.png b/weather.openmeteo/resources/icons/graph/1080/scale90_90.png deleted file mode 100644 index b5a5902ca..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scale90_90.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg10_-1.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg10_-1.png deleted file mode 100644 index 08d0602e6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg10_-1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg10_-10.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg10_-10.png deleted file mode 100644 index 817b94f9e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg10_-10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg10_-2.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg10_-2.png deleted file mode 100644 index 42a88aeba..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg10_-2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg10_-3.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg10_-3.png deleted file mode 100644 index 1e4dd1c50..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg10_-3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg10_-4.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg10_-4.png deleted file mode 100644 index bc83e6823..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg10_-4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg10_-5.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg10_-5.png deleted file mode 100644 index b704a3a12..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg10_-5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg10_-6.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg10_-6.png deleted file mode 100644 index 10a43821d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg10_-6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg10_-7.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg10_-7.png deleted file mode 100644 index 01b7d1541..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg10_-7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg10_-8.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg10_-8.png deleted file mode 100644 index 88a769376..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg10_-8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg10_-9.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg10_-9.png deleted file mode 100644 index 6e26ef1ea..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg10_-9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg10_0.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg10_0.png deleted file mode 100644 index 76015d6fb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg10_0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg10_1.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg10_1.png deleted file mode 100644 index a8e217d1c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg10_1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg10_10.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg10_10.png deleted file mode 100644 index 3f533aa90..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg10_10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg10_2.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg10_2.png deleted file mode 100644 index ca01714f0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg10_2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg10_3.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg10_3.png deleted file mode 100644 index 94a7ab68e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg10_3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg10_4.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg10_4.png deleted file mode 100644 index ae26c7f4b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg10_4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg10_5.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg10_5.png deleted file mode 100644 index 305f08559..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg10_5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg10_6.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg10_6.png deleted file mode 100644 index babdee20a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg10_6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg10_7.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg10_7.png deleted file mode 100644 index 76339ef65..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg10_7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg10_8.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg10_8.png deleted file mode 100644 index 2d4a3cb36..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg10_8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg10_9.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg10_9.png deleted file mode 100644 index ce4a8128b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg10_9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg1_-0.1.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg1_-0.1.png deleted file mode 100644 index 67c95913c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg1_-0.1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg1_-0.2.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg1_-0.2.png deleted file mode 100644 index 6f149e5ed..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg1_-0.2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg1_-0.3.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg1_-0.3.png deleted file mode 100644 index 85a6a06bf..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg1_-0.3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg1_-0.4.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg1_-0.4.png deleted file mode 100644 index 7b5277b8c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg1_-0.4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg1_-0.5.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg1_-0.5.png deleted file mode 100644 index aae82874a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg1_-0.5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg1_-0.6.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg1_-0.6.png deleted file mode 100644 index 8fada9bf3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg1_-0.6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg1_-0.7.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg1_-0.7.png deleted file mode 100644 index 304450f4e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg1_-0.7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg1_-0.8.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg1_-0.8.png deleted file mode 100644 index 4717c775f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg1_-0.8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg1_-0.9.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg1_-0.9.png deleted file mode 100644 index 4c1e8a760..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg1_-0.9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg1_-1.0.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg1_-1.0.png deleted file mode 100644 index 71c1fe2ff..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg1_-1.0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg1_0.0.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg1_0.0.png deleted file mode 100644 index 3f22ba0b2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg1_0.0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg1_0.1.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg1_0.1.png deleted file mode 100644 index dbfc7dc2a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg1_0.1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg1_0.2.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg1_0.2.png deleted file mode 100644 index b350c02b5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg1_0.2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg1_0.3.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg1_0.3.png deleted file mode 100644 index 442a99ef0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg1_0.3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg1_0.4.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg1_0.4.png deleted file mode 100644 index 837d9d643..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg1_0.4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg1_0.5.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg1_0.5.png deleted file mode 100644 index 72f579e51..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg1_0.5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg1_0.6.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg1_0.6.png deleted file mode 100644 index 9332aae78..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg1_0.6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg1_0.7.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg1_0.7.png deleted file mode 100644 index 1249562db..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg1_0.7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg1_0.8.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg1_0.8.png deleted file mode 100644 index 4e491cb26..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg1_0.8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg1_0.9.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg1_0.9.png deleted file mode 100644 index 65f47b8f8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg1_0.9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg1_1.0.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg1_1.0.png deleted file mode 100644 index 8a8348976..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg1_1.0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_-1.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg20_-1.png deleted file mode 100644 index 59eb853fc..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_-1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_-10.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg20_-10.png deleted file mode 100644 index 5fdc60d6d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_-10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_-11.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg20_-11.png deleted file mode 100644 index 1f765212f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_-11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_-12.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg20_-12.png deleted file mode 100644 index de03af8c9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_-12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_-13.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg20_-13.png deleted file mode 100644 index 2149e2d89..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_-13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_-14.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg20_-14.png deleted file mode 100644 index 35d0754a2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_-14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_-15.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg20_-15.png deleted file mode 100644 index bda7776ff..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_-15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_-16.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg20_-16.png deleted file mode 100644 index 6c864f59e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_-16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_-17.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg20_-17.png deleted file mode 100644 index 37fa5cba4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_-17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_-18.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg20_-18.png deleted file mode 100644 index d59709c45..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_-18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_-19.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg20_-19.png deleted file mode 100644 index bc1301677..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_-19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_-2.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg20_-2.png deleted file mode 100644 index ff74ead90..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_-2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_-20.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg20_-20.png deleted file mode 100644 index b180983a2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_-20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_-3.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg20_-3.png deleted file mode 100644 index 97ea11ad8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_-3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_-4.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg20_-4.png deleted file mode 100644 index aa4e7ce1b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_-4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_-5.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg20_-5.png deleted file mode 100644 index 66faba7ed..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_-5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_-6.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg20_-6.png deleted file mode 100644 index 36124258b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_-6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_-7.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg20_-7.png deleted file mode 100644 index 3a4bd2b6f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_-7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_-8.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg20_-8.png deleted file mode 100644 index 7e6d23c24..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_-8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_-9.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg20_-9.png deleted file mode 100644 index e0eaee63d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_-9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_0.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg20_0.png deleted file mode 100644 index 2ef089916..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_1.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg20_1.png deleted file mode 100644 index 539394cf6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_10.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg20_10.png deleted file mode 100644 index 346c402cb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_11.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg20_11.png deleted file mode 100644 index 1de279176..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_12.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg20_12.png deleted file mode 100644 index 929e8ea66..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_13.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg20_13.png deleted file mode 100644 index 9cc14d233..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_14.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg20_14.png deleted file mode 100644 index b346873a1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_15.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg20_15.png deleted file mode 100644 index 7b95bf842..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_16.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg20_16.png deleted file mode 100644 index 166157596..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_17.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg20_17.png deleted file mode 100644 index 0576aae26..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_18.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg20_18.png deleted file mode 100644 index 92e4ff00e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_19.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg20_19.png deleted file mode 100644 index 4a1a39373..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_2.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg20_2.png deleted file mode 100644 index 889a7dd66..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_20.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg20_20.png deleted file mode 100644 index 6314eeaed..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_3.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg20_3.png deleted file mode 100644 index bc9dc3332..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_4.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg20_4.png deleted file mode 100644 index 5b1a5962f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_5.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg20_5.png deleted file mode 100644 index 8ad7f5ec7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_6.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg20_6.png deleted file mode 100644 index fc2d81c40..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_7.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg20_7.png deleted file mode 100644 index 9e1ea3a82..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_8.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg20_8.png deleted file mode 100644 index 6e7c0f0dc..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_9.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg20_9.png deleted file mode 100644 index 2d429a2b2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg20_9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-1.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-1.png deleted file mode 100644 index 84152df39..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-10.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-10.png deleted file mode 100644 index 919378e9a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-11.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-11.png deleted file mode 100644 index 07935f983..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-12.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-12.png deleted file mode 100644 index c525e59d9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-13.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-13.png deleted file mode 100644 index b76f261e4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-14.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-14.png deleted file mode 100644 index 76fd56cd7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-15.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-15.png deleted file mode 100644 index 7cfcc866b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-16.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-16.png deleted file mode 100644 index e9bbd1949..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-17.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-17.png deleted file mode 100644 index 37a6099c1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-18.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-18.png deleted file mode 100644 index 18f5a8f57..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-19.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-19.png deleted file mode 100644 index 4620629be..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-2.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-2.png deleted file mode 100644 index 763f73cd8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-20.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-20.png deleted file mode 100644 index 3b0bc4851..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-21.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-21.png deleted file mode 100644 index d3227b489..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-21.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-22.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-22.png deleted file mode 100644 index c636982f4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-22.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-23.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-23.png deleted file mode 100644 index 13a87c0c1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-23.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-24.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-24.png deleted file mode 100644 index e9867daf3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-24.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-25.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-25.png deleted file mode 100644 index 92c81c6f5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-25.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-26.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-26.png deleted file mode 100644 index d36ff5933..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-26.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-27.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-27.png deleted file mode 100644 index c36b17980..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-27.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-28.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-28.png deleted file mode 100644 index a0ecc85ee..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-28.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-29.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-29.png deleted file mode 100644 index 4fde784d7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-29.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-3.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-3.png deleted file mode 100644 index 1f41c9e73..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-30.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-30.png deleted file mode 100644 index d0117dab4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-30.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-4.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-4.png deleted file mode 100644 index f9ddd5f71..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-5.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-5.png deleted file mode 100644 index 006974341..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-6.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-6.png deleted file mode 100644 index 927c42a27..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-7.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-7.png deleted file mode 100644 index 99d691a0f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-8.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-8.png deleted file mode 100644 index 65a109256..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-9.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-9.png deleted file mode 100644 index 10cf6fcfd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_-9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_0.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg30_0.png deleted file mode 100644 index 015519fb3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_1.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg30_1.png deleted file mode 100644 index 7b2c3f51a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_10.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg30_10.png deleted file mode 100644 index 44a6008cb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_11.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg30_11.png deleted file mode 100644 index c9b89b45b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_12.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg30_12.png deleted file mode 100644 index 70f6268fe..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_13.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg30_13.png deleted file mode 100644 index 8f10e13fe..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_14.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg30_14.png deleted file mode 100644 index 65d2ebd74..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_15.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg30_15.png deleted file mode 100644 index 25defb696..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_16.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg30_16.png deleted file mode 100644 index 2403b2631..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_17.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg30_17.png deleted file mode 100644 index ca4ed83f0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_18.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg30_18.png deleted file mode 100644 index 659954656..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_19.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg30_19.png deleted file mode 100644 index 5e2321213..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_2.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg30_2.png deleted file mode 100644 index c24e1a51a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_20.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg30_20.png deleted file mode 100644 index c4d29cbfa..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_21.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg30_21.png deleted file mode 100644 index be6dab851..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_21.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_22.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg30_22.png deleted file mode 100644 index 1b1d09c3f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_22.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_23.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg30_23.png deleted file mode 100644 index 8d8120dc3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_23.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_24.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg30_24.png deleted file mode 100644 index a6f4bebe1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_24.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_25.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg30_25.png deleted file mode 100644 index c25721547..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_25.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_26.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg30_26.png deleted file mode 100644 index 434dd4f23..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_26.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_27.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg30_27.png deleted file mode 100644 index a5828b4aa..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_27.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_28.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg30_28.png deleted file mode 100644 index 9de8941a9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_28.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_29.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg30_29.png deleted file mode 100644 index e78078c7e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_29.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_3.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg30_3.png deleted file mode 100644 index 3e82778a5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_30.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg30_30.png deleted file mode 100644 index 3883367ba..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_30.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_4.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg30_4.png deleted file mode 100644 index 23e1b094c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_5.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg30_5.png deleted file mode 100644 index 3b2f2feb0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_6.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg30_6.png deleted file mode 100644 index c9e11bccc..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_7.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg30_7.png deleted file mode 100644 index fea41d4fd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_8.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg30_8.png deleted file mode 100644 index 0dd23cf63..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_9.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg30_9.png deleted file mode 100644 index 05fdbe4e8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg30_9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-10.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-10.png deleted file mode 100644 index 65b797360..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-11.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-11.png deleted file mode 100644 index dc4cf0cb1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-12.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-12.png deleted file mode 100644 index 5ba5cfe07..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-13.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-13.png deleted file mode 100644 index 2cdb717f8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-14.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-14.png deleted file mode 100644 index b9414f896..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-15.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-15.png deleted file mode 100644 index 6432f0ba4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-16.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-16.png deleted file mode 100644 index 4adb16695..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-17.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-17.png deleted file mode 100644 index e61043216..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-18.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-18.png deleted file mode 100644 index 57d703732..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-19.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-19.png deleted file mode 100644 index 722605c6d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-2.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-2.png deleted file mode 100644 index 52d08117a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-20.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-20.png deleted file mode 100644 index a69e34b2f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-21.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-21.png deleted file mode 100644 index 746ea0bab..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-21.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-22.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-22.png deleted file mode 100644 index 59bc60d69..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-22.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-23.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-23.png deleted file mode 100644 index 06db9cee4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-23.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-24.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-24.png deleted file mode 100644 index 88c614aac..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-24.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-25.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-25.png deleted file mode 100644 index 4356aa17e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-25.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-26.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-26.png deleted file mode 100644 index 223108bd9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-26.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-27.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-27.png deleted file mode 100644 index 2e1a75289..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-27.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-28.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-28.png deleted file mode 100644 index 7c07ad7ff..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-28.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-29.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-29.png deleted file mode 100644 index f98107c45..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-29.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-3.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-3.png deleted file mode 100644 index a275de4c7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-30.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-30.png deleted file mode 100644 index 9eb0be716..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-30.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-31.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-31.png deleted file mode 100644 index b17cfc58a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-31.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-32.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-32.png deleted file mode 100644 index 7cba8d11c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-32.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-33.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-33.png deleted file mode 100644 index be664ae46..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-33.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-34.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-34.png deleted file mode 100644 index f30994abd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-34.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-35.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-35.png deleted file mode 100644 index 16789fdc2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-35.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-36.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-36.png deleted file mode 100644 index 7b974f472..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-36.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-37.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-37.png deleted file mode 100644 index 6a0af1b7b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-37.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-38.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-38.png deleted file mode 100644 index 0d7e689fc..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-38.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-39.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-39.png deleted file mode 100644 index f94380bc6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-39.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-4.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-4.png deleted file mode 100644 index f9bfbf84d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-40.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-40.png deleted file mode 100644 index 6ef539595..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-40.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-5.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-5.png deleted file mode 100644 index 0a78aa7ba..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-6.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-6.png deleted file mode 100644 index d66091593..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-7.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-7.png deleted file mode 100644 index 05e1f24ef..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-8.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-8.png deleted file mode 100644 index a868f13d9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-9.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-9.png deleted file mode 100644 index ec1750dda..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_-9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_0.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_0.png deleted file mode 100644 index e52bf775f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_1.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_1.png deleted file mode 100644 index e52bf775f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_10.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_10.png deleted file mode 100644 index 8b71a46eb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_11.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_11.png deleted file mode 100644 index 566aa006f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_12.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_12.png deleted file mode 100644 index 77d2d98aa..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_13.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_13.png deleted file mode 100644 index 468f0469a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_14.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_14.png deleted file mode 100644 index 45ef9573b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_15.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_15.png deleted file mode 100644 index 47a69df62..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_16.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_16.png deleted file mode 100644 index 3ae9d99f6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_17.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_17.png deleted file mode 100644 index 2204a756e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_18.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_18.png deleted file mode 100644 index 0d2adae22..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_19.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_19.png deleted file mode 100644 index a6fc84eb6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_2.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_2.png deleted file mode 100644 index 2ac5ac878..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_20.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_20.png deleted file mode 100644 index a5f32ff1a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_21.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_21.png deleted file mode 100644 index 04b19f780..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_21.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_22.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_22.png deleted file mode 100644 index 57ce1ced3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_22.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_23.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_23.png deleted file mode 100644 index 73763a906..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_23.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_24.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_24.png deleted file mode 100644 index d14dfea60..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_24.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_25.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_25.png deleted file mode 100644 index e193212c4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_25.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_26.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_26.png deleted file mode 100644 index 4f3690aa2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_26.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_27.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_27.png deleted file mode 100644 index 6622303a2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_27.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_28.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_28.png deleted file mode 100644 index 595fcf97c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_28.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_29.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_29.png deleted file mode 100644 index 6c4e9bd1a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_29.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_3.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_3.png deleted file mode 100644 index d35027b82..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_30.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_30.png deleted file mode 100644 index 9bbe74434..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_30.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_31.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_31.png deleted file mode 100644 index 514e6f743..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_31.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_32.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_32.png deleted file mode 100644 index e4118221a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_32.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_33.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_33.png deleted file mode 100644 index 7de5b5cc4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_33.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_34.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_34.png deleted file mode 100644 index d0c7b1ad1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_34.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_35.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_35.png deleted file mode 100644 index f16cfc6a4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_35.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_36.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_36.png deleted file mode 100644 index 41df4f121..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_36.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_37.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_37.png deleted file mode 100644 index 8f998b10a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_37.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_38.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_38.png deleted file mode 100644 index f27288fb6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_38.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_39.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_39.png deleted file mode 100644 index d0364167f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_39.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_4.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_4.png deleted file mode 100644 index 884a5e030..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_40.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_40.png deleted file mode 100644 index 3c354a119..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_40.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_5.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_5.png deleted file mode 100644 index 678228b1e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_6.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_6.png deleted file mode 100644 index 0b23c4341..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_7.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_7.png deleted file mode 100644 index 21f8b47a3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_8.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_8.png deleted file mode 100644 index 30715de30..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_9.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg40_9.png deleted file mode 100644 index 990e2f74a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg40_9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-10.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-10.png deleted file mode 100644 index ab7cf1348..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-11.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-11.png deleted file mode 100644 index 96099a837..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-12.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-12.png deleted file mode 100644 index b6206c6d0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-13.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-13.png deleted file mode 100644 index 5ed6ebc0a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-14.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-14.png deleted file mode 100644 index 3c89f64f5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-15.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-15.png deleted file mode 100644 index 4da1eee70..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-16.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-16.png deleted file mode 100644 index dbdd13b9b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-17.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-17.png deleted file mode 100644 index eedefa4c6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-18.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-18.png deleted file mode 100644 index 69e359a62..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-19.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-19.png deleted file mode 100644 index 057e5028a..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-2.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-2.png deleted file mode 100644 index 534b59334..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-20.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-20.png deleted file mode 100644 index 840209c89..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-21.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-21.png deleted file mode 100644 index fc8aac031..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-21.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-22.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-22.png deleted file mode 100644 index 6b0f0ff4b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-22.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-23.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-23.png deleted file mode 100644 index b7d51a4d7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-23.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-24.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-24.png deleted file mode 100644 index d25ce2e23..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-24.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-25.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-25.png deleted file mode 100644 index 0613df9c8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-25.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-26.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-26.png deleted file mode 100644 index 5b2b0c36f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-26.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-27.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-27.png deleted file mode 100644 index 321bfa640..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-27.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-28.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-28.png deleted file mode 100644 index 4b7112abb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-28.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-29.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-29.png deleted file mode 100644 index a6abc615c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-29.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-3.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-3.png deleted file mode 100644 index 7896e1bec..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-30.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-30.png deleted file mode 100644 index e073bbdc6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-30.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-31.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-31.png deleted file mode 100644 index c15bc2605..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-31.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-32.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-32.png deleted file mode 100644 index 78ff2dec1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-32.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-33.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-33.png deleted file mode 100644 index ae270d4cf..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-33.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-34.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-34.png deleted file mode 100644 index 4f16427e9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-34.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-35.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-35.png deleted file mode 100644 index bed306350..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-35.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-36.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-36.png deleted file mode 100644 index 5ddf3be14..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-36.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-37.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-37.png deleted file mode 100644 index 8bd58e673..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-37.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-38.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-38.png deleted file mode 100644 index c8f527827..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-38.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-39.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-39.png deleted file mode 100644 index 190f67772..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-39.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-4.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-4.png deleted file mode 100644 index 53debf922..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-40.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-40.png deleted file mode 100644 index c1424359e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-40.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-41.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-41.png deleted file mode 100644 index cf7a0433e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-41.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-42.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-42.png deleted file mode 100644 index 6d3dfcf32..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-42.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-43.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-43.png deleted file mode 100644 index bbc305d05..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-43.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-44.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-44.png deleted file mode 100644 index f799313a8..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-44.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-45.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-45.png deleted file mode 100644 index cf95a5fc3..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-45.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-46.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-46.png deleted file mode 100644 index b5bfafe96..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-46.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-47.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-47.png deleted file mode 100644 index 72b30400e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-47.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-48.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-48.png deleted file mode 100644 index c387c28b1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-48.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-49.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-49.png deleted file mode 100644 index 59731cc33..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-49.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-5.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-5.png deleted file mode 100644 index cc8f69e0e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-50.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-50.png deleted file mode 100644 index 22481e268..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-50.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-6.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-6.png deleted file mode 100644 index 27e4f8595..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-7.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-7.png deleted file mode 100644 index dcdefd8fa..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-8.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-8.png deleted file mode 100644 index bd00b4d87..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-9.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-9.png deleted file mode 100644 index 15bf642bb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_-9.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_0.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_0.png deleted file mode 100644 index 8309eca0f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_0.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_1.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_1.png deleted file mode 100644 index bc503bfcf..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_1.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_10.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_10.png deleted file mode 100644 index 722accb88..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_10.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_11.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_11.png deleted file mode 100644 index c6359852c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_11.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_12.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_12.png deleted file mode 100644 index 88bbdd45d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_12.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_13.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_13.png deleted file mode 100644 index 1e509a959..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_13.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_14.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_14.png deleted file mode 100644 index 573a340c6..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_14.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_15.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_15.png deleted file mode 100644 index f90556d4d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_15.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_16.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_16.png deleted file mode 100644 index 041ba04c5..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_16.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_17.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_17.png deleted file mode 100644 index 907624cdf..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_17.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_18.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_18.png deleted file mode 100644 index fc9eba13f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_18.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_19.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_19.png deleted file mode 100644 index 716b90b84..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_19.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_2.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_2.png deleted file mode 100644 index 149f2e49c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_2.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_20.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_20.png deleted file mode 100644 index ba4f68466..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_20.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_21.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_21.png deleted file mode 100644 index 6c5e41e1e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_21.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_22.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_22.png deleted file mode 100644 index 4bf007d67..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_22.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_23.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_23.png deleted file mode 100644 index c33faa861..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_23.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_24.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_24.png deleted file mode 100644 index 943f71e20..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_24.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_25.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_25.png deleted file mode 100644 index c63fee459..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_25.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_26.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_26.png deleted file mode 100644 index 9ae86d6ac..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_26.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_27.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_27.png deleted file mode 100644 index 570b9b93b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_27.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_28.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_28.png deleted file mode 100644 index 8a31d999b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_28.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_29.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_29.png deleted file mode 100644 index c4c184470..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_29.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_3.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_3.png deleted file mode 100644 index 9e1dd8ac9..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_3.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_30.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_30.png deleted file mode 100644 index 5a9646f1f..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_30.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_31.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_31.png deleted file mode 100644 index e79bffed7..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_31.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_32.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_32.png deleted file mode 100644 index 385a6b3ad..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_32.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_33.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_33.png deleted file mode 100644 index 201e6b86e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_33.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_34.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_34.png deleted file mode 100644 index 9e78a4a11..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_34.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_35.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_35.png deleted file mode 100644 index 449af1059..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_35.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_36.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_36.png deleted file mode 100644 index e968390b1..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_36.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_37.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_37.png deleted file mode 100644 index 86cf401b2..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_37.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_38.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_38.png deleted file mode 100644 index 9bef6317d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_38.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_39.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_39.png deleted file mode 100644 index 3ab08a4bb..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_39.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_4.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_4.png deleted file mode 100644 index 367441e97..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_4.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_40.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_40.png deleted file mode 100644 index 478e4ff40..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_40.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_41.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_41.png deleted file mode 100644 index b0520d2a0..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_41.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_42.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_42.png deleted file mode 100644 index d44977426..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_42.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_43.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_43.png deleted file mode 100644 index 1c26c5277..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_43.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_44.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_44.png deleted file mode 100644 index 581f7adbd..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_44.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_45.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_45.png deleted file mode 100644 index 5bb73f6de..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_45.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_46.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_46.png deleted file mode 100644 index 2a9157179..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_46.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_47.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_47.png deleted file mode 100644 index 3b0dbc4f4..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_47.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_48.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_48.png deleted file mode 100644 index d957c4498..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_48.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_49.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_49.png deleted file mode 100644 index 7caeb4f7b..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_49.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_5.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_5.png deleted file mode 100644 index 8a260e62d..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_5.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_50.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_50.png deleted file mode 100644 index fd46807cc..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_50.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_6.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_6.png deleted file mode 100644 index 8819a4818..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_6.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_7.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_7.png deleted file mode 100644 index 465714f03..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_7.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_8.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_8.png deleted file mode 100644 index 2625d595c..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_8.png and /dev/null differ diff --git a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_9.png b/weather.openmeteo/resources/icons/graph/1080/scaleneg50_9.png deleted file mode 100644 index 674cc4a6e..000000000 Binary files a/weather.openmeteo/resources/icons/graph/1080/scaleneg50_9.png and /dev/null differ diff --git a/weather.openmeteo/resources/language/resource.language.cs_cz/strings.po b/weather.openmeteo/resources/language/resource.language.cs_cz/strings.po index 782bd7b9d..3a12953e6 100644 --- a/weather.openmeteo/resources/language/resource.language.cs_cz/strings.po +++ b/weather.openmeteo/resources/language/resource.language.cs_cz/strings.po @@ -635,6 +635,18 @@ msgctxt "#32456" msgid "grains" msgstr "Obilniny" +msgctxt "#32491" +msgid "Notice" +msgstr "[COLOR=yellow]Upozornění[/COLOR]" + +msgctxt "#32492" +msgid "Caution" +msgstr "[COLOR=orange]Opatrnost[/COLOR]" + +msgctxt "#32493" +msgid "Danger" +msgstr "[COLOR=crimson]Nebezpečí[/COLOR]" + msgctxt "#32500" msgid "Weather forecast from Open-Meteo" msgstr "Predpoveď počasia z Open-Meteo" diff --git a/weather.openmeteo/resources/language/resource.language.de_de/strings.po b/weather.openmeteo/resources/language/resource.language.de_de/strings.po index 968489002..818f58d81 100644 --- a/weather.openmeteo/resources/language/resource.language.de_de/strings.po +++ b/weather.openmeteo/resources/language/resource.language.de_de/strings.po @@ -624,6 +624,18 @@ msgctxt "#32456" msgid "grains" msgstr "Körner" +msgctxt "#32491" +msgid "Notice" +msgstr "[COLOR=yellow]Hinweis[/COLOR]" + +msgctxt "#32492" +msgid "Caution" +msgstr "[COLOR=orange]Vorsicht[/COLOR]" + +msgctxt "#32493" +msgid "Danger" +msgstr "[COLOR=crimson]Gefahr[/COLOR]" + msgctxt "#32500" msgid "Weather forecast from Open-Meteo" msgstr "Wettervorhersage von Open-Meteo" diff --git a/weather.openmeteo/resources/language/resource.language.en_gb/strings.po b/weather.openmeteo/resources/language/resource.language.en_gb/strings.po index ced7a6ed2..5478bf5ee 100644 --- a/weather.openmeteo/resources/language/resource.language.en_gb/strings.po +++ b/weather.openmeteo/resources/language/resource.language.en_gb/strings.po @@ -518,6 +518,10 @@ msgctxt "#32372" msgid "Furlong/Fortnight" msgstr "Furlong/Fortnight" +msgctxt "#32379" +msgid "cm" +msgstr "cm" + msgctxt "#32380" msgid "mm" msgstr "mm" @@ -642,6 +646,110 @@ msgctxt "#32456" msgid "grains" msgstr "" +msgctxt "#32457" +msgid "{0:d}:00" +msgstr "" + +msgctxt "#32458" +msgid "{0:d} grains/m³" +msgstr "" + +msgctxt "#32459" +msgid "{0:d} μg/m³" +msgstr "" + +msgctxt "#32460" +msgid "{0:d} AQI" +msgstr "" + +msgctxt "#32461" +msgid "{0:d} °C" +msgstr "" + +msgctxt "#32462" +msgid "{0:d} mm" +msgstr "" + +msgctxt "#32463" +msgid "{0:d} cm" +msgstr "" + +msgctxt "#32464" +msgid "{0:d} hPa" +msgstr "" + +msgctxt "#32465" +msgid "{0:d} km/h" +msgstr "" + +msgctxt "#32466" +msgid "{0:d} m" +msgstr "" + +msgctxt "#32467" +msgid "{0:d} W/m²" +msgstr "" + +msgctxt "#32468" +msgid "{0:d} %" +msgstr "" + +msgctxt "#32470" +msgid "Season" +msgstr "" + +msgctxt "#32471" +msgid "Spring" +msgstr "" + +msgctxt "#32472" +msgid "Summer" +msgstr "" + +msgctxt "#32473" +msgid "Fall" +msgstr "" + +msgctxt "#32474" +msgid "Winter" +msgstr "" + +msgctxt "#32480" +msgid "Night" +msgstr "" + +msgctxt "#32481" +msgid "Morning" +msgstr "" + +msgctxt "#32482" +msgid "Afternoon" +msgstr "" + +msgctxt "#32483" +msgid "Evening" +msgstr "" + +msgctxt "#32485" +msgid "Forecast" +msgstr "" + +msgctxt "#32490" +msgid "Autoscale" +msgstr "" + +msgctxt "#32491" +msgid "[COLOR=yellow]Notice[/COLOR]" +msgstr "" + +msgctxt "#32492" +msgid "[COLOR=orange]Caution[/COLOR]" +msgstr "" + +msgctxt "#32493" +msgid "[COLOR=crimson]Danger[/COLOR]" +msgstr "" + msgctxt "#32500" msgid "Weather forecast from Open-Meteo" msgstr "" diff --git a/weather.openmeteo/resources/language/resource.language.fr_fr/strings.po b/weather.openmeteo/resources/language/resource.language.fr_fr/strings.po index 55c1c4671..f2f99e62a 100644 --- a/weather.openmeteo/resources/language/resource.language.fr_fr/strings.po +++ b/weather.openmeteo/resources/language/resource.language.fr_fr/strings.po @@ -625,6 +625,18 @@ msgctxt "#32456" msgid "grains" msgstr "Grains" +msgctxt "#32491" +msgid "Notice" +msgstr "[COLOR=yellow]Avis[/COLOR]" + +msgctxt "#32492" +msgid "Caution" +msgstr "[COLOR=orange]Attention[/COLOR]" + +msgctxt "#32493" +msgid "Danger" +msgstr "[COLOR=crimson]Danger[/COLOR]" + msgctxt "#32500" msgid "Weather forecast from Open-Meteo" msgstr "" diff --git a/weather.openmeteo/resources/language/resource.language.hu_hu/strings.po b/weather.openmeteo/resources/language/resource.language.hu_hu/strings.po index 07d8efe92..be78fb446 100644 --- a/weather.openmeteo/resources/language/resource.language.hu_hu/strings.po +++ b/weather.openmeteo/resources/language/resource.language.hu_hu/strings.po @@ -635,6 +635,18 @@ msgctxt "#32456" msgid "grains" msgstr "szemcsék" +msgctxt "#32491" +msgid "Notice" +msgstr "[COLOR=yellow]Értesítés[/COLOR]" + +msgctxt "#32492" +msgid "Caution" +msgstr "[COLOR=orange]Figyelem[/COLOR]" + +msgctxt "#32493" +msgid "Danger" +msgstr "[COLOR=crimson]Veszély[/COLOR]" + msgctxt "#32500" msgid "Weather forecast from Open-Meteo" msgstr "Időjárás-előrejelzés az Open-Meteo-ból" diff --git a/weather.openmeteo/resources/language/resource.language.id_id/strings.po b/weather.openmeteo/resources/language/resource.language.id_id/strings.po index efa4e9727..eb7f5cc61 100644 --- a/weather.openmeteo/resources/language/resource.language.id_id/strings.po +++ b/weather.openmeteo/resources/language/resource.language.id_id/strings.po @@ -635,6 +635,18 @@ msgctxt "#32456" msgid "grains" msgstr "biji-bijian" +msgctxt "#32491" +msgid "Notice" +msgstr "[COLOR=yellow]Melihat[/COLOR]" + +msgctxt "#32492" +msgid "Caution" +msgstr "[COLOR=orange]Peringatan[/COLOR]" + +msgctxt "#32493" +msgid "Danger" +msgstr "[COLOR=crimson]Bahaya[/COLOR]" + msgctxt "#32500" msgid "Weather forecast from Open-Meteo" msgstr "Prakiraan cuaca oleh Open-Meteo" diff --git a/weather.openmeteo/resources/language/resource.language.it_it/strings.po b/weather.openmeteo/resources/language/resource.language.it_it/strings.po new file mode 100644 index 000000000..ebeb5c6d4 --- /dev/null +++ b/weather.openmeteo/resources/language/resource.language.it_it/strings.po @@ -0,0 +1,658 @@ +msgid "" +msgstr "" +"Project-Id-Version: English (OpenHT)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-12-04 13:09+0200\n" +"PO-Revision-Date: 2025-08-15 03:01+0000\n" +"Last-Translator: Massimo Pissarello \n" +"Language-Team: Italian \n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.13-dev\n" + +msgctxt "#32200" +msgid "Sunny" +msgstr "Soleggiato" + +msgctxt "#32201" +msgid "Mainly Sunny" +msgstr "Prevalentemente soleggiato" + +msgctxt "#32202" +msgid "Partly Cloudy" +msgstr "Parzialmente nuvoloso" + +msgctxt "#32203" +msgid "Cloudy" +msgstr "Nuvoloso" + +msgctxt "#32204" +msgid "Foggy" +msgstr "Nebbioso" + +msgctxt "#32205" +msgid "Rime Fog" +msgstr "Nebbia di galaverna" + +msgctxt "#32206" +msgid "Light Drizzle" +msgstr "Pioggerellina leggera" + +msgctxt "#32207" +msgid "Drizzle" +msgstr "Pioggerellina" + +msgctxt "#32208" +msgid "Heavy Drizzle" +msgstr "Pioggerellina intensa" + +msgctxt "#32209" +msgid "Light Freezing Drizzle" +msgstr "Pioggerellina leggera ghiacciata" + +msgctxt "#32210" +msgid "Freezing Drizzle" +msgstr "Pioggerellina ghiacciata" + +msgctxt "#32211" +msgid "Light Rain" +msgstr "Pioggia leggera" + +msgctxt "#32212" +msgid "Rain" +msgstr "Pioggia" + +msgctxt "#32213" +msgid "Heavy Rain" +msgstr "Pioggia intensa" + +msgctxt "#32214" +msgid "Light Freezing Rain" +msgstr "Pioggia leggera ghiacciata" + +msgctxt "#32215" +msgid "Freezing Rain" +msgstr "Pioggia ghiacciata" + +msgctxt "#32216" +msgid "Light Snow" +msgstr "Nevicata leggera" + +msgctxt "#32217" +msgid "Snow" +msgstr "Neve" + +msgctxt "#32218" +msgid "Heavy Snow" +msgstr "Nevicata intensa" + +msgctxt "#32219" +msgid "Snow Grains" +msgstr "Granelli di neve" + +msgctxt "#32220" +msgid "Light Showers" +msgstr "Rovesci leggeri" + +msgctxt "#32221" +msgid "Showers" +msgstr "Rovesci" + +msgctxt "#32222" +msgid "Heavy Showers" +msgstr "Rovesci intensi" + +msgctxt "#32223" +msgid "Light Snow Showers" +msgstr "Rovesci leggeri di neve" + +msgctxt "#32224" +msgid "Snow Showers" +msgstr "Rovesci di neve" + +msgctxt "#32225" +msgid "Thunderstorm" +msgstr "Temporale" + +msgctxt "#32226" +msgid "Light Thunderstorms With Hail" +msgstr "Temporali leggeri con grandine" + +msgctxt "#32227" +msgid "Thunderstorm With Hail" +msgstr "Temporali con grandine" + +msgctxt "#32250" +msgid "Clear" +msgstr "Sereno" + +msgctxt "#32251" +msgid "Mainly Clear" +msgstr "Prevalentemente sereno" + +msgctxt "#32255" +msgid "Moonrise" +msgstr "Sorgere della luna" + +msgctxt "#32256" +msgid "Moonset" +msgstr "Tramonto della luna" + +msgctxt "#32257" +msgid "Moonphase" +msgstr "Fase lunare" + +msgctxt "#32260" +msgid "General" +msgstr "Generale" + +msgctxt "#32261" +msgid "Locations" +msgstr "Posizioni" + +msgctxt "#32262" +msgid "Limits" +msgstr "Limiti" + +msgctxt "#32263" +msgid "Notifications" +msgstr "Notifiche" + +msgctxt "#32264" +msgid "Advanced" +msgstr "Avanzato" + +msgctxt "#32265" +msgid "Weather" +msgstr "Meteo" + +msgctxt "#32266" +msgid "Airquality" +msgstr "Qualità dell'aria" + +msgctxt "#32267" +msgid "Pollen" +msgstr "Polline" + +msgctxt "#32268" +msgid "Alerts" +msgstr "Avvisi" + +msgctxt "#32269" +msgid "Select option" +msgstr "Seleziona opzione" + +msgctxt "#32270" +msgid "Graphs" +msgstr "Grafici" + +msgctxt "#32271" +msgid "Overview" +msgstr "Panoramica" + +msgctxt "#32272" +msgid "History" +msgstr "Cronologia" + +msgctxt "#32280" +msgid "Units" +msgstr "Unità" + +msgctxt "#32281" +msgid "Maps" +msgstr "Mappe" + +msgctxt "#32282" +msgid "Logging" +msgstr "Registrazione" + +msgctxt "#32283" +msgid "Experimental (Restart required)" +msgstr "Sperimentale (riavvio richiesto)" + +msgctxt "#32285" +msgid "Zoom" +msgstr "Zoom" + +msgctxt "#32286" +msgid "Debug" +msgstr "Debug" + +msgctxt "#32287" +msgid "Duration" +msgstr "Durata" + +msgctxt "#32288" +msgid "Hours" +msgstr "Ore" + +msgctxt "#32289" +msgid "Decimal places" +msgstr "Cifre decimali" + +msgctxt "#32290" +msgid "Icons" +msgstr "Icone" + +msgctxt "#32291" +msgid "Default" +msgstr "Predefinito" + +#, read-only +msgctxt "#32292" +msgid "Weathermap" +msgstr "" + +#, read-only +msgctxt "#32293" +msgid "Met.no" +msgstr "" + +#, read-only +msgctxt "#32294" +msgid "WMO" +msgstr "" + +msgctxt "#32296" +msgid "Background sync" +msgstr "Sincronizzazione in background" + +msgctxt "#32300" +msgid "Distance" +msgstr "Distanza" + +msgctxt "#32301" +msgid "Index" +msgstr "Indice" + +msgctxt "#32302" +msgid "Percent" +msgstr "Percentuale" + +msgctxt "#32303" +msgid "Unit" +msgstr "Unità" + +msgctxt "#32304" +msgid "Decimal separator" +msgstr "Separatore decimale" + +msgctxt "#32306" +msgid "Particles" +msgstr "Particelle" + +msgctxt "#32307" +msgid "Interval" +msgstr "Intervallo" + +msgctxt "#32308" +msgid "Verbose" +msgstr "Prolisso" + +msgctxt "#32310" +msgid "Location 1" +msgstr "Posizione 1" + +msgctxt "#32311" +msgid "Location 2" +msgstr "Posizione 2" + +msgctxt "#32312" +msgid "Location 3" +msgstr "Posizione 3" + +msgctxt "#32313" +msgid "Location 4" +msgstr "Posizione 4" + +msgctxt "#32314" +msgid "Location 5" +msgstr "Posizione 5" + +msgctxt "#32316" +msgid "Use location timezone" +msgstr "Usa fuso orario della posizione" + +msgctxt "#32320" +msgid "Temperature" +msgstr "Temperatura" + +msgctxt "#32321" +msgid "Precipitation" +msgstr "Precipitazioni" + +msgctxt "#32322" +msgid "Condition" +msgstr "Condizione" + +msgctxt "#32323" +msgid "Wind" +msgstr "Vento" + +msgctxt "#32324" +msgid "Gust" +msgstr "Raffica" + +msgctxt "#32325" +msgid "AQI EU" +msgstr "AQI EU" + +msgctxt "#32326" +msgid "AQI US" +msgstr "AQI US" + +msgctxt "#32327" +msgid "PM25" +msgstr "PM25" + +msgctxt "#32328" +msgid "PM10" +msgstr "PM10" + +msgctxt "#32329" +msgid "UV Index" +msgstr "Indice UV" + +msgctxt "#32330" +msgid "Nitrogen Dioxide" +msgstr "Anidride carbonica" + +msgctxt "#32331" +msgid "Sulphur Dioxide" +msgstr "Anidride solforosa" + +msgctxt "#32332" +msgid "Feelslike" +msgstr "Percepita" + +msgctxt "#32333" +msgid "Dewpoint" +msgstr "Punto di rugiada" + +msgctxt "#32334" +msgid "Cloudiness" +msgstr "Nuvolosità" + +msgctxt "#32335" +msgid "Time" +msgstr "Ora" + +msgctxt "#32336" +msgid "Speed" +msgstr "Velocità" + +msgctxt "#32337" +msgid "Carbon monoxide" +msgstr "Monossido di carbonio" + +msgctxt "#32338" +msgid "Ozone" +msgstr "Ozono" + +msgctxt "#32339" +msgid "Dust" +msgstr "Polvere" + +msgctxt "#32340" +msgid "Notice" +msgstr "Avviso" + +msgctxt "#32341" +msgid "Caution" +msgstr "Attenzione" + +msgctxt "#32342" +msgid "Danger" +msgstr "Pericolo" + +msgctxt "#32343" +msgid "Normal" +msgstr "Normale" + +msgctxt "#32344" +msgid "Negative" +msgstr "Negativo" + +msgctxt "#32345" +msgid "Colours" +msgstr "Colori" + +msgctxt "#32346" +msgid "Humidity" +msgstr "Umidità" + +msgctxt "#32347" +msgid "Pressure" +msgstr "Pressione" + +msgctxt "#32348" +msgid "Solar radiation" +msgstr "Radiazione solare" + +msgctxt "#32349" +msgid "Visibility" +msgstr "Visibilità" + +#, read-only +msgctxt "#32350" +msgid "°C" +msgstr "" + +#, read-only +msgctxt "#32351" +msgid "°F" +msgstr "" + +#, read-only +msgctxt "#32352" +msgid "K" +msgstr "" + +#, read-only +msgctxt "#32353" +msgid "°Ré" +msgstr "" + +#, read-only +msgctxt "#32354" +msgid "°Ra" +msgstr "" + +#, read-only +msgctxt "#32355" +msgid "°Rø" +msgstr "" + +#, read-only +msgctxt "#32356" +msgid "°D" +msgstr "" + +#, read-only +msgctxt "#32357" +msgid "°N" +msgstr "" + +msgctxt "#32360" +msgid "Application" +msgstr "Applicazione" + +msgctxt "#32361" +msgid "mph" +msgstr "mph" + +msgctxt "#32362" +msgid "km/h" +msgstr "km/h" + +msgctxt "#32363" +msgid "m/min" +msgstr "m/min" + +msgctxt "#32364" +msgid "m/s" +msgstr "m/s" + +msgctxt "#32365" +msgid "ft/h" +msgstr "ft/h" + +msgctxt "#32366" +msgid "ft/min" +msgstr "ft/min" + +msgctxt "#32367" +msgid "ft/s" +msgstr "ft/s" + +msgctxt "#32368" +msgid "kts" +msgstr "kts" + +msgctxt "#32369" +msgid "Beaufort" +msgstr "Beaufort" + +msgctxt "#32370" +msgid "inch/s" +msgstr "inch/s" + +msgctxt "#32371" +msgid "yard/s" +msgstr "yard/s" + +msgctxt "#32372" +msgid "Furlong/Fortnight" +msgstr "Furlong/Fortnight" + +msgctxt "#32380" +msgid "mm" +msgstr "mm" + +msgctxt "#32381" +msgid "inches" +msgstr "pollici" + +msgctxt "#32390" +msgid "12h" +msgstr "12 ore" + +msgctxt "#32391" +msgid "24h" +msgstr "24 ore" + +msgctxt "#32400" +msgid "Radar" +msgstr "Radar" + +msgctxt "#32401" +msgid "Satellite" +msgstr "Satellite" + +msgctxt "#32410" +msgid "m" +msgstr "m" + +msgctxt "#32411" +msgid "km" +msgstr "km" + +msgctxt "#32412" +msgid "mi" +msgstr "mi" + +#, read-only +msgctxt "#32430" +msgid "." +msgstr "" + +#, read-only +msgctxt "#32431" +msgid "," +msgstr "" + +msgctxt "#32440" +msgid "New Moon" +msgstr "Luna nuova" + +msgctxt "#32441" +msgid "Waxing Crescent" +msgstr "Mezzaluna crescente" + +msgctxt "#32442" +msgid "First Quarter" +msgstr "Primo quarto" + +msgctxt "#32443" +msgid "Waxing Gibbous" +msgstr "Gibbosa crescente" + +msgctxt "#32444" +msgid "Full Moon" +msgstr "Luna piena" + +msgctxt "#32445" +msgid "Waning Gibbous" +msgstr "Gibbosa calante" + +msgctxt "#32446" +msgid "Last Quarter" +msgstr "Ultimo quarto" + +msgctxt "#32447" +msgid "Waning Crescent" +msgstr "Mezzaluna calante" + +msgctxt "#32450" +msgid "Alder" +msgstr "Ontano" + +msgctxt "#32451" +msgid "Birch" +msgstr "Betulla" + +msgctxt "#32452" +msgid "Grass" +msgstr "Graminacee" + +msgctxt "#32453" +msgid "Mugwort" +msgstr "Artemisia" + +msgctxt "#32454" +msgid "Olive" +msgstr "Ulivo" + +msgctxt "#32455" +msgid "Ragweed" +msgstr "Ambrosia" + +msgctxt "#32456" +msgid "grains" +msgstr "chicchi" + +msgctxt "#32491" +msgid "Notice" +msgstr "[COLOR=yellow]Avviso[/COLOR]" + +msgctxt "#32492" +msgid "Caution" +msgstr "[COLOR=orange]Attenzione[/COLOR]" + +msgctxt "#32493" +msgid "Danger" +msgstr "[COLOR=crimson]Pericolo[/COLOR]" + +msgctxt "#32500" +msgid "Weather forecast from Open-Meteo" +msgstr "Previsioni meteo di Open-Meteo" + +msgctxt "#32501" +msgid "Weather, maps, airquality and pollen forecast from open-meteo.com, rainviewer.com, weather.gc.ca and met.no" +msgstr "" +"Meteo, mappe, qualità dell'aria e previsioni del polline da open-meteo.com, " +"rainviewer.com, weather.gc.ca e met.no" diff --git a/weather.openmeteo/resources/language/resource.language.nl_nl/strings.po b/weather.openmeteo/resources/language/resource.language.nl_nl/strings.po index 6ff874e33..cf42a5c94 100644 --- a/weather.openmeteo/resources/language/resource.language.nl_nl/strings.po +++ b/weather.openmeteo/resources/language/resource.language.nl_nl/strings.po @@ -625,6 +625,18 @@ msgctxt "#32456" msgid "grains" msgstr "Graan" +msgctxt "#32491" +msgid "Notice" +msgstr "[COLOR=yellow]Kennisgeving[/COLOR]" + +msgctxt "#32492" +msgid "Caution" +msgstr "[COLOR=orange]Voorzichtig[/COLOR]" + +msgctxt "#32493" +msgid "Danger" +msgstr "[COLOR=crimson]Gevaar[/COLOR]" + msgctxt "#32500" msgid "Weather forecast from Open-Meteo" msgstr "" diff --git a/weather.openmeteo/resources/language/resource.language.ru_ru/strings.po b/weather.openmeteo/resources/language/resource.language.ru_ru/strings.po new file mode 100644 index 000000000..e6352e956 --- /dev/null +++ b/weather.openmeteo/resources/language/resource.language.ru_ru/strings.po @@ -0,0 +1,659 @@ +msgid "" +msgstr "" +"Project-Id-Version: English (OpenHT)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-12-04 13:09+0200\n" +"PO-Revision-Date: 2025-09-30 18:27+0000\n" +"Last-Translator: Владимир Ферук \n" +"Language-Team: Russian \n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: Weblate 5.14-dev\n" + +msgctxt "#32200" +msgid "Sunny" +msgstr "Солнечно" + +msgctxt "#32201" +msgid "Mainly Sunny" +msgstr "Преимущественно солнечно" + +msgctxt "#32202" +msgid "Partly Cloudy" +msgstr "Переменная облачность" + +msgctxt "#32203" +msgid "Cloudy" +msgstr "Облачно" + +msgctxt "#32204" +msgid "Foggy" +msgstr "Туманно" + +msgctxt "#32205" +msgid "Rime Fog" +msgstr "Туман с инеем" + +msgctxt "#32206" +msgid "Light Drizzle" +msgstr "Небольшая морось" + +msgctxt "#32207" +msgid "Drizzle" +msgstr "Морось" + +msgctxt "#32208" +msgid "Heavy Drizzle" +msgstr "Сильная морось" + +msgctxt "#32209" +msgid "Light Freezing Drizzle" +msgstr "Небольшая замерзающая морось" + +msgctxt "#32210" +msgid "Freezing Drizzle" +msgstr "Замерзающая морось" + +msgctxt "#32211" +msgid "Light Rain" +msgstr "Небольшой дождь" + +msgctxt "#32212" +msgid "Rain" +msgstr "Дождь" + +msgctxt "#32213" +msgid "Heavy Rain" +msgstr "Сильный дождь" + +msgctxt "#32214" +msgid "Light Freezing Rain" +msgstr "Небольшой ледяной дождь" + +msgctxt "#32215" +msgid "Freezing Rain" +msgstr "Ледяной дождь" + +msgctxt "#32216" +msgid "Light Snow" +msgstr "Небольшой снег" + +msgctxt "#32217" +msgid "Snow" +msgstr "Снег" + +msgctxt "#32218" +msgid "Heavy Snow" +msgstr "Сильный снег" + +msgctxt "#32219" +msgid "Snow Grains" +msgstr "Зернистый снег" + +msgctxt "#32220" +msgid "Light Showers" +msgstr "Небольшой ливень" + +msgctxt "#32221" +msgid "Showers" +msgstr "Ливень" + +msgctxt "#32222" +msgid "Heavy Showers" +msgstr "Сильный ливень" + +msgctxt "#32223" +msgid "Light Snow Showers" +msgstr "Небольшой снегопад" + +msgctxt "#32224" +msgid "Snow Showers" +msgstr "Снегопад" + +msgctxt "#32225" +msgid "Thunderstorm" +msgstr "Гроза" + +msgctxt "#32226" +msgid "Light Thunderstorms With Hail" +msgstr "Небольшая гроза с градом" + +msgctxt "#32227" +msgid "Thunderstorm With Hail" +msgstr "Гроза с градом" + +msgctxt "#32250" +msgid "Clear" +msgstr "Ясно" + +msgctxt "#32251" +msgid "Mainly Clear" +msgstr "Преимущественно ясно" + +msgctxt "#32255" +msgid "Moonrise" +msgstr "Восход луны" + +msgctxt "#32256" +msgid "Moonset" +msgstr "Закат луны" + +msgctxt "#32257" +msgid "Moonphase" +msgstr "Лунная фаза" + +msgctxt "#32260" +msgid "General" +msgstr "Общие" + +msgctxt "#32261" +msgid "Locations" +msgstr "Локации" + +msgctxt "#32262" +msgid "Limits" +msgstr "Ограничения" + +msgctxt "#32263" +msgid "Notifications" +msgstr "Уведомления" + +msgctxt "#32264" +msgid "Advanced" +msgstr "Расширенный" + +msgctxt "#32265" +msgid "Weather" +msgstr "Погода" + +msgctxt "#32266" +msgid "Airquality" +msgstr "Качество воздуха" + +msgctxt "#32267" +msgid "Pollen" +msgstr "Пыльца" + +msgctxt "#32268" +msgid "Alerts" +msgstr "Оповещения" + +msgctxt "#32269" +msgid "Select option" +msgstr "Выбрать опцию" + +msgctxt "#32270" +msgid "Graphs" +msgstr "Графики" + +msgctxt "#32271" +msgid "Overview" +msgstr "Обзор" + +msgctxt "#32272" +msgid "History" +msgstr "История" + +msgctxt "#32280" +msgid "Units" +msgstr "Единицы" + +msgctxt "#32281" +msgid "Maps" +msgstr "Карты" + +msgctxt "#32282" +msgid "Logging" +msgstr "Ведение журнала" + +msgctxt "#32283" +msgid "Experimental (Restart required)" +msgstr "Экспериментальная (Требуется перезапуск)" + +msgctxt "#32285" +msgid "Zoom" +msgstr "Масштаб" + +msgctxt "#32286" +msgid "Debug" +msgstr "Отладка" + +msgctxt "#32287" +msgid "Duration" +msgstr "Продолжительность" + +msgctxt "#32288" +msgid "Hours" +msgstr "Часы" + +msgctxt "#32289" +msgid "Decimal places" +msgstr "Десятичные знаки" + +msgctxt "#32290" +msgid "Icons" +msgstr "Иконки" + +msgctxt "#32291" +msgid "Default" +msgstr "По умолчанию" + +#, read-only +msgctxt "#32292" +msgid "Weathermap" +msgstr "" + +#, read-only +msgctxt "#32293" +msgid "Met.no" +msgstr "" + +#, read-only +msgctxt "#32294" +msgid "WMO" +msgstr "" + +msgctxt "#32296" +msgid "Background sync" +msgstr "Фоновая синхронизация" + +msgctxt "#32300" +msgid "Distance" +msgstr "Расстояние" + +msgctxt "#32301" +msgid "Index" +msgstr "Индекс" + +msgctxt "#32302" +msgid "Percent" +msgstr "Процент" + +msgctxt "#32303" +msgid "Unit" +msgstr "Единица" + +msgctxt "#32304" +msgid "Decimal separator" +msgstr "Десятичный разделитель" + +msgctxt "#32306" +msgid "Particles" +msgstr "Частицы" + +msgctxt "#32307" +msgid "Interval" +msgstr "Интервал" + +msgctxt "#32308" +msgid "Verbose" +msgstr "Многословный" + +msgctxt "#32310" +msgid "Location 1" +msgstr "Местоположение 1" + +msgctxt "#32311" +msgid "Location 2" +msgstr "Местоположение 2" + +msgctxt "#32312" +msgid "Location 3" +msgstr "Местоположение 3" + +msgctxt "#32313" +msgid "Location 4" +msgstr "Местоположение 4" + +msgctxt "#32314" +msgid "Location 5" +msgstr "Местоположение 5" + +msgctxt "#32316" +msgid "Use location timezone" +msgstr "Использовать часовой пояс местоположения" + +msgctxt "#32320" +msgid "Temperature" +msgstr "Температура" + +msgctxt "#32321" +msgid "Precipitation" +msgstr "Осадки" + +msgctxt "#32322" +msgid "Condition" +msgstr "Условия" + +msgctxt "#32323" +msgid "Wind" +msgstr "Ветер" + +msgctxt "#32324" +msgid "Gust" +msgstr "Порыв" + +msgctxt "#32325" +msgid "AQI EU" +msgstr "Индекс качества воздуха (ЕС)" + +msgctxt "#32326" +msgid "AQI US" +msgstr "Индекс качества воздуха (США)" + +msgctxt "#32327" +msgid "PM25" +msgstr "PM25" + +msgctxt "#32328" +msgid "PM10" +msgstr "PM10" + +msgctxt "#32329" +msgid "UV Index" +msgstr "УФ-индекс" + +msgctxt "#32330" +msgid "Nitrogen Dioxide" +msgstr "Диоксид азота" + +msgctxt "#32331" +msgid "Sulphur Dioxide" +msgstr "Диоксид серы" + +msgctxt "#32332" +msgid "Feelslike" +msgstr "Ощущается" + +msgctxt "#32333" +msgid "Dewpoint" +msgstr "Точка росы" + +msgctxt "#32334" +msgid "Cloudiness" +msgstr "Облачность" + +msgctxt "#32335" +msgid "Time" +msgstr "Время" + +msgctxt "#32336" +msgid "Speed" +msgstr "Скорость" + +msgctxt "#32337" +msgid "Carbon monoxide" +msgstr "Окись углерода" + +msgctxt "#32338" +msgid "Ozone" +msgstr "Озон" + +msgctxt "#32339" +msgid "Dust" +msgstr "Пыль" + +msgctxt "#32340" +msgid "Notice" +msgstr "Уведомление" + +msgctxt "#32341" +msgid "Caution" +msgstr "Предостережение" + +msgctxt "#32342" +msgid "Danger" +msgstr "Опасность" + +msgctxt "#32343" +msgid "Normal" +msgstr "Нормальный" + +msgctxt "#32344" +msgid "Negative" +msgstr "Отрицательный" + +msgctxt "#32345" +msgid "Colours" +msgstr "Цвета" + +msgctxt "#32346" +msgid "Humidity" +msgstr "Влажность" + +msgctxt "#32347" +msgid "Pressure" +msgstr "Давление" + +msgctxt "#32348" +msgid "Solar radiation" +msgstr "Солнечное излучение" + +msgctxt "#32349" +msgid "Visibility" +msgstr "Видимость" + +#, read-only +msgctxt "#32350" +msgid "°C" +msgstr "" + +#, read-only +msgctxt "#32351" +msgid "°F" +msgstr "" + +#, read-only +msgctxt "#32352" +msgid "K" +msgstr "" + +#, read-only +msgctxt "#32353" +msgid "°Ré" +msgstr "" + +#, read-only +msgctxt "#32354" +msgid "°Ra" +msgstr "" + +#, read-only +msgctxt "#32355" +msgid "°Rø" +msgstr "" + +#, read-only +msgctxt "#32356" +msgid "°D" +msgstr "" + +#, read-only +msgctxt "#32357" +msgid "°N" +msgstr "" + +msgctxt "#32360" +msgid "Application" +msgstr "Приложение" + +msgctxt "#32361" +msgid "mph" +msgstr "миль/ч" + +msgctxt "#32362" +msgid "km/h" +msgstr "км/ч" + +msgctxt "#32363" +msgid "m/min" +msgstr "м/мин" + +msgctxt "#32364" +msgid "m/s" +msgstr "м/с" + +msgctxt "#32365" +msgid "ft/h" +msgstr "фут/ч" + +msgctxt "#32366" +msgid "ft/min" +msgstr "фут/мин" + +msgctxt "#32367" +msgid "ft/s" +msgstr "фут/с" + +msgctxt "#32368" +msgid "kts" +msgstr "узлов" + +msgctxt "#32369" +msgid "Beaufort" +msgstr "Бофорт" + +msgctxt "#32370" +msgid "inch/s" +msgstr "дюйм/с" + +msgctxt "#32371" +msgid "yard/s" +msgstr "ярд/с" + +msgctxt "#32372" +msgid "Furlong/Fortnight" +msgstr "Фурлонг/Фортнайт" + +msgctxt "#32380" +msgid "mm" +msgstr "мм" + +msgctxt "#32381" +msgid "inches" +msgstr "дюймы" + +msgctxt "#32390" +msgid "12h" +msgstr "12 часов" + +msgctxt "#32391" +msgid "24h" +msgstr "24 часа" + +msgctxt "#32400" +msgid "Radar" +msgstr "Радар" + +msgctxt "#32401" +msgid "Satellite" +msgstr "Спутник" + +msgctxt "#32410" +msgid "m" +msgstr "м" + +msgctxt "#32411" +msgid "km" +msgstr "км" + +msgctxt "#32412" +msgid "mi" +msgstr "миля" + +#, read-only +msgctxt "#32430" +msgid "." +msgstr "" + +#, read-only +msgctxt "#32431" +msgid "," +msgstr "" + +msgctxt "#32440" +msgid "New Moon" +msgstr "Новолуние" + +msgctxt "#32441" +msgid "Waxing Crescent" +msgstr "Молодая луна" + +msgctxt "#32442" +msgid "First Quarter" +msgstr "Первая четверть" + +msgctxt "#32443" +msgid "Waxing Gibbous" +msgstr "Прибывающая луна" + +msgctxt "#32444" +msgid "Full Moon" +msgstr "Полнолуние" + +msgctxt "#32445" +msgid "Waning Gibbous" +msgstr "Убывающая Луна" + +msgctxt "#32446" +msgid "Last Quarter" +msgstr "Последняя четверть" + +msgctxt "#32447" +msgid "Waning Crescent" +msgstr "Старая луна" + +msgctxt "#32450" +msgid "Alder" +msgstr "Ольха" + +msgctxt "#32451" +msgid "Birch" +msgstr "Береза" + +msgctxt "#32452" +msgid "Grass" +msgstr "Трава" + +msgctxt "#32453" +msgid "Mugwort" +msgstr "Полынь" + +msgctxt "#32454" +msgid "Olive" +msgstr "Олива" + +msgctxt "#32455" +msgid "Ragweed" +msgstr "Амброзия" + +msgctxt "#32456" +msgid "grains" +msgstr "зерна" + +msgctxt "#32491" +msgid "Notice" +msgstr "[COLOR=yellow]Уведомление[/COLOR]" + +msgctxt "#32492" +msgid "Caution" +msgstr "[COLOR=orange]Предостережение[/COLOR]" + +msgctxt "#32493" +msgid "Danger" +msgstr "[COLOR=crimson]Опасность[/COLOR]" + +msgctxt "#32500" +msgid "Weather forecast from Open-Meteo" +msgstr "Прогноз погоды от Open-Meteo" + +msgctxt "#32501" +msgid "Weather, maps, airquality and pollen forecast from open-meteo.com, rainviewer.com, weather.gc.ca and met.no" +msgstr "" +"Прогноз погоды, карты, качество воздуха и пыльцы от open-meteo.com, " +"rainviewer.com, weather.gc.ca и met.no" diff --git a/weather.openmeteo/resources/language/resource.language.sk_sk/strings.po b/weather.openmeteo/resources/language/resource.language.sk_sk/strings.po index b0257b4d1..f83423bc9 100644 --- a/weather.openmeteo/resources/language/resource.language.sk_sk/strings.po +++ b/weather.openmeteo/resources/language/resource.language.sk_sk/strings.po @@ -635,6 +635,18 @@ msgctxt "#32456" msgid "grains" msgstr "Obilniny" +msgctxt "#32491" +msgid "Notice" +msgstr "[COLOR=yellow]Všimnite si[/COLOR]" + +msgctxt "#32492" +msgid "Caution" +msgstr "[COLOR=orange]Pozor[/COLOR]" + +msgctxt "#32493" +msgid "Danger" +msgstr "[COLOR=crimson]Nebezpečenstvo[/COLOR]" + msgctxt "#32500" msgid "Weather forecast from Open-Meteo" msgstr "Predpoveď počasia z Open-Meteo" diff --git a/weather.openmeteo/resources/language/resource.language.ta_in/strings.po b/weather.openmeteo/resources/language/resource.language.ta_in/strings.po index 036087b67..e32a89503 100644 --- a/weather.openmeteo/resources/language/resource.language.ta_in/strings.po +++ b/weather.openmeteo/resources/language/resource.language.ta_in/strings.po @@ -635,6 +635,18 @@ msgctxt "#32456" msgid "grains" msgstr "தானியங்கள்" +msgctxt "#32491" +msgid "Notice" +msgstr "[COLOR=yellow]அறிவிப்பு[/COLOR]" + +msgctxt "#32492" +msgid "Caution" +msgstr "[COLOR=orange]எச்சரிக்கை[/COLOR]" + +msgctxt "#32493" +msgid "Danger" +msgstr "[COLOR=crimson]இடர்[/COLOR]" + msgctxt "#32500" msgid "Weather forecast from Open-Meteo" msgstr "திறந்த-மெட்டியோவிலிருந்து வானிலை முன்னறிவிப்பு" diff --git a/weather.openmeteo/resources/language/resource.language.uk_ua/strings.po b/weather.openmeteo/resources/language/resource.language.uk_ua/strings.po index 60348b4b0..7b7eaed97 100644 --- a/weather.openmeteo/resources/language/resource.language.uk_ua/strings.po +++ b/weather.openmeteo/resources/language/resource.language.uk_ua/strings.po @@ -622,6 +622,18 @@ msgctxt "#32456" msgid "grains" msgstr "зерна" +msgctxt "#32491" +msgid "Notice" +msgstr "[COLOR=yellow]Попередження[/COLOR]" + +msgctxt "#32492" +msgid "Caution" +msgstr "[COLOR=orange]Застереження[/COLOR]" + +msgctxt "#32493" +msgid "Danger" +msgstr "[COLOR=crimson]Небезпека[/COLOR]" + msgctxt "#32500" msgid "Weather forecast from Open-Meteo" msgstr "Прогноз погоди від Open-Meteo" diff --git a/weather.openmeteo/resources/language/resource.language.zh_cn/strings.po b/weather.openmeteo/resources/language/resource.language.zh_cn/strings.po index 69f6b5626..fba0b9665 100644 --- a/weather.openmeteo/resources/language/resource.language.zh_cn/strings.po +++ b/weather.openmeteo/resources/language/resource.language.zh_cn/strings.po @@ -623,6 +623,18 @@ msgctxt "#32456" msgid "grains" msgstr "颗粒" +msgctxt "#32491" +msgid "Notice" +msgstr "[COLOR=yellow]通知[/COLOR]" + +msgctxt "#32492" +msgid "Caution" +msgstr "[COLOR=orange]警告[/COLOR]" + +msgctxt "#32493" +msgid "Danger" +msgstr "[COLOR=crimson]危险[/COLOR]" + msgctxt "#32500" msgid "Weather forecast from Open-Meteo" msgstr "Open-Meteo 提供的天气预报" diff --git a/weather.openmeteo/resources/settings.xml b/weather.openmeteo/resources/settings.xml index d1a51400f..f65e1b92d 100644 --- a/weather.openmeteo/resources/settings.xml +++ b/weather.openmeteo/resources/settings.xml @@ -8,6 +8,7 @@ 0trueRunScript(weather.openmeteo,loc1) true + 0true 0true 0false 0falsetrueRunScript(weather.openmeteo,loc1) @@ -17,6 +18,7 @@ 0trueRunScript(weather.openmeteo,loc2) true + 0false 0true 0false 0falsetrueRunScript(weather.openmeteo,loc1) @@ -26,6 +28,7 @@ 0trueRunScript(weather.openmeteo,loc3) true + 0false 0true 0false 0falsetrueRunScript(weather.openmeteo,loc1) @@ -35,6 +38,7 @@ 0truetruetrueRunScript(weather.openmeteo,loc4) truetruetrue + 0falsetruetrue 0truetruetrue 0falsetruetrue 0falsetrueRunScript(weather.openmeteo,loc1) @@ -44,6 +48,7 @@ 0truetruetrueRunScript(weather.openmeteo,loc5) truetruetrue + 0falsetruetrue 0truetruetrue 0falsetruetrue 0falsetrueRunScript(weather.openmeteo,loc1) @@ -75,28 +80,33 @@ 01013false - + + 0cm32269 + 01013false + + + 0km32269 01013false - + 01013false - + 01013false - + 01013false - + 01013false - + 0hPa32269 00013false @@ -108,7 +118,7 @@ 082110false - 0124424false + 0244448false17998 0true @@ -125,142 +135,164 @@ 0true - 0false - 0false - 0true - 28 - 35 - 40 - -10 - -15 - -20 + 0falsetrue + 028-50150false32461truetrue + 0-10-50150false32461truetrue + 0falsetrue + 035-50150false32461truetrue + 0-20-50150false32461truetrue + 0truetrue + 040-50150false32461truetrue + 0-30-50150false32461truetrue 0true - 0false - 0false - 0true - 28 - 35 - 40 - - + 0falsetrue + 02801100false32462truetrue + 0falsetrue + 03501100false32462truetrue + 0truetrue + 04001100false32462truetrue + + + 0true + 0falsetrue + 010110false32463truetrue + 0falsetrue + 030110false32463truetrue + 0truetrue + 050110false32463truetrue + + 0true - 0false - 0false - 0true - 45 48 51 56 61 66 71 77 80 85 - 53 63 73 81 - 55 57 65 67 75 82 86 95 96 99 - - + 0falsetrue + 45 48 51 56 61 66 71 77 80 85truetrue + 0falsetrue + 53 63 73 81truetrue + 0truetrue + 55 57 65 67 75 82 86 95 96 99truetrue + + 0true - 0false - 0false - 0true - 50 - 75 - 90 - - + 0falsetrue + 050010200false32465truetrue + 0falsetrue + 070010200false32465truetrue + 0truetrue + 090010200false32465truetrue + + 0true - 0false - 0false - 0true - 50 - 75 - 90 - - + 0falsetrue + 050010200false32465truetrue + 0falsetrue + 070010200false32465truetrue + 0truetrue + 090010200false32465truetrue + + 0false - 0false - 0false - 0false - 3 - 6 - 8 - - + 0falsetrue + 030110falsetruetrue + 0falsetrue + 060110falsetruetrue + 0falsetrue + 080110falsetruetrue + + 0false - 0false - 0false - 0false - 0 - 0 - 0 - - + 0falsetrue + 00010100false32468truetrue + 0falsetrue + 00010100false32468truetrue + 0falsetrue + 00010100false32468truetrue + + 0false - 0false - 0false - 0false - 0 - 0 - 0 - - + 0falsetrue + 000150false32461truetrue + 00-5010false32461truetrue + 0falsetrue + 000150false32461truetrue + 00-5010false32461truetrue + 0falsetrue + 000150false32461truetrue + 00-5010false32461truetrue + + 0false - 0false - 0false - 0false - 0 - 0 - 0 - - + 0falsetrue + 00-50150false32461truetrue + 00-50150false32461truetrue + 0falsetrue + 00-50150false32461truetrue + 00-50150false32461truetrue + 0falsetrue + 00-50150false32461truetrue + 00-50150false32461truetrue + + 0false - 0false - 0false - 0false - 0 - 0 - 0 - - + 0falsetrue + 00010100false32468truetrue + 0falsetrue + 00010100false32468truetrue + 0falsetrue + 00010100false32468truetrue + + 0false - 0false - 0false - 0false - 0 - 0 - 0 - - - 0false - 0false - 0false - 0false - 0 - 0 - 0 + 0falsetrue + 00010100false32468truetrue + 0falsetrue + 00010100false32468truetrue + 0falsetrue + 00010100false32468truetrue + 0false + 0falsetrue + 00900101100false32464truetrue + 00900101100false32461truetrue + 0falsetrue + 00900101100false32464truetrue + 00900101100false32461truetrue + 0falsetrue + 00900101100false32464truetrue + 00900101100false32461truetrue + + 0false - 0false - 0false - 0false - 0 - 0 - 0 - - + 0falsetrue + 00900101100false32464truetrue + 00900101100false32461truetrue + 0falsetrue + 00900101100false32464truetrue + 00900101100false32461truetrue + 0falsetrue + 00900101100false32464truetrue + 00900101100false32461truetrue + + 0false - 0false - 0false - 0false - 0 - 0 - 0 - - + 0falsetrue + 000501000false32467truetrue + 0falsetrue + 000501000false32467truetrue + 0falsetrue + 000501000false32467truetrue + + 0false - 0false - 0false - 0false - 0 - 0 - 0 + 0falsetrue + 00010010000false32466truetrue + 0falsetrue + 00010010000false32466truetrue + 0falsetrue + 00010010000false32466truetrue + @@ -268,84 +300,84 @@ 0true - 0false - 0false - 0true - 40 - 60 - 80 + 0falsetrue + 040010400false32460truetrue + 0falsetrue + 060010400false32460truetrue + 0truetrue + 080010400false32460truetrue 0true - 0false - 0false - 0true - 50 - 100 - 150 + 0falsetrue + 050010400false32460truetrue + 0falsetrue + 0100010400false32460truetrue + 0truetrue + 0150010400false32460truetrue 0true - 0false - 0false - 0true - 20 - 25 - 50 + 0falsetrue + 02005200false32459truetrue + 0falsetrue + 02505200false32459truetrue + 0truetrue + 05005200false32459truetrue 0true - 0false - 0false - 0true - 40 - 50 - 100 + 0falsetrue + 04005200false32459truetrue + 0falsetrue + 05005200false32459truetrue + 0truetrue + 010005200false32459truetrue 0false - 0false - 0false - 0false - 0 - 0 - 0 + 0falsetrue + 0005200false32459truetrue + 0falsetrue + 0005200false32459truetrue + 0falsetrue + 0005200false32459truetrue 0true - 0false - 0false - 0true - 100 - 180 - 240 + 0falsetrue + 0100010400false32459truetrue + 0falsetrue + 0180010400false32459truetrue + 0truetrue + 0240010400false32459truetrue 0false - 0false - 0false - 0false - 0 - 0 - 0 + 0falsetrue + 0005200false32459truetrue + 0falsetrue + 0005200false32459truetrue + 0falsetrue + 0005200false32459truetrue 0false - 0false - 0false - 0false - 0 - 0 - 0 + 0falsetrue + 0005200false32459truetrue + 0falsetrue + 0005200false32459truetrue + 0falsetrue + 0005200false32459truetrue 0false - 0false - 0false - 0false - 0 - 0 - 0 + 0falsetrue + 0005200false32459truetrue + 0falsetrue + 0005200false32459truetrue + 0falsetrue + 0005200false32459truetrue @@ -355,57 +387,57 @@ 0false - 0false - 0false - 0false - 0 - 0 - 0 + 0falsetrue + 03005200false32458truetrue + 0falsetrue + 06005200false32458truetrue + 0falsetrue + 09005200false32458truetrue 0false - 0false - 0false - 0false - 0 - 0 - 0 + 0falsetrue + 03005200false32458truetrue + 0falsetrue + 06005200false32458truetrue + 0falsetrue + 09005200false32458truetrue 0false - 0false - 0false - 0false - 0 - 0 - 0 + 0falsetrue + 01005200false32458truetrue + 0falsetrue + 03005200false32458truetrue + 0falsetrue + 06005200false32458truetrue 0false - 0false - 0false - 0false - 0 - 0 - 0 + 0falsetrue + 03005200false32458truetrue + 0falsetrue + 06005200false32458truetrue + 0falsetrue + 09005200false32458truetrue 0false - 0false - 0false - 0false - 0 - 0 - 0 + 0falsetrue + 03005200false32458truetrue + 0falsetrue + 06005200false32458truetrue + 0falsetrue + 09005200false32458truetrue 0false - 0false - 0false - 0false - 0 - 0 - 0 + 0falsetrue + 03005200false32458truetrue + 0falsetrue + 06005200false32458truetrue + 0falsetrue + 09005200false32458truetrue @@ -416,13 +448,19 @@ 0default32269 - - 081124false - 0305560false - 0155560false + + 083112false17999 + 080112false32457 + 02213124false32457 + + + + 081124false17998 + 0305560false14044 + 0155560false14045 - + lightgrey deepskyblue forestgreen @@ -431,7 +469,7 @@ crimson - + 0false 0false @@ -466,7 +504,7 @@ truefalse - + 0false 0false diff --git a/weather.openmeteo/resources/template/strings.po b/weather.openmeteo/resources/template/strings.po index 31141d701..e890eff89 100644 --- a/weather.openmeteo/resources/template/strings.po +++ b/weather.openmeteo/resources/template/strings.po @@ -529,6 +529,10 @@ msgctxt "#32372" msgid "Furlong/Fortnight" msgstr "Furlong/Fortnight" +msgctxt "#32379" +msgid "cm" +msgstr "cm" + msgctxt "#32380" msgid "mm" msgstr "mm" @@ -655,6 +659,121 @@ msgctxt "#32456" msgid "grains" msgstr "" +msgctxt "#32457" +msgid "{0:d}:00" +msgstr "" + +#, read-only +msgctxt "#32458" +msgid "{0:d} grains/m³" +msgstr "" + +#, read-only +msgctxt "#32459" +msgid "{0:d} μg/m³" +msgstr "" + +#, read-only +msgctxt "#32460" +msgid "{0:d} AQI" +msgstr "" + +#, read-only +msgctxt "#32461" +msgid "{0:d} °C" +msgstr "" + +#, read-only +msgctxt "#32462" +msgid "{0:d} mm" +msgstr "" + +#, read-only +msgctxt "#32463" +msgid "{0:d} cm" +msgstr "" + +#, read-only +msgctxt "#32464" +msgid "{0:d} hPa" +msgstr "" + +#, read-only +msgctxt "#32465" +msgid "{0:d} km/h" +msgstr "" + +#, read-only +msgctxt "#32466" +msgid "{0:d} m" +msgstr "" + +#, read-only +msgctxt "#32467" +msgid "{0:d} W/m²" +msgstr "" + +#, read-only +msgctxt "#32468" +msgid "{0:d} %" +msgstr "" + +msgctxt "#32470" +msgid "Season" +msgstr "" + +msgctxt "#32471" +msgid "Spring" +msgstr "" + +msgctxt "#32472" +msgid "Summer" +msgstr "" + +msgctxt "#32473" +msgid "Fall" +msgstr "" + +msgctxt "#32474" +msgid "Winter" +msgstr "" + +msgctxt "#32480" +msgid "Night" +msgstr "" + +msgctxt "#32481" +msgid "Morning" +msgstr "" + +msgctxt "#32482" +msgid "Afternoon" +msgstr "" + +msgctxt "#32483" +msgid "Evening" +msgstr "" + +msgctxt "#32485" +msgid "Forecast" +msgstr "" + +msgctxt "#32490" +msgid "Autoscale" +msgstr "" + +msgctxt "#32491" +msgid "[COLOR=yellow]Notice[/COLOR]" +msgstr "" + +msgctxt "#32492" +msgid "[COLOR=orange]Caution[/COLOR]" +msgstr "" + +msgctxt "#32493" +msgid "[COLOR=crimson]Danger[/COLOR]" +msgstr "" + msgctxt "#32500" msgid "Weather forecast from Open-Meteo" msgstr ""