User:Mcliquid
Jump to navigation
Jump to search
About
I mostly map around the area of Lake Constance (Bodensee | DACH).
Map Bodenseekreis
Main streets (paved) without cycleway:

area[name="Bodenseekreis"]->.a;
(
way["highway"~"motorway|motorroad|trunk|motorway_link|trunk_link|primary|primary_link|secondary|secondary_link|tertiary|tertiary_link|unclassified|residential|living_street"]["motorroad"!="yes"]["expressway"!="yes"]["bicycle"!="no"][area!=yes]["access"!~"private|no"][!"cycleway"][!"cycleway:both"][!"cycleway:left"][!"cycleway:right"]["surface"!~"unpaved|compacted|gravel|fine_gravel|ground|dirt|rock"][!"service"](area.a);
);
(._;>;);
out meta;
Map Vorarlberg
Vorarlberg is a state in Austria with an area of about 2.6 million square kilometers and a population of about 400,000.
My motivation is to map this small province as completely as possible. Vorarlberg has an extensive OpenData offering with OpenStreetMap release, which makes it possible to set the quality bar high. Quality for me is often about the county-wide completeness of attributes.
Below are some of my OverPass approaches to ensure this, which I review at a regular interval:
Main streets without maxspeed:

[out:json][timeout:25];
{{geocodeArea:Vorarlberg}}->.searchArea;
(
way["highway"~"primary|primary_link|secondary|secondary_link|tertiary|tertiary_link|residential|unclassified"][!maxspeed][!"maxspeed:forward"][!"maxspeed:backward"][!"maxspeed:type"](area.searchArea);
);
out body;
>;
out skel qt;
All stations without bicycle parking within 250m:
(Yes, Langen am Arlberg actually doesn't have one yet, but the ÖBB is on it.)

area[name="Vorarlberg"];
node[railway~'^station$|^halt$'][station!~'subway|light_rail|funicular'][usage!~'tourism|leisure'](area)->.stations;
nwr[amenity=bicycle_parking](area)->.amenity;
(node.stations; - node.stations(around.amenity:250););
(._;>;);
out;
Main streets without surface:

[out:json][timeout:25];
{{geocodeArea:Vorarlberg}}->.searchArea;
(
way["highway"~"motorway|motorroad|trunk|motorway_link|primary_link|secondary_link|primary_link|primary|secondary|tertiary|living_street"][!"surface"](area.searchArea);
);
out body;
>;
out skel qt;
Main streets (paved) without sidewalk:

area[name="Vorarlberg"]->.a;
(
way["highway"~"trunk|trunk_link|primary|primary_link|secondary|secondary_link|tertiary|tertiary_link|unclassified|residential"]["motorroad"!="yes"]["expressway"!="yes"]["foot"!="no"][area!=yes]["access"!~"private|no"][!"sidewalk"][!"sidewalk:both"][!"sidewalk:left"][!"sidewalk:right"]["surface"!~"unpaved|compacted|gravel|fine_gravel|ground|dirt|rock"][!"service"](area.a);
);
(._;>;);
out meta;
Main streets (paved) without cycleway:

area[name="Vorarlberg"]->.a;
(
way["highway"~"primary|primary_link|secondary|secondary_link|tertiary|tertiary_link|unclassified|residential"]["motorroad"!="yes"]["expressway"!="yes"]["foot"!="no"][area!=yes]["access"!~"private|no"][!"cycleway"][!"cycleway:both"][!"cycleway:left"][!"cycleway:right"]["surface"!~"unpaved|compacted|gravel|fine_gravel|ground|dirt|rock"][!"service"](area.a);
);
(._;>;);
out meta;
Main streets without lanes / lane markings:

[out:json][timeout:600];
{{geocodeArea:Vorarlberg}}->.searchArea;
// gather results
(
way["highway"~"motorway|motorroad|trunk|trunk_link|motorway_link|primary_link|secondary_link|primary_link|primary|secondary|tertiary|tertiary_link|living_street"][!"lanes"][!"lane_markings"](area.searchArea);
);
out body;
>;
out skel qt;
Addresses without access within a radius of 75 meters

area[name="Vorarlberg"];
way["highway"](area)->.highways;
nwr["addr:housenumber"]["addr:street"](area)->.address;
(nwr.address; - nwr.address(around.highways:50););
(._;>;);
out geom;
Overpass Sammlung
Abgelaufene access:conditional:

[out:json];
(
way[~":conditional"~"no.*@.*20((1\d)|(20)|21)"](([http://openstreetmap.org/?minlon={{{minlon}}}&minlat={{{minlat}}}&maxlon={{{maxlon}}}&maxlat={{{maxlat}}} bbox={{{minlon}}},{{{minlat}}},{{{maxlon}}},{{{maxlat}}}]));
);
out geom;
>;
out geom;
Userboxes | ||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|