Last active
January 25, 2016 12:13
-
-
Save flowolf/bb58237fbe4f68ebf0e3 to your computer and use it in GitHub Desktop.
query all phone booths in Austria
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
This is an Overpass query. | |
It queries all phone booths in Austria. | |
*/ | |
area | |
[admin_level=2] | |
["boundary"="administrative"] | |
["name"="Österreich"]->.a; | |
node | |
(area.a) | |
[amenity=telephone] | |
({{bbox}}); | |
out; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment