Skip to content

Instantly share code, notes, and snippets.

Created November 19, 2014 05:32
Show Gist options
  • Save anonymous/04fb79638f9ee552c7a0 to your computer and use it in GitHub Desktop.
Save anonymous/04fb79638f9ee552c7a0 to your computer and use it in GitHub Desktop.
data exported by overpass turbo
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@ebrelsford
Copy link

OSM data tagged leisure=garden via overpass turbo using the following query:

[out:json][timeout:25];
(
  node["leisure"="garden"](40.46,-74.28,40.93,-73.72);
  way["leisure"="garden"](40.46,-74.28,40.93,-73.72);
  relation["garden:type"="community"](40.46,-74.28,40.93,-73.72);
);
out body;
>;
out skel qt;

@ebrelsford
Copy link

We will get community garden data using the following query as the data is updated:

[out:json][timeout:25];
(
  node["leisure"="garden"]["garden:type"="community"](40.46,-74.28,40.93,-73.72);
  way["leisure"="garden"]["garden:type"="community"](40.46,-74.28,40.93,-73.72);
  relation["garden:type"="community"]["garden:type"="community"](40.46,-74.28,40.93,-73.72);
);
out body;
>;
out skel qt;

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment