OverPass API - 坐标周围限速
OverPass API - SpeedLimit around a co-ordinates
我们正在开发一个应用程序,它需要找到特定位置周围的速度...我们计划使用 OverPass API 首先获得速度并尝试按照下面提到的文章进行操作。
Overpass api to find the speed limit for a co-ordinate?
around 方法的语法如下所示。
http://www.overpass-api.de/api/xapi?*[maxspeed=*][around=2500,8.5580957,76.880541]
但是我们没有得到任何结果...如果语法正确,谁能指导我们?
失败原因: around
不是 XAPI 支持的谓词(请参阅原始手册,https://wiki.openstreetmap.org/wiki/Xapi)。所以你不能在你的查询中使用它。
解决方案 1: 您可以将 around
替换为受支持的 bbox
。例如,下面的查询可以正常工作。
http://www.overpass-api.de/api/xapi?*[bbox=-0.489,51.28,-0.436,51.36][maxspeed=*]
您将收到约 300kB 的数据
方案二:如果还想around
,请使用OverpassQL/XML:
- 立交桥QL查询:
way(around:2500,8.5580957,76.880541)[maxspeed];out;
。你可以在 http://www.overpass-api.de/query_form.html 试试
立交桥XML查询:
<query type="way">
<around radius="2500" lat="8.5580957" lon="76.880541" />
<has-kv k="maxspeed" />
</query>
您可以在 http://overpass-turbo.eu/ 试一试。
对于我来说,Overpass XML 看起来更具可读性。另外 XML 是首选,因为 XSLT 可以将其转换为任何其他常规格式。
我们正在开发一个应用程序,它需要找到特定位置周围的速度...我们计划使用 OverPass API 首先获得速度并尝试按照下面提到的文章进行操作。
Overpass api to find the speed limit for a co-ordinate?
around 方法的语法如下所示。
http://www.overpass-api.de/api/xapi?*[maxspeed=*][around=2500,8.5580957,76.880541]
但是我们没有得到任何结果...如果语法正确,谁能指导我们?
失败原因: around
不是 XAPI 支持的谓词(请参阅原始手册,https://wiki.openstreetmap.org/wiki/Xapi)。所以你不能在你的查询中使用它。
解决方案 1: 您可以将 around
替换为受支持的 bbox
。例如,下面的查询可以正常工作。
http://www.overpass-api.de/api/xapi?*[bbox=-0.489,51.28,-0.436,51.36][maxspeed=*]
您将收到约 300kB 的数据
方案二:如果还想around
,请使用OverpassQL/XML:
- 立交桥QL查询:
way(around:2500,8.5580957,76.880541)[maxspeed];out;
。你可以在 http://www.overpass-api.de/query_form.html 试试
立交桥XML查询:
<query type="way"> <around radius="2500" lat="8.5580957" lon="76.880541" /> <has-kv k="maxspeed" /> </query>
您可以在 http://overpass-turbo.eu/ 试一试。
对于我来说,Overpass XML 看起来更具可读性。另外 XML 是首选,因为 XSLT 可以将其转换为任何其他常规格式。