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
Documentation
Tags
Listed below are tags/keys/values that I have created and documented.
- Key:ref:US-WA:DOR:UBI reference to the United States (US) State of Washington (WA) Department of Revenue (DOR) Universal Business Identifier (UBI).
- Key:ref:US-WA:SDCI:DAP_ID reference to the United States (US) State of Washington (WA) Seattle Department of Construction & Inspections (SDCI) Discrete Address Point ID (DAP_ID).
- Key:ref:US-WA:SDCI:MAF_ID reference to the United States (US) State of Washington (WA) Seattle Department of Construction & Inspections (SDCI) Master Address File ID (MAF_ID).
- Key:ref:US-WA:SDCI:SND_ID reference to the United States (US) State of Washington (WA) Seattle Department of Construction & Inspections (SDCI) Street Network Database ID (SND_ID).
- Key:ref:US-WA:SDOT:UNITID reference to the United States (US) State of Washington (WA) Seattle Department of Transportation (SDOT) Unit ID (UNITID).
- Key:ref:US-WA:WSDOE:CS_ID reference to the United States (US) State of Washington (WA) Washington State Department of Ecology (WSDOE) Cleanup Site ID (CS_ID).
- Key:ref:US-WA:WSDOE:FS_ID reference to the United States (US) State of Washington (WA) Washington State Department of Ecology (WSDOE), Facility Site ID (FS_ID).
Projects
Seattle Street Lights
WA Public Transport
Landuse
Cleanup / QA
Addresses
- [Fix: "addr:city" Values] (
addr:city=*value other thanSeattle) | Overpass Query
nwr(area.searchArea)["addr:city"]["addr:city"!="Seattle"];
- [Fix: "addr:state" Values] (
addr:state=*value other thanWA) | Overpass Query
nwr(area.searchArea)["addr:state"]["addr:state"!="WA"];
- [Fix: "addr:country" Values] (
addr:country=*value other thanUS) | 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|path"]->.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));
- [Fix: Closed Sidewalk Ways] | Overpass Query
way(area.searchArea)["footway"="sidewalk"](if: is_closed() == 1);
Templates
Element Count
[out:csv(::count)][timeout:120];
{{geocodeArea:Seattle}}->.searchArea;
nwr(area.searchArea);
out count;
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;