Skip to content

Instantly share code, notes, and snippets.

@govvin
Created May 12, 2021 01:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save govvin/0817926ee34562b2e4d008631ff6eb64 to your computer and use it in GitHub Desktop.
Save govvin/0817926ee34562b2e4d008631ff6eb64 to your computer and use it in GitHub Desktop.
Query for available Philippine barangay boundaries in OpenStreetMap
/*
Overpass Turbo query: Barangay boundaries in OpenStreetMap.
Run: https://overpass-turbo.eu/s/17ed
For admin_level details, see osm.org/wiki/Tag:boundary%3Dadministrative#11_admin_level_values_for_specific_countries
*/
[out:json][timeout:50];
{{geocodeArea:Philippines}}->.searchArea;
(
relation["admin_level"="10"](area.searchArea);
);
out geom;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment