-
Notifications
You must be signed in to change notification settings - Fork 4
Open
Description
It would be much nicer to simply work with the .zip file
Ex:
let gtfs = GTFS::from_zip("gtfs.zip").unwrap();
for agency in gtfs.agencies() {
println!("{:?}", agency);
}
for stop in gtfs.stops() {
println!("{:?}", agency);
}
Solved with #14
DDRBoxman and nikhilbhardwaj