MatBanik
MatBanik

Reputation: 26870

Converting longitude latitude degrees to miles in Java

How do you convert degrees (longitude latitude) to miles in Java?

For example if I want to move longitude by 69.11 miles, I add 1 degree. Do I do simple calculation or should I use some kind of API.

Upvotes: 1

Views: 3811

Answers (1)

corsiKa
corsiKa

Reputation: 82589

From http://www.meridianworlddata.com/Distance-Calculation.asp:

Improved approximate distance in miles:

    sqrt(x * x + y * y)

where x = 69.1 * (lat2 - lat1)
and y = 69.1 * (lon2 - lon1) * cos(lat1/57.3) 

There were a few other good sites on the google.

Upvotes: 1

Related Questions