-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Boarding Locations should support more tags #6433
Comments
If you're a Java developer, the code in question is here: OpenTripPlanner/application/src/main/java/org/opentripplanner/osm/model/OsmWithTags.java Lines 565 to 600 in 713143b
|
I would also like to add |
Is your feature request related to a problem? Please describe.
Currently OTP supports these tags for linking Boarding Locations:
public_transport=platform
highway=bus_stop
railway=tram_stop
railway=station
railway=halt
amenity=bus_station
amenity=ferry_terminal
railway=platform (undocumented)
This list works well when the osm data uses PTv2 tagging but linking becomes troublesome in places where PTv2 is not used. Notible examples of places where PTv2 is not used are Norway and the area around Stockholm.
Most notible is the lack of highway=platform from this list which is a better candidate for linking as it is more often connected to the street grid than highway=bus_stop and better represents the waiting area.
Goal / high level use-case
Be able to use Boarding Location linking for bus stops in Stockholm where stop locations in GTFS/NeTEx can be quite inaccurate.
Describe the solution you'd like
Add highway=platform and public_transport=station to the list of supported tags.
Look at removing railway=tram_stop as it is analogous to public_transport=stop_position which is explicitly not supported.
Describe alternatives you've considered
This is rather cumbersome and adds a barrier for beginners to overcome.
This is not going to work nearly as well since highway=bus_stop is not universally expected to be connected to the street grid.
Additional context
Image from PTSA showing area where PTv2 tagging isn't used.
It is very unlikely that this tagging convention of not using PTv2 for bus stops will change in the future. (users are actively removing PTv2 tags)
The text was updated successfully, but these errors were encountered: