根据纬度、经度获取邮政编码

发布于 2024-09-14 19:14:27 字数 306 浏览 6 评论 0原文

我已从 http://www.ordnancesurvey.co 下载了英国邮政编码列表。 uk/oswebsite/opendata/index.html 并将其安装在 MSSQL 2005 数据库中。该表由邮政编码、纬度和经度组成。我需要一种有效的方法来获取距给定纬度/经度最近的邮政编码。计算两点之间的距离并选择最小的距离意味着循环遍历每个查询的所有数据。大约有 170 万个条目。谢谢。

I have downloaded the UK postcode list from http://www.ordnancesurvey.co.uk/oswebsite/opendata/index.html and installed it in a MSSQL 2005 database. The table consists of postcode, latitude and longitude. I need an efficient method to get the nearest postcode to a given lat/long. Calculating the distance between two points and choosing the smallest would mean cycling through all the data for each query. There are approx 1.7 million entries. Thanks.

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

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

发布评论

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

评论(1

淡淡の花香 2024-09-21 19:14:27

您可以通过首先使用“圆近似”过滤查询来加快计算速度 - 即。返回确定半径delta内的所有邮政编码。基本查询应该是这样的:

SELECT postcode, x, y FROM table WHERE ((x BETWEEN x - delta AND x + delta) AND (y BETWEEN y - delta AND y + delta))

现在剩下的数据量应该更容易管理。

另外,如果您正在开发一些“关键任务”,请务必查看 PostGIS。他们可能已经解决了您可能遇到的一些问题......;)

You could fasten up your calculations by first filter your query using a "circle approximation" - ie. return all postcodes inside a determined radius delta. The basic query should be something like this:

SELECT postcode, x, y FROM table WHERE ((x BETWEEN x - delta AND x + delta) AND (y BETWEEN y - delta AND y + delta))

And now amount of data left should be a bit more manageable.

Also, if you are developing something "mission critical", be sure to take a look at PostGIS. It might be that they have already solved some problems you might run into... ;)

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