Skip to content

Instantly share code, notes, and snippets.

@afiqiqmal
Created June 21, 2018 13:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save afiqiqmal/069b21f4938964c4ccd5dd4ea80e95fc to your computer and use it in GitHub Desktop.
Save afiqiqmal/069b21f4938964c4ccd5dd4ea80e95fc to your computer and use it in GitHub Desktop.
Find the distances between 2 location
class Utils {
private double distance(double lat1, double lon1, double lat2, double lon2) {
// haversine great circle distance approximation, returns meters
double theta = lon1 - lon2;
double dist = Math.sin(deg2rad(lat1)) * Math.sin(deg2rad(lat2))
+ Math.cos(deg2rad(lat1)) * Math.cos(deg2rad(lat2))
* Math.cos(deg2rad(theta));
dist = Math.acos(dist);
dist = rad2deg(dist);
// 60 nautical miles per degree of seperation
dist = dist * 60;
// 1852 meters per nautical mile
dist = dist * 1852;
return (dist);
}
private double deg2rad(double deg) {
return (deg * Math.PI / 180.0);
}
private double rad2deg(double rad) {
return (rad * 180.0 / Math.PI);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment