Brendan Nee

Results 124 comments of Brendan Nee

You can better control exactly what dates timetables get created for and how they are named and group by adding a timetables.txt and timetable_pages.txt to your GTFS before processing it:...

Can you share with me the GTFS used so I can check it out? You can configure many aspects of what routes/directions/days get generated and the order by adding https://gtfstohtml.com/docs/timetables...

Good point. I tried the GTFS you provided, and noticed that the sorting wasn't working because route_short_name for all routes starts with a non-numeric character. I updated gtfs-to-html so that...

How about a new field in timetable_pages.txt called `timetable_page_sequence` which would allow you to manually specify the order that timetable pages show up on the summary page? https://gtfstohtml.com/docs/timetable-pages Let me...

@yashgt Let me know what you think of the idea above - would that work for your use case? Any other ideas?

Can you share with me the config.json file you are using so I can try out your feed?

Thanks for sharing this. When you call `getStopTimeUpdates()` - it doesn't actually fetch the latest stoptimeupdates from GTFS-realtime, it just fetches them from your database. You need to periodically run...

Let me know if you still see this behavior - there is a mechanism to keep old data around while the new data is fetched and inserted into the DB...

No - I think if that is the case they will all be removed from the database. I haven't heard of this type of issue with GTFS-Realtime before - do...

You could make your own function to do what `updateGtfsRealtime` does here https://github.com/BlinkTagInc/node-gtfs/blob/updategtfsrealtime/lib/import.js#L709 - except don't delete old values in the `cleanStaleRealtimeData` step.