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: about 1 month ago
JSON representation

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

Lists

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