User:Lumikeiju

From OpenStreetMap Wiki
Jump to navigation Jump to search
OSM Logo 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

nwr(area.searchArea)["addr:city"]["addr:city"!="Seattle"];
nwr(area.searchArea)["addr:state"]["addr:state"!="WA"];
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"););
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

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"~"."];
nwr(area.searchArea)["created_by"];
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;