Reputation: 545
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.
Upvotes: 2
Views: 3622
Reputation: 3668
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;
Upvotes: 4