I use this tutorial : Using OpenWeatherMap API Key
When I use this url with the city name the name is correct. So if I put "Paris" I have the word "Paris" on my application:
URL url = new URL("http://api.openweathermap.org/data/2.5/weather?q="+city+"&APPID=ea574594b9d36ab688642d5fbeab847e");
But when I try to do the same thing with latitude and longitude instead of the name of the city. The data of temperature, wind, pressure, ... are right. There is just the name of the city that is not right. Instead of having "Paris" I have something else.
URL url = new URL("http://api.openweathermap.org/data/2.5/weather?lat=%s&lon=%s&APPID=ea574594b9d36ab688642d5fbeab847e");
Example, by entering this into the browser. The numbers are reduced to two digits after the decimal point.