問題:
提供された Java コード スニペットは、2 点間の距離を計算します。緯度と経度に基づいた 2 つのポイント。特に、かなりの距離にわたって複数のポイントがある場合、使用される式が若干不正確な結果を生成する可能性があることが懸念されます。
解決策:
この問題に対処するには、次の手順を実行します。高低差も考慮する Haversine メソッドの Java 実装:
<code class="java">/** * Calculate distance between two points in latitude and longitude taking * into account height difference. If you are not interested in height * difference pass 0.0. Uses Haversine method as its base. * * lat1, lon1 Start point lat2, lon2 End point el1 Start altitude in meters * el2 End altitude in meters * @returns Distance in Meters */ 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); }</code>
この実装は、高低差も組み込んで距離を正確に計算します。 2 点間の高低差を考慮しながら、ハバーサイン法を基礎として使用します。
以上が緯度、経度、高度を使用して 2 点間の距離を正確に計算するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。