Skip to content

Instantly share code, notes, and snippets.

@mmkay
Created January 6, 2016 15:52
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 mmkay/fa7b8dfcf1258ff16cb8 to your computer and use it in GitHub Desktop.
Save mmkay/fa7b8dfcf1258ff16cb8 to your computer and use it in GitHub Desktop.
Find all railway tracks in bounding box using Overpass Query Language - http://overpass-turbo.eu/
[out:json][timeout:25];
// gather results
(
// query part for: “railway”
way["railway"]( 54.0598, 18.7280, 54.1231, 18.8203);
);
// 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