Custom Weather URL BUTTONS - Force CELSIUS
Custom Weather URL BUTTONS - Force CELSIUS
I added my custom url http://www.accuweather.com/ro/ro/buchar ... ail-hourly but i get FAHRENHEIT instead of CELSIUS , despite i have checked use METRIC SYSTEM. So i need to add something to my url to force CELSIUS.
Re: Custom Weather URL BUTTONS - Force CELSIUS
I'm not sure if there's a url parameter or not, but on the top-right of that page, you can select celsius. I couldn't get it to work completely "as-expected" in either Aeris or my webbrowser, so if you select celsius and it doesn't seem to update: right-click on the page and select "refresh" and it should update to show celsius. This should also stay after Aeris is restarted.
Re: Custom Weather URL BUTTONS - Force CELSIUS
Hello. I found the solution to your problem regarding the AccuWeather feed. To change temperature units from Fahrenheit to Celsius you have to simply add the parameterZMEU.NET wrote: ↑Fri Sep 02, 2016 7:50 pm I added my custom url http://www.accuweather.com/ro/ro/bucharest/287430/hourly-weather-forecast/287430?lang=ro#detail-hourly but i get FAHRENHEIT instead of CELSIUS , despite i have checked use METRIC SYSTEM. So i need to add something to my url to force CELSIUS.
Code: Select all
&unit=c
Code: Select all
?unit=c
Code: Select all
https://www.accuweather.com/ro/ro/bucharest/287430/hourly-weather-forecast/287430?unit=c&lang=ro
Code: Select all
https://www.accuweather.com/en/gb/london/ec4a-2/weather-forecast/328328?lang=en-gb&unit=c
Code: Select all
&metric=1
Code: Select all
?metric=1
Code: Select all
https://rss.accuweather.com/rss/liveweather_rss.asp?metric=1&locCode=EUR|RO|RO010|BUCURESTI|
Code: Select all
https://rss.accuweather.com/rss/liveweather_rss.asp?locCode=EUR|UK|UK001|LONDON|&metric=1
Hope this helps.
Re: Custom Weather URL BUTTONS - Force CELSIUS
Thanks, brian!