- j = f:read("*a")
- f:close()
- weather_now, pos, err = json.decode(j, 1, nil)
-
- if err then
- weather.widget.set_text("N/A")
- weather.icon:set_image(icons_path .. "na.png")
- elseif tonumber(weather_now["cod"]) == 200 then
- weather.icon_path = icons_path .. weather_now["weather"][1]["icon"] .. ".png"
- weather.icon:set_image(weather.icon_path)
+ local pos, err, icon
+ weather_now, pos, err = json.decode(f, 1, nil)
+
+ if not err and weather_now and tonumber(weather_now["cod"]) == 200 then
+ -- weather icon based on localtime
+ now = os.time()
+ local utc_midnight = string.gsub(read_pipe(utc_midnight_cmd), "\n", "")
+ local local_midnight = string.gsub(read_pipe(local_midnight_cmd), "\n", "")
+
+ if utc > 0 then -- we are to the East from GMT
+ if tonumber(local_midnight) >= tonumber(utc_midnight) then -- we are 1 day after the GMT, so have to return 1 day back
+ now = now - 86400
+ end
+ end
+
+ if utc < 0 then -- we are to the West from GMT
+ if tonumber(local_midnight) <= tonumber(utc_midnight) then -- we are 1 day before the GMT
+ now = now + 86400
+ end
+ end
+ -- if utc==0 leave it as is
+ local sunrise = tonumber(weather_now["sys"]["sunrise"])
+ local sunset = tonumber(weather_now["sys"]["sunset"])
+ local icon = weather_now["weather"][1]["icon"]
+
+ if sunrise <= now and now <= sunset then
+ icon = string.gsub(icon, "n", "d")
+ else
+ icon = string.gsub(icon, "d", "n")
+ end
+
+ weather.icon_path = icons_path .. icon .. ".png"
+