确定一组坐标是否在同一区域内

发布于 2024-09-03 21:53:18 字数 99 浏览 4 评论 0原文

当我说坐标时,我指的是地球的纬度和经度坐标。我想确定一组坐标是否在同一区域内(我的截止点是 200 英里)。我一直在谷歌搜索“集群算法”,但我不确定哪种最适合我。

谢谢

When I say coordinates I mean latitude and longitude coordinates of earth. I want to determine if a set of coordinates are within the same area (my cutoff is 200 miles). I've been googling "cluster alorithm" but I'm uncertain which would work best for me.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

凑诗 2024-09-10 21:53:18

享受:http://www.movable-type.co.uk/scripts/ latlong.html

使用的公式为:

d = acos(sin(lat1).sin(lat2)+cos(lat1).cos(lat2).cos(long2−long1)).R

其中d为距离,R为地球半径,{(lat1;long1), (lat2;long2)}为两个坐标。

Enjoy: http://www.movable-type.co.uk/scripts/latlong.html

Formula used is:

d = acos(sin(lat1).sin(lat2)+cos(lat1).cos(lat2).cos(long2−long1)).R

In which d is the distance, R is earth's radius, and {(lat1;long1), (lat2;long2)} are the two coordinates.

む无字情书 2024-09-10 21:53:18

IMSL C#库具有k-means、DBSCAN等聚类分析功能。我已经有许可证,所以我将使用这个库。

The IMSL C# library has k-means, DBSCAN, and other cluster analysis function. I already have a license so I'm going to use this library.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文