OSM editing guidelines

You might be affected by the City and Street progress missing - #55 by JamesChevalier issue … but your profile looks pretty complete. :thinking: Should you have more completed streets somewhere?

The Overpass query that I use to collect the streets/nodes within a City is:

[timeout:900][out:json];
area(#{overpass_area_id})->.a;
(
way(area.a)
['name']
['highway']
['highway' !~ 'path']
['highway' !~ 'steps']
['highway' !~ 'motorway']
['highway' !~ 'motorway_link']
['highway' !~ 'raceway']
['highway' !~ 'bridleway']
['highway' !~ 'proposed']
['highway' !~ 'construction']
['highway' !~ 'elevator']
['highway' !~ 'bus_guideway']
['highway' !~ 'footway']
['highway' !~ 'cycleway']
['foot' !~ 'no']
['access' !~ 'private']
['access' !~ 'no'];
node(w)(area.a);
);
out;

So I’m skipping all of those !~ types, thought there’s an ongoing conversation about bringing in trails.

I don’t have any update capability built into CityStrides yet. That’s a whole other project. So it may take some time for any OSM edits to make their way into CityStrides (but it is planned).

3 Likes