从 GEO 坐标确定国家/地区 ISO 代码

发布于 2024-10-11 02:39:53 字数 78 浏览 5 评论 0原文

我有一个包含城市的 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 技术交流群。

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

发布评论

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

评论(2

吹梦到西洲 2024-10-18 02:39:53

也许我误解了这个问题,但如果你有:

  1. [X1,Y1] - 你的位置的坐标
  2. [Xn,Yn] - 对于每个城市

那么为什么不使用简单的 sqrt((X1-Xn) 来计算距离)^2 + (Y1-Yn)^2) 公式?

您可以通过做出一些巧妙的选择来进一步优化它,仅从数据库获取位置的附近,然后对这些城市进行距离测量。

Maybe I misunderstood the question, but if you have:

  1. [X1,Y1] - the coordinates of your position
  2. [Xn,Yn] - for each city

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.

爱情眠于流年 2024-10-18 02:39:53

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.

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