Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Android

WeatherApp - change temperature to Celsius!

I need help with the android weather app, it is showing the data in Fahrenheit but I want it in celcius. Can anybody help me convert it?

2 Answers

Ezequiel Zanetta
Ezequiel Zanetta
11,111 Points

Hey, if you need to change Fahrenheit to Celcius simply make this algorithm "(F - 32) * 5 / 9" where F is your farenheit temperature. More info here -> http://javauk.blogspot.com.ar/2013/06/java-celsius-to-fahrenheit.html

Regards

Thanks my friend :)

Answer from Stephen Bone

String forecastUrl = "https://api.forecast.io/forecast/" + apiKey + "/" + latitude + "," + longitude + "?units=si";

You can just simply add the "?unity=si" (same as above) in your forecaseUrl string and that would turn it to C.