Skip to content

Instantly share code, notes, and snippets.

@govvin
Last active March 1, 2016 14:12
Show Gist options
  • Save govvin/abcd5b3b96b000186d21 to your computer and use it in GitHub Desktop.
Save govvin/abcd5b3b96b000186d21 to your computer and use it in GitHub Desktop.
Overpass Turbo Query all buildings within a given area

#Overpass Turbo Query Query all buildings within a named area. A polygon is required.

[out:xml];
{{AOI="San Juan"}}


(
  area["name"={{AOI}}];
  way
    ["building"]
    (area);
  area["name"={{AOI}}];
  relation
    ["building"]
    (area);
);
(
  ._;
  >;
);
out meta qt;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment