Skip to content
/ GTFS Public

.NET implementation of a General Transit Feed Specification (GTFS) feed parser.

License

Notifications You must be signed in to change notification settings

itinero/GTFS

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GTFS Feed Parser

.NET implementation of a General Transit Feed Specification (GTFS) feed parser. (see https://developers.google.com/transit/gtfs/reference)

prerelease Visit our website MIT licensed

NuGet

Getting started

// create the reader.
var reader = new GTFSReader<GTFSFeed>();
var feed = reader.Read("/path/to/feed");

// read archive.
feed = reader.Read("/path/to/archive.zip");

// write feed to folder.
var writer = new GTFSWriter<GTFSFeed>();
writer.Write(feed, "/path/to/output");

Install GTFS

PM> Install-Package GTFS

About

.NET implementation of a General Transit Feed Specification (GTFS) feed parser.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages