Skip to content

Instantly share code, notes, and snippets.

@louwersj
Created April 3, 2024 15:30
Show Gist options
  • Save louwersj/5f917d6f4191a4d60d1db9fbc7313101 to your computer and use it in GitHub Desktop.
Save louwersj/5f917d6f4191a4d60d1db9fbc7313101 to your computer and use it in GitHub Desktop.
search openstreetmaps with overpass turbo for military objects in Kaliningrad Oblast
[out:json];
area[name="Калининградская область"]->.searchArea; // Setting the search area to Kaliningrad Oblast
(
node["military"](area.searchArea);
way["military"](area.searchArea);
relation["military"](area.searchArea);
);
out body;
>;
out skel qt;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment