Created
April 12, 2017 03:37
-
-
Save stevevance/5dd49ab4865f4e290770df585ea901db to your computer and use it in GitHub Desktop.
Find grocery stores within 400 meters of the METRO Green Line train: http://overpass-turbo.eu/s/oj3
This file contains hidden or 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 has been generated by the overpass-turbo wizard. | |
The original search was: | |
“railway=light_rail and name="Green Line"” | |
*/ | |
[out:json][timeout:25]; | |
// gather results | |
( | |
// query part for: “railway=light_rail and name="Green Line"” | |
way["railway"="light_rail"]["name"="Green Line"]({{bbox}}); | |
node(around:400)["shop"="supermarket"]; | |
); | |
// print results | |
out body; | |
>; | |
out skel qt; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment