确定一组坐标是否在同一区域内
当我说坐标时,我指的是地球的纬度和经度坐标。我想确定一组坐标是否在同一区域内(我的截止点是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
享受:http://www.movable-type.co.uk/scripts/ latlong.html
使用的公式为:
其中d为距离,R为地球半径,{(lat1;long1), (lat2;long2)}为两个坐标。
Enjoy: http://www.movable-type.co.uk/scripts/latlong.html
Formula used is:
In which d is the distance, R is earth's radius, and {(lat1;long1), (lat2;long2)} are the two coordinates.
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.