Hi, I want to get an intersection between two streets in my city using Overpass API. When I execute it, the response takes 2 minutes or more.
Using overpass turbo:
area[name="Montevideo"]->.boundaryarea;
way(area.boundaryarea)[highway][name="Avenida Italia"];node(w)->.n1;
way(area.boundaryarea)[highway][name="Avenida Bolivia"];node(w)->.n2;
node.n1.n2;
out meta;
Using the browser:
http://overpass-api.de/api/interpreter?data=area[name="Montevideo"]->.boundaryarea;way(area.boundaryarea)[highway][name="Avenida Italia"];node(w)->.n1;way(area.boundaryarea)[highway][name="Avenida Bolivia"];node(w)->.n2;node.n1.n2;out;
Mybe I made the wrong filter?
Thanks!
asked
15 Sep '16, 18:55
PabloGarin
11●1●1●2
accept rate:
0%
general note: this help system keeps linking only a part of the URL, despite the "code" formatting.. just copy and paste it to try the URL.