Skip to content Skip to sidebar Skip to footer

How To Convert Polar System To Latitude And Longitude

i am trying to develop an android app . I use a web service that require my location in latitude and longitude (where i am standing) and giving a feedback another location data. Bu

Solution 1:

Use formula:

Latitude = distance * (Math.cos(degree));
Longitude = distance * (Math.sin(degree));

Post a Comment for "How To Convert Polar System To Latitude And Longitude"