Freebase 从行政区划中选择所有城市

发布于 2024-09-15 17:08:04 字数 104 浏览 4 评论 0原文

关于如何从某个行政区划中选择所有城镇有什么想法吗?可以是任何国家。尝试通过 fips_10_4_region_code 搜索但无法使其工作,似乎 /location/citytown 没有此属性

Any ideas on how to select all citytowns from certain administrative division? Can be any country. Tried to search by fips_10_4_region_code but can't get it working, it seems that /location/citytown doesn't have this property

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

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

发布评论

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

评论(1

梦过后 2024-09-22 17:08:04

如果您知道行政区划的 Freebase ID,那么您可以使用这样的查询找到其包含的所有城市/城镇:

[{
  "id":   null,
  "name": null,
  "type": "/location/citytown",
  "/location/location/containedby": {
    "id": "/en/california"
  }
}]​

还有一个实验性的 Geosearch API,它可以在给定的范围内查找地理定位的城市主题的形状(如果有的话)。

If you know the Freebase ID of the administrative division then you can find all city/towns contained by it using a query like this:

[{
  "id":   null,
  "name": null,
  "type": "/location/citytown",
  "/location/location/containedby": {
    "id": "/en/california"
  }
}]​

There's also an experimental Geosearch API which can find geolocated cities within given topic's shape (if it has one).

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