Query Overpass turbo by latitude longitude

筅森魡賤 提交于 2019-12-11 05:15:28

问题


How do I ask overpass turbo to give me the way tags corresponding to a set of latitude longitude coordinates?

thanks!

This is what i tried so far:

[out:json][timeout:25];
(way(around:1.0,52.004940, 4.369381));
(._;>;);
out tags;

But there are 2 problems here. 1. I get a list of different nodes and ways. But i actually only want the way where there is a speed limit given 2. I don't know how to write a query for a whole list of coordinates. Not sure if this is even possible.


回答1:


Here's how the query should look like to return ways with maxspeed tags at a given location with 1m radius:

way[maxspeed](around:1.0,52.004940, 4.369381);
out tags;


来源:https://stackoverflow.com/questions/40992114/query-overpass-turbo-by-latitude-longitude

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!