-
Notifications
You must be signed in to change notification settings - Fork 10
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
List each platform as GTFS stop in the generated GTFS, and various GTFS semantic fixes #73
Conversation
This increases the memory limit as the original isn't enough to process the current timetable. Also, the executable bit is added into the script, and source map is added to enable debugging. Related work items: #637
Update all train operating companies' name and contact details. Update stations list to use coordinates from the latest stations knowledge base, and add a field for wheelchair access Related work items: #638
The original upstream implementation lists passing points (where the train doesn't stop) as stops in the GTFS. This is misleading to customers so they are removed. Also it fixes the case where one of the public arrival or departure times are not available, which should fall back to working time independently. Unadvertised stops remain as stops in the GTFS. Related work items: #639
# Conflicts: # src/gtfs/repository/CIFRepository.ts
This is a difficult one. I think it might be best to split up some of the changes. There are several we can integrate easily:
Unfortunately changing the CRS codes, headsign and general structure is difficult because there are people (myself included) that rely on those fields being in those places. A compromise might be to use some custom fields for the additional data but it also might be best to just maintain a fork with those changes. |
We will then decide later as our company business plan may require some other custom fields as well. |
Closing this one as our codebase has since revolved, and further changes have been made to improve the data quality including grouping trips into routes by origin - destination, putting colours into GTFS, loading schedules starting from 7 days ago for journey planning purpose, etc. Our work is available at Jnction:aubin-master . |
This pull request does the following:
Paddington (platform A)
, consistent to the general labelling of TfL bus stops and to the best practice herePDX_A
, stop_codePDX
, which is part of the station with stop_idPAD
and stop_codePAD
.${origin} → ${destination}
, for example, Brockenhurst → Poole${this.modeDescription} service from ${origin} to ${destination}, ${this.classDescription}, ${this.reservationDescription}
Closes #69