All Projects → itinero → GTFS

itinero / GTFS

Licence: MIT license
.NET implementation of a General Transit Feed Specification (GTFS) feed parser.

Programming Languages

C#
18002 projects

Projects that are alternatives of or similar to GTFS

Gtfspy
Public transport network analysis using Python 🚊🚇🚃🚌🛳️🚡🚠🚞
Stars: ✭ 104 (+89.09%)
Mutual labels:  routing, gtfs
motis
Intermodal Mobility Information System
Stars: ✭ 45 (-18.18%)
Mutual labels:  routing, gtfs
r5r
ipeagit.github.io/r5r/
Stars: ✭ 90 (+63.64%)
Mutual labels:  routing, gtfs
nepomuk
A public transit router for GTFS feeds (currently only static) written in modern c++
Stars: ✭ 22 (-60%)
Mutual labels:  routing, gtfs
laroute
Generate Laravel route URLs from JavaScript.
Stars: ✭ 33 (-40%)
Mutual labels:  routing
bce.design
minimal magic, minimal tooling, essential dependencies, high productivity, no transpilations and no migrations. The Web Components starter ships with integrated lit-html, redux-toolkit and vaadin router components.
Stars: ✭ 67 (+21.82%)
Mutual labels:  routing
craft3-fallback-site
Failing requests in a multi-site install can fall back to other sites, to prevent 404 errors from missing or disabled entries.
Stars: ✭ 14 (-74.55%)
Mutual labels:  routing
goodservice
Website that detects headway discrepancy on New York City Subway system using live countdown clocks
Stars: ✭ 26 (-52.73%)
Mutual labels:  gtfs
app
Aplus Framework App Project
Stars: ✭ 338 (+514.55%)
Mutual labels:  routing
go-gtfs
Load GTFS files in golang
Stars: ✭ 32 (-41.82%)
Mutual labels:  gtfs
mapnificent cities
City data repository for mapnificent.net
Stars: ✭ 49 (-10.91%)
Mutual labels:  gtfs
api-router
👨 RESTful router for your API in Nette Framework (@nette). Created either directly or via annotation.
Stars: ✭ 18 (-67.27%)
Mutual labels:  routing
fastgtfs
A pure Rust library that provides GTFS parsing, navigation, time table creation, and real-time network simulation.
Stars: ✭ 21 (-61.82%)
Mutual labels:  gtfs
Cortex-Plugin
Cortex Plugin, a routing system for WordPress
Stars: ✭ 21 (-61.82%)
Mutual labels:  routing
AndroidRouter
Simple way to make navigation in Android Application 🔫
Stars: ✭ 29 (-47.27%)
Mutual labels:  routing
routing
Aplus Framework Routing Library
Stars: ✭ 186 (+238.18%)
Mutual labels:  routing
vlm
Virtual loup de mer (aka Vlm) is an opensource sailing simulation
Stars: ✭ 25 (-54.55%)
Mutual labels:  routing
Router-deprecated
🛣 Simple Navigation for iOS - ⚠️ Deprecated
Stars: ✭ 458 (+732.73%)
Mutual labels:  routing
routy
Routy is a lightweight high performance HTTP request router for Racket
Stars: ✭ 20 (-63.64%)
Mutual labels:  routing
fastglue
Fastglue is an opinionated, bare bones wrapper that glues together fasthttp and fasthttprouter to act as a micro HTTP framework.
Stars: ✭ 71 (+29.09%)
Mutual labels:  routing

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
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].