Skip to content

Instantly share code, notes, and snippets.

@reinvented
Last active January 5, 2016 18:08
Show Gist options
  • Save reinvented/c83ddb1a11d26f7bf120 to your computer and use it in GitHub Desktop.
Save reinvented/c83ddb1a11d26f7bf120 to your computer and use it in GitHub Desktop.
Overpass API Query to extract POIs around a point
[out:json][timeout:25];
// gather results
(
way["office"~".*"](around:100,46.23361, -63.12738);
node["office"~".*"](around:100,46.23361, -63.12738);
way["shop"~".*"](around:100,46.23361, -63.12738);
node["shop"~".*"](around:100,46.23361, -63.12738);
way["amenity"~"restaurant|cafe|library|bank|theatre|school|college|university"](around:100,46.23361, -63.12738);
node["amenity"~"restaurant|cafe|library|bank|theatre|school|college|university"](around:100,46.23361, -63.12738);
);
// print results
out tags;
>;
out qt;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment