How to calculate the distance between 2 places by using the GPS coordinates?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
You have to use the haversine formula: Haversine formula: R = earth’s radius (mean radius = 6,371km) Δlat = lat2− lat1 Δlong = long2− long1 a = sin²(Δlat/2) + cos(lat1).cos(lat2).sin²(Δlong/2) c = 2.atan2(√a, √(1−a)) d = R.c Where d is distance (your solution) and all the angles must be in radians Look for the haversine library, and in C:
|
|||
|
http://en.wikipedia.org/wiki/Great-circle_distance (Pythagorean theorem won't be enough because of earth's sphericity) |
|||
|
|