Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 11 days 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 (almost 11 years ago)
- Default Branch: develop
- Last Pushed: 2022-04-25T09:31:28.000Z (over 2 years ago)
- Last Synced: 2024-05-16T18:15:14.543Z (6 months ago)
- Topics: c-sharp, dotnet, gtfs, routing
- Language: C#
- Homepage: http://www.itinero.tech
- Size: 18.1 MB
- Stars: 66
- Watchers: 12
- Forks: 43
- Open Issues: 19
-
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)
[![prerelease](https://github.com/itinero/GTFS/actions/workflows/prerelease.yml/badge.svg)](https://github.com/itinero/GTFS/actions/workflows/prerelease.yml)
[![Visit our website](https://img.shields.io/badge/website-itinero.tech-020031.svg) ](http://www.itinero.tech/)
[![MIT licensed](https://img.shields.io/:license-mit-blue.svg)](https://github.com/itinero/GTFS/blob/develop/LICENSE)[![NuGet](https://img.shields.io/nuget/v/GTFS.svg?style=flat)](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