Bare mode could allow bigger areas
Print specially styled OpenStreetMap maps for detail surveys
Brought to you by:
kempelen
Bare mode does not render as much items. It should be possible to decrease the downloaded data, and also the "counted" data, thus allow bigger areas to be selected.
E.g. this QL could be used to filter out building, amenity and shop objects, which are probably not rendered in bare mode anyway:
[out:json][timeout:25];
(
node({{bbox}});
way[!building]({{bbox}});
relation({{bbox}});
)->.a;
(
way[building]({{bbox}});
node[amenity]({{bbox}});
node[shop]({{bbox}});
)->.b;
(.b; >;)->.c;
(.a; - .c;);
// print results
out body;
>;
out skel qt;
Simplified QL:
Fixed in Commit [f22736]
Related
Commit: [f22736]