nptscot / npt

Data processing code, also use this repo for issue tracking for the Network Planning Tool. See https://nptscot.github.io for development version
https://www.npt.scot/
GNU Affero General Public License v3.0
5 stars 0 forks source link

Cycleways tagged as `pedestrian` #435

Closed joeytalbot closed 3 months ago

joeytalbot commented 3 months ago

I noticed that one of the most popular cycle paths in central Edinburgh is tagged as highway = pedestrian and bicycle = designated. So far, we have been systematically excluding any segments tagged highway = pedestrian. We should change this to include paths like this one.

This is the path that crosses the Meadows:

image

Robinlovelace commented 3 months ago

Guess this can be fixed with a line a bit like this:

case_when(
  ...
  bicycle == "designated" ~ "shared use"
)

right?

Robinlovelace commented 3 months ago

Fixed in https://github.com/nptscot/npt/pull/437#pullrequestreview-1980492159 right @joeytalbot ?

joeytalbot commented 2 months ago

Yes, at least where highway = pedestrian. Though there may be other highway types that also have bicycle = designated