Skip to content

Instantly share code, notes, and snippets.

@govvin
Created May 11, 2016 10:59
Show Gist options
  • Save govvin/2fef7ae6253f591a7377daf29709616a to your computer and use it in GitHub Desktop.
Save govvin/2fef7ae6253f591a7377daf29709616a to your computer and use it in GitHub Desktop.
Display Public Transport routes in given bbox
/*
This has been generated by the overpass-turbo wizard.
The original search was:
“route=bus”
*/
[out:json][timeout:25];
// gather results
(
// query part for: “route=bus”
node["route"="bus"]({{bbox}});
way["route"="bus"]({{bbox}});
relation["route"="bus"]({{bbox}});
);
// 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