คำตอบที่อัปเกรดเล็กน้อยจาก @David George:
public static double distance(double lat1, double lat2, double lon1,
double lon2, double el1, double el2) {
final int R = 6371;
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;
double height = el1 - el2;
distance = Math.pow(distance, 2) + Math.pow(height, 2);
return Math.sqrt(distance);
}
public static double distanceBetweenLocations(Location l1, Location l2) {
if(l1.hasAltitude() && l2.hasAltitude()) {
return distance(l1.getLatitude(), l2.getLatitude(), l1.getLongitude(), l2.getLongitude(), l1.getAltitude(), l2.getAltitude());
}
return l1.distanceTo(l2);
}
ฟังก์ชั่นระยะทางเหมือนกัน แต่ฉันได้สร้างฟังก์ชัน I small wrapper ซึ่งใช้วัตถุตำแหน่ง 2 ชิ้น ด้วยเหตุนี้ฉันจึงใช้ฟังก์ชันระยะทางก็ต่อเมื่อสถานที่ทั้งสองแห่งมีระดับความสูงจริง ๆ เพราะบางครั้งก็ไม่มี และอาจนำไปสู่ผลลัพธ์ที่แปลก (หากสถานที่ไม่ทราบระดับความสูง 0 จะถูกส่งกลับ) ในกรณีนี้ฉันถอยกลับไปที่ฟังก์ชันdistanceToแบบคลาสสิก