Skip to content

Instantly share code, notes, and snippets.

@FelipeSBarros
Created November 8, 2017 11:21
Show Gist options
  • Save FelipeSBarros/05c85b8dd882c3ba7b58632309551197 to your computer and use it in GitHub Desktop.
Save FelipeSBarros/05c85b8dd882c3ba7b58632309551197 to your computer and use it in GitHub Desktop.
/*
This is an example Overpass query.
Try it out by pressing the Run button above!
You can find more examples with the Load tool.
*/
[out:json][timeout:25];
//Buscando area "Posadas"
area(3602294383)->.searchArea;
//Results
(
// query part for: “route=bus”
node["route"="bus"](area.searchArea);
way["route"="bus"](area.searchArea);
relation["route"="bus"](area.searchArea);
);
// 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