从 GEO 坐标确定国家/地区 ISO 代码
我有一个包含城市的 MySQL 表,并且对于每个城市我都有地理坐标。我想构建一个查询,确定给定任何随机位置坐标的最近城市。谁能给我举个例子吗?
I have a MySQL table with cities, and for each city I have the geo coordinates. I want to build a query that determines the nearest city given coordinates of any random position. Can anyone give me an example?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
也许我误解了这个问题,但如果你有:
那么为什么不使用简单的
sqrt((X1-Xn) 来计算距离)^2 + (Y1-Yn)^2)
公式?您可以通过做出一些巧妙的选择来进一步优化它,仅从数据库获取位置的附近,然后对这些城市进行距离测量。
Maybe I misunderstood the question, but if you have:
Then why not just calculate the distance using the simple
sqrt((X1-Xn)^2 + (Y1-Yn)^2)
formula?You could optimize it further be making some clever selects, to only get the vicinity of the position from the DB and then run the distance measuring on these cities.
http://www.davidus.sk/web/main/index/article_id/8
就是这样,距离实际上是半径。它将返回其中的所有城市。
http://www.davidus.sk/web/main/index/article_id/8
There you go, distance is actually a radius. It will return all cities within it.