Talk:London public transport tagging scheme/Map Challenges

From OpenStreetMap Wiki
Jump to navigation Jump to search

Added any comments/questions here. Bjohas (talk) 11:40, 4 May 2017 (UTC)

purple dots for bus stop positions too?

Seems like a neat overpass turbo config to make this map. I have a couple of questions

Are the purple dots supposed to be showing up for bus stop positions too? (public_transport=stop_position).

-- Harry Wood (talk) 23:26, 4 May 2017 (UTC)

Thanks! The advantage of the overpass queries is that it highlights specific issues that can then be fixed by people with interest in those issues!
Regarding bus stops: I've tried to exclude bus stops. The query fetches all public_transport=stop_position, but the CSS then suppresses those:
[out:json][timeout:25];
area(3600065606)->.a; 

(
  relation["railway"="station"](area.a);
  way["railway"="station"](area.a);
  node["railway"="station"](area.a);
  relation["railway"="subway_entrance"](area.a);
  way["railway"="subway_entrance"](area.a);
  node["railway"="subway_entrance"](area.a);
  relation["public_transport"="station"](area.a);
  way["public_transport"="station"](area.a);
  node["public_transport"="station"](area.a);
  relation["public_transport"="stop_position"](area.a);
  way["public_transport"="stop_position"](area.a);
  node["public_transport"="stop_position"](area.a);
);
(._; >;);
out body;

{{style: 
relation, node, way {
  symbol-stroke-color: purple;
  symbol-fill-color: purple; 
  color:purple;
  fill-color:purple;
  symbol-stroke-opacity: 1;
  symbol-fill-opacity: 1;
  symbol-size: 5;
}
node[railway=subway_entrance]{ 
  color: red; 
  symbol-stroke-color: red;
  symbol-fill-color: red; 
  symbol-stroke-opacity: 1;
  symbol-fill-opacity: 0;
  symbol-size: 15;
  dashes: 8,8;
  symbol-stroke-width: 6;
}
node[railway=subway_entrance][name],node[railway=subway_entrance][ref],node[railway=subway_entrance][wheelchair]{ 
  symbol-stroke-width: 3;  
  symbol-fill-opacity: 0.5;
  symbol-stroke-opacity: 1;
}
node[railway=subway_entrance][wheelchair]{ 
  symbol-fill-color: green; 
}
node[railway=subway_entrance][ref]{ 
  symbol-stroke-color: green;
}
node[railway=subway_entrance][name] {
  dashes: 8,0;
}
node[railway=subway_entrance][name][ref][wheelchair] {
  symbol-size: 10;
}
node[bus=yes], node[highway=bus_stop], way[amenity=shelter] {
  symbol-stroke-color: grey;
  symbol-fill-color: grey;
  color:grey;
  symbol-stroke-opacity: 0;
  symbol-fill-opacity: 0;
}
}}

suburban above ground (not subway) train stations, entrance tagging

you've written "Clearly each station should have at least one entrance", but for suburban above ground (not subway) train stations e.g. the overground network, we wouldn't use the railway=subway_entrance tag right? So we wouldn't be expecting these purple dots to have any accompanying entrance markers on this map? -- Harry Wood (talk) 23:26, 4 May 2017 (UTC)

Yes, that's true. However, we'd expect them to have an entrance=yes somewhere. The problem is that this is hard to tell, because stations often aren't in relations, so we don't know whether an entrance is associated with a stop. To work towards this, I created/amended about 81 relations yesterday, so that at least in central London most stations are now in a relation (often only together with a few subway_entrances, but in some cases also to do with some underground structures, e.g. see King's Cross, Bank, Oxford Circus and some others.) Some pictures:

Remaining stations without relations in blue, and entrances without relations in red:

London public transport tagging scheme - Map Challenges - relations 01.png

Stations to which I added/amended stop_area relations yesterday (which didn't have pre-existing stop_area or where there were issues, though in some cases there were stop_areas for busses nearby - I need to check in NAPTAN whether the stop_area for busses is the same as for train stations):

London public transport tagging scheme - Map Challenges - relations 02.png

As you can see in the first image, there are some left, which I might do later... though as you get outside central London, as you pointed out, the subway_entrance no longer holds, so there aren't many more where creating relations is straight forward.

Finally, the NAPTAN data does have entrances, but I did look at this previously, and it wasn't very accurate at all. Nevertheless, one might be able to use the data to help people spot entrances.... If this map challenge takes off, I could look a bit more into this. Bjohas (talk) 15:12, 5 May 2017 (UTC)