User:Lumikeiju
Jump to navigation
Jump to search
This user submits data to OpenStreetMap under the name Lumikeiju. |
Resources
Presets & Validators
Refer to Lumikeiju/openstreetmap on GitHub
Projects
Seattle Street Lights
WA Public Transport
Landuse
Traffic Cameras
Cleanup / QA
Addresses
- [Fix: "addr:city" Values] (addr:city=* value other than
Seattle
) | Overpass Query
nwr(area.searchArea)["addr:city"]["addr:city"!="Seattle"];
- [Fix: "addr:state" Values] (addr:state=* value other than
WA
) | Overpass Query
nwr(area.searchArea)["addr:state"]["addr:state"!="WA"];
- [Fix: "addr:country" Values] (addr:country=* value other than
US
) | Overpass Query
nwr(area.searchArea)["addr:country"]["addr:country"!="US"];
Public Transport
- [Fix: "public_transport=stop_position" with incorrect role] | Overpass Query
rel["route"~"bus|trolleybus|tram|monorail|train"](area.searchArea)->.routes;
node(r.routes)["public_transport"="stop_position"]->.stops;
(((.stops; - node(r.routes:"stop");); - node(r.routes:"stop_exit_only");); - node(r.routes:"stop_entry_only"););
- [Fix: "public_transport=platform" on a roadway] | Overpass Query
node(area.searchArea)["public_transport"="platform"]->.platformNodes;
way(bn.platformNodes)["highway"]["highway"!~"footway|cycleway"]->.parentWays;
node.platformNodes(w.parentWays);
- [Fix: "public_transport=stop_position" not on a roadway | Overpass Query
node(area.searchArea)["public_transport"="stop_position"]->.stopPositionNodes;
way(bn.stopPositionNodes)->.parentWays;
node.stopPositionNodes(w.parentWays)->.connectedNodes;
(.stopPositionNodes; - .connectedNodes;);
Tag Cleanup
- [Fix: "lgbtq*=*" Values] | TagInfo: lgbtq*
- [Fix: "light:*=*" Values] | TagInfo: light:*
- [Fix: "shelter=*" Values] | TagInfo: shelter=*
- [Fix: "bench=*" Values] | TagInfo: bench=*
- [Fix: "bin=*" Values] | TagInfo: bin=*
Misc Cleanup
- Old Construction (Note: Edit with care! Verify that construction is actually complete!) Overpass Query
nwr[~".*"~"construction"]["craft"!~"construction"]["office"!~"construction"](area.searchArea)->.construction;
nwr.construction(newer:"2019-01-01T00:00:00Z")->.recent;
(.construction; - .recent;);
- [Fix: Nonexistent Feature] (Note: Edit with care! Verify that feature is completely nonexistent/unverifiable on the ground!) | Overpass Query
nwr(area.searchArea)[~"demolished|destroyed|razed|removed|abandoned|ruins"~"."];
- [Fix: Discardable Tag] (created_by=*) | Overpass Query
nwr(area.searchArea)["created_by"];
- [Fix: Single-Member Relations] | Overpass Query
rel(area.searchArea)(if (count_members() == 1));
Templates
Seattle searchArea
[out:xml][timeout:300];
{{geocodeArea:Seattle}}->.searchArea;
(._;>;); out meta;
[out:xml][timeout:300];
rel["wikidata"="Q5083"]["type"="boundary"];
map_to_area->.searchArea;
(._;>;); out meta;