GTFS
GTFS copied to clipboard
.NET implementation of a General Transit Feed Specification (GTFS) feed parser.
Hi There, I'm trying to parse a feed which utilises quotes ("") in addition to commas in every file. Would you have an example of how I could configure the...
Issue parsing calendar where there was whitespace after the end field (file downloaded from [GCRTA](http://www.riderta.com/sites/default/files/gtfs/latest/google_transit.zip) attached [google_transit.zip](https://github.com/itinero/GTFS/files/1166271/google_transit.zip)
Improve shape builder by: - Resolving not only the closest point. - Find the best route 'along' a stop, not just to and from. An example of blind resolving and...
Make adding shapes optional if there is already a shapes file with content the add-shapes command should optionally do nothing.
Hi, When creating an export of shapes there is an optional field called shape_dist_traveled, this field does not allow exponential notation, however by default this library does use exponential notation...
``` protected virtual Route ParseRoute(T feed, GTFSSourceFileHeader header, string[] data) { // check required fields. this.CheckRequiredField(header, header.Name, this.RouteMap, "route_id"); this.CheckRequiredField(header, header.Name, this.RouteMap, "route_short_name"); this.CheckRequiredField(header, header.Name, this.RouteMap, "route_long_name"); this.CheckRequiredField(header, header.Name, this.RouteMap,...
I had an idea today when trying to work in-memory with GTFS that it can make sense to do look ups, as I have seen in the code. The look...
I am keen to use the latest. I notice that you have since introduced support for extended transport types: https://support.google.com/transitpartners/answer/3520902?hl=en which is great. It would be cool to pull that...
Please add debugging support by providing the .pbd file in the Nuget package.
Example feed: https://otwartedane.metropoliagzm.pl/dataset/rozklady-jazdy-i-lokalizacja-przystankow-gtfs-wersja-rozszerzona/resource/290298ce-944b-4744-8f92-29ab2b786a33 Essentially CSV deserializer is not properly treating strings that are encased in quotation marks (`"`). I saw that was a problem with colors in version 1.7, in...