Tuluttut – blog o niczym

Tuluttut – blog about nothing, mostly in Polish.

Monthly Archives: Styczeń 2016

Find all railway tracks that have nodes in bounding box using OQL

Using Overpass Turbo, code in Overpass Query Language:


[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;

Result:

oql-all-tracks