Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

build-mav-gtfs

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

build-mav-gtfs

Build GTFS for the Hungarian State Railways (Magyar Államvasutak, MÁV).

  • 0.0.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2
increased by100%
Maintainers
1
Weekly downloads
 
Created
Source

build-mav-gtfs

Build GTFS from the Magyar Államvasutak (MÁV, Hungarian State Railways) REST API using the mav JS module. Please ask MÁV for permission before using this module in production.

Please note that the data basis used by the MÁV API allows GTFS data to be generated only 25 days in advance.

Work in progress. This software is not stable yet. See the to-do section.

npm version dependency status dev dependency status license chat on gitter

Installation

Library

npm install --save build-mav-gtfs

CLI

npm install -g build-mav-gtfs

Usage

Library

The script takes a startDate and an endDate JS Date() object (the feed will include the endDate, days will be calculated in Europe/Lisbon timezone) and return a Promise that will resolve in an object containing GTFS object streams:

const generateGTFS = require('build-mav-gtfs')

generateGTFS(new Date("2017-12-01T00:00:00"), new Date("2018-05-31T00:00:00"))
.then((gtfs) => {
    gtfs.routes.pipe(someStream)
    gtfs.stops.pipe(anotherStream)
})

The GTFS object contains the following streams:

  • agency
  • stops
  • routes
  • trips
  • stop_times
  • calendar_dates
  • feed_info

CLI

build-mav-gtfs start-date end-date directory
build-mav-gtfs 01.12.2017 31.05.2018 ~/cp-gtfs

To do

  • minify/optimize gtfs calendar_dates to calendar

@juliuste will be working on this the next few days.

See also

  • mav - Magyar Államvasutak API client in JavaScript
  • build-cp-gtfs - Build GTFS from the Comboios de Portugal (CP, Portugese Railways) REST API
  • db-api-to-gtfs - Build GTFS from the Deutsche Bahn (DB, German Railways) REST API

Contributing

If you found a bug, want to propose a feature or feel the urge to complain about your life, feel free to visit the issues page.

Keywords

FAQs

Package last updated on 14 Aug 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc