https://github.com/itinero/GTFS
.NET implementation of a General Transit Feed Specification (GTFS) feed parser.
https://github.com/itinero/GTFS
c-sharp dotnet gtfs routing
Last synced: about 1 month ago
JSON representation
.NET implementation of a General Transit Feed Specification (GTFS) feed parser.
- Host: GitHub
- URL: https://github.com/itinero/GTFS
- Owner: itinero
- License: mit
- Created: 2014-01-31T18:23:21.000Z (over 11 years ago)
- Default Branch: develop
- Last Pushed: 2022-04-25T09:31:28.000Z (about 3 years ago)
- Last Synced: 2024-12-04T04:34:18.016Z (5 months ago)
- Topics: c-sharp, dotnet, gtfs, routing
- Language: C#
- Homepage: http://www.itinero.tech
- Size: 18.1 MB
- Stars: 70
- Watchers: 12
- Forks: 44
- Open Issues: 20
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-gtfs - GTFS Feed Parser - .Net/Mono implementation of a General Transit Feed Specification (GTFS) feed parser. (Frameworks and Libraries)
README
GTFS Feed Parser
================.NET implementation of a General Transit Feed Specification (GTFS) feed parser. (see https://developers.google.com/transit/gtfs/reference)
[](https://github.com/itinero/GTFS/actions/workflows/prerelease.yml)
[ ](http://www.itinero.tech/)
[](https://github.com/itinero/GTFS/blob/develop/LICENSE)[](http://www.nuget.org/packages/GTFS)
### Getting started
```
// create the reader.
var reader = new GTFSReader();
var feed = reader.Read("/path/to/feed");// read archive.
feed = reader.Read("/path/to/archive.zip");// write feed to folder.
var writer = new GTFSWriter();
writer.Write(feed, "/path/to/output");
```### Install GTFS
PM> Install-Package GTFS