I\'m trying to get Yahoo! weather API with temperatures in Celsius.
I\'ve added &u=c
in the request, but it\'s still returning data in Fahrenheit.
Whenever I had to call a temperature that I wanted in Celsius I just used a simple conversion function:
function FtoC(temp) {return Math.round((temp - 32) / (9 / 5));}
Then again, I wanted to toggle between Fahrenheit and Celsius. Just calling the Celsius JSON element from Yahoo is probably better if all you want to use is Celsius.