gpt4 book ai didi

java - 为什么 distanceTo() 不足以计算距离?

转载 作者:行者123 更新时间:2023-12-01 12:13:31 24 4
gpt4 key购买 nike

我读了一些代码并看到了这个方法:

private double calculateDistance(Coordinate coordinate1, Coordinate coordinate2) {
return coordinate1.distance(coordinate2) * (Math.PI * 6371.0)/ 180;
}

有人知道为什么计算需要最后一部分吗?

* (Math.PI * 6371.0)/180; ?

最佳答案

6371.0 看起来像 the Earth's radius in km 。乘以 Math.PI/180 将度数转换为弧度。

这会将弧度距离转换为公里。

关于java - 为什么 distanceTo() 不足以计算距离?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27136089/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com