How do I calculate distance between two gps coordinates (using latitude and longitude) ?
|
|
Calculate the distance between two coordinates by latitude and longitude, including a Javascript implementation. W and S locations and negative. Remember minutes and seconds are out of 60 so 31 30'S is -31.50 degrees. Don't forget to convert degrees to radians. Many languages have this function. Or its a simply calculation: radians = degrees * PI / 180
|
||||
|
|
|
Look for haversine with Google; here is my solution:
|
|||||||||||
|
|
This algorithm is known as the Great Circle distance. |
|||
|
|
|
C# Version of Haversine
|
|||
|
|
|
Here it is in C# (lat and long in radians):
If your lat and long are in degrees then divide by 180/PI to convert to radians. |
||||
|
|
|
It depends on how accurate you need it to be, if you need pinpoint accuracy, is best to look at an algorithm with uses an ellipsoid, rather than a sphere, such as Vincenty's algorithm, which is accurate to the mm. http://en.wikipedia.org/wiki/Vincenty%27s_algorithm |
|||
|
|
|
This is very easy to do with geography type in SQL Server 2008.
4326 is SRID for WGS84 elipsoidal Earth model |
|||
|
|
|
A T-SQL function, that I use to select records by distance for a center
|
||||
|
|
|
|||
|
|
|
Here is rubygems version - https://rubygems.org/gems/haversine_distance |
|||
|
|
|
I recently had to do the same thing. I found this website to be very helpful explaining spherical trig with examples that were easy to follow along with. |
|||
|
|
|
http://www.math.montana.edu/frankw/ccp/cases/Global-Positioning/spherical-coordinates/learn.htm This page explains it very clearly. |
|||
|
|
|
// Maybe a typo error ?
should be
|
||||
|
|
|
If you need something more accurate then have a look at this.
|
||||
|
|
|
I guess you want it along the curvature of the earth. Your two points and the center of the earth are on a plane. The center of the earth is the center of a circle on that plane and the two points are (roughly) on the perimeter of that circle. From that you can calculate the distance by finding out what the angle from one point to the other is. If the points are not the same heights, or if you need to take into account that the earth is not a perfect sphere it gets a little more difficult. |
|||
|
|
|
Java Version of Haversine Algorithm based on Roman Makarov`s reply to this thread
|
||||
|
|
|
This Lua code is adapted from stuff found on Wikipedia and in Robert Lipe's GPSbabel tool:
|
|||
|
|
|
you can find a implementation of this (with some good explanation) in F# on fssnip here are the important parts:
|
|||
|
|
|
This is version from "Henry Vilinskiy" adapted for MySQL and Kilometers:
|
||||
|
|
|
I needed to implement this in PowerShell, hope it can help someone else. Some notes about this method
|
|||
|
|
protected by Community♦ Mar 23 at 8:13
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.