Skip to content

Instantly share code, notes, and snippets.

@kovid-rathee
Forked from Usse/distance.sql
Created August 8, 2017 03:33
Show Gist options
  • Save kovid-rathee/b0200dc01f2ec0054a98d9fc6f80b771 to your computer and use it in GitHub Desktop.
Save kovid-rathee/b0200dc01f2ec0054a98d9fc6f80b771 to your computer and use it in GitHub Desktop.
MySQL calculate distance between two latitude/longitude coordinates
CREATE FUNCTION `lat_lng_distance` (lat1 FLOAT, lng1 FLOAT, lat2 FLOAT, lng2 FLOAT)
RETURNS FLOAT
DETERMINISTIC
BEGIN
RETURN 6371 * 2 * ASIN(SQRT(
POWER(SIN((lat1 - abs(lat2)) * pi()/180 / 2),
2) + COS(lat1 * pi()/180 ) * COS(abs(lat2) *
pi()/180) * POWER(SIN((lng1 - lng2) *
pi()/180 / 2), 2) ));
END
--Returns the distance in kilometers, assuming a earth radius of 6,371 km.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment