rust-transit / gtfs-structure

Read a GTFS file
MIT License
57 stars 32 forks source link

Add frequencies.txt parsing #75

Closed stefanw closed 3 years ago

stefanw commented 3 years ago

This adds support for frequencies.txt files. I modeled the implementation after stop_times.txt.

stefanw commented 3 years ago

Sure, one thing I was uncertain about was if frequencies on trips should be Option<Vec> to represent the presence/absence of the frequencies.txt file. Currently, it's just an empty vec on all trips if absent.