Hi,
I'm using gps library generated coordinates, i want to measure the distance between two coordinates.
I googled & found this Java function.
How can i call this from b4a ?
Also What is the values of el1 & el2 means? & How i obtain them from gps library?
I'm using gps library generated coordinates, i want to measure the distance between two coordinates.
I googled & found this Java function.
How can i call this from b4a ?
B4X:
#if JAVA
public static double distance(double lat1, double lat2, double lon1, double lon2, double el1, double el2) {
final int R = 6371; // Radius of the earth
double latDistance = Math.toRadians(lat2 - lat1);
double lonDistance = Math.toRadians(lon2 - lon1);
double a = Math.sin(latDistance / 2) * Math.sin(latDistance / 2)
+ Math.cos(Math.toRadians(lat1)) * Math.cos(Math.toRadians(lat2))
* Math.sin(lonDistance / 2) * Math.sin(lonDistance / 2);
double c = 2 * Math.atan2(Math.sqrt(a), Math.sqrt(1 - a));
double distance = R * c * 1000; // convert to meters
double height = el1 - el2;
distance = Math.pow(distance, 2) + Math.pow(height, 2);
return Math.sqrt(distance);
}
#End If