Skip to content

Instantly share code, notes, and snippets.

@stevevance
Created April 12, 2017 03:37
Show Gist options
  • Save stevevance/5dd49ab4865f4e290770df585ea901db to your computer and use it in GitHub Desktop.
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 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