Home

Awesome

<p align='center'> <img src='https://user-images.githubusercontent.com/425716/44544295-c94d3c00-a6df-11e8-9de1-8166795fda27.png' width='400'/> <p align='center'>Streaming GTFS and GTFS-RT parser for node.</p> </p>

gtfs-stream NPM version Downloads Build Status

Install

npm install gtfs-stream --save

Plain GTFS

import gtfs from 'gtfs-stream'

request.get('https://developers.google.com/transit/gtfs/examples/sample-feed.zip') // or any other way of getting the data stream
  .pipe(gtfs())
  .on('data', (entity) => {
    console.log(entity)
  })

Data events emitted from the GTFS parse stream have the following shape:

If you want the raw rows, you can pass { raw: true } to this function to skip type inference.

GTFS Enhanced

The base GTFS format is cumbersome to work with, so the enhanced parser will do a little extra work piecing things together to make it more usable. This parser will use more memory than the base parser since it needs to collect rows that need formatting while it waits for other to stream in.

import gtfs from 'gtfs-stream'

request.get('https://developers.google.com/transit/gtfs/examples/sample-feed.zip') // or any other way of getting the data stream
  .pipe(gtfs.enhanced())
  .on('data', (entity) => {
    console.log(entity)
  })

Differences from the base parser:

GTFS-RT

import gtfs from 'gtfs-stream'

request.get('http://datamine.mta.info/mta_esi.php') // or any other way of getting the data stream
  .pipe(gtfs.rt())
  .on('data', (entity) => {
    console.log(entity)
  })

Data events emitted from the GTFS Realtime parse stream have the following shape:

Only one of either trip_update, vehicle, or alert will be present in any given event.