是否有“区域内服务”?基于美国街道地址的算法?

发布于 2024-10-16 13:34:00 字数 159 浏览 1 评论 0原文

我有一个美国街道地址数据库,我的一位客户为其提供服务。我正在制作一个表格,允许客户输入他们的邮政编码或地址,以查看他们所在地区是否有服务。

是否有“外面”的组件或算法可以用作模板?

我在之前的地理定位项目中使用过 GIS 和 Tiger zips,但不确定这是最好的方法。

I have a database of US based street addresses for which a client of mine offers their services. I am working on a form that would allow a customer to enter in their zip code or address to see if there is service in their area.

Is there a component or an algorithm "out there" somewhere that I can use as a template?

I have played with GIS and the tiger zips in a previous geolocation project but am not sure this is the best way to go.

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

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

发布评论

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

评论(1

晌融 2024-10-23 13:34:00

这是一个粗略的做法:

  1. 一、客户的服务
    领土必须是地理上的
    以面积单位或
    地图上的多边形。
  2. 其次,获取地理信息
    邮政编码多边形的坐标
    (您可以解析形状文件)。
  3. 三、循环查找服务
    与所选邮政编码多边形重叠的多边形
    通过执行 重叠多边形
    测试
    。你可以使用Python
    shapely 库

当然,您可以通过添加有关多边形的质心邻近结构或邻接结构的信息来加快速度,从而减少所需的循环。

祝你好运

Here is one crude approach:

  1. First, the client's service
    territory needs to be geographically
    referenced as areal units or
    polygons on a map.
  2. Second, get the geographic
    coordinates of the zip-code polygons
    (you can parse the shapefile).
  3. Third, loop over and find the service
    polygons that overlap the chosen zip-code polygon
    by performing an overlapping polygon
    test
    . You can use the python
    shapely library.

Of course, you can speed things up by some how adding information on the centroid proximity structure or contiguity structure of the polygons so there was less looping needed.

good luck

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