This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static float distFrom(float lat1, float lng1, float lat2, float lng2) { | |
double earthRadius = 6371000; //meters | |
double dLat = Math.toRadians(lat2-lat1); | |
double dLng = Math.toRadians(lng2-lng1); | |
double a = Math.sin(dLat/2) * Math.sin(dLat/2) + | |
Math.cos(Math.toRadians(lat1)) * Math.cos(Math.toRadians(lat2)) * | |
Math.sin(dLng/2) * Math.sin(dLng/2); | |
double c = 2 * Math.atan2(Math.sqrt(a), Math.sqrt(1-a)); | |
float dist = (float) (earthRadius * c); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |