All Projects → fvdm → nodejs-ns-api

fvdm / nodejs-ns-api

Licence: Unlicense license
Unofficial NodeJS module for Nederlandse Spoorwegen API

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to nodejs-ns-api

transport-apis
machine-readable list of transport API endpoints
Stars: ✭ 32 (+146.15%)
Mutual labels:  transit
db-hafas
JavaScript client for the Deutsche Bahn HAFAS API.
Stars: ✭ 54 (+315.38%)
Mutual labels:  transit
vbb-hafas
A JavaScript client for Berlin & Brandenburg public transport HAFAS API.
Stars: ✭ 28 (+115.38%)
Mutual labels:  transit
nepomuk
A public transit router for GTFS feeds (currently only static) written in modern c++
Stars: ✭ 22 (+69.23%)
Mutual labels:  transit
concentrate
Concentrate: combine realtime transit files
Stars: ✭ 23 (+76.92%)
Mutual labels:  transit
mapzen-gtfs
Python library for reading and writing GTFS feeds
Stars: ✭ 27 (+107.69%)
Mutual labels:  transit
Mtapi
JSON proxy server for the MTA's realtime New York City subway feed
Stars: ✭ 206 (+1484.62%)
Mutual labels:  transit
european-transport-operators
NOT UP-TO-DATE ANYMORE, UNMAINTAINED. CHECK european-transport-feeds INSTEAD. List of european long-distance transport operators, available API endpoints, GTFS feeds and client modules.
Stars: ✭ 47 (+261.54%)
Mutual labels:  transit
transxchange2gtfs
tool to convert transxchange data into a GTFS feed
Stars: ✭ 26 (+100%)
Mutual labels:  transit
bvg-topological-map
BVG transport map as a nice SVG.
Stars: ✭ 15 (+15.38%)
Mutual labels:  transit
python-whirlpool
Python wrapper extension for C Whirlpool digest reference implementation.
Stars: ✭ 18 (+38.46%)
Mutual labels:  unlicense
clearml-server-helm
ClearML Server for Kubernetes Clusters Using Helm
Stars: ✭ 18 (+38.46%)
Mutual labels:  trains
db-stations
A list of DB stations.
Stars: ✭ 15 (+15.38%)
Mutual labels:  transit
raptor
Implementation of the Route Based Public Transit Algorithm (Raptor)
Stars: ✭ 64 (+392.31%)
Mutual labels:  transit
Tchou-Tchou
🚂 A menu bar app for macOS that displays the speed of the TGV you are travelling with.
Stars: ✭ 13 (+0%)
Mutual labels:  trains
Transitland Processing Animation
Animating scheduled transit trips using the Transitland API and Processing
Stars: ✭ 251 (+1830.77%)
Mutual labels:  transit
all-transit
Interactive visualization of all transit in the Transitland database
Stars: ✭ 22 (+69.23%)
Mutual labels:  transit
theweekendest
Real-time New York City subway service map
Stars: ✭ 51 (+292.31%)
Mutual labels:  transit
FWK
💎 3D game framework in C, with Luajit bindings now.
Stars: ✭ 423 (+3153.85%)
Mutual labels:  unlicense
is-my-train-delayed
An Angular web app built on Heroku with Node & Express. Shows information about delayed trains, and displays that in an easily consumable manner.
Stars: ✭ 15 (+15.38%)
Mutual labels:  transit

ns-api

Access public transit data from Nederlandse Spoorwegen API with node.js

Changelog Build Status Coverage Status

To use this module you need API access credentials, which you can request at Here (Dutch).

Example

const NSAPI = require ('ns-api');
const ns = new NSAPI ({
  key: 'abc123',
});

// Output w/o limits
function out (data) {
  console.dir (data, {
    depth: null,
    colors: true,
  });
}

// Get travel advise
ns.getTrips ({
  fromStation: 'UT',
  toStation: 'AMF',
})
  .then (out)
  .catch (console.error)
;

Installation

npm i ns-api

Configuration

param type default description
key string One of your API keys
[timeout] number 8000 Request time out in ms
const NSAPI = require ('ns-api');
const ns = new NSAPI ({
  key: 'abc123',
});

Methods

Each method returns a Promise, so make sure to catch the errors properly.

When a method takes arguments they are only accepted in object notation. This way the order no longer matters and it makes it easier to reuse them.

methodName ({ one, two });

I'm not going to outline to full possibilities of each method here, only the parts that adjust the API response or make the request easier. Read the API documentation links to find all available parameters that each method can take.

Reisinformatie

getAllStations

List of all stations

ns.getAllStations()
  .then (data => data.filter (station => station.land === 'NL'))
  .then (data => console.table (data, ['code', 'stationType']))
  .catch (console.error)
;

API documentation

getArrivals

List of arrivals at a station. It requires a station or uicCode.

parameter type description
[dateTime] Date or string Limit to starting time, will be converted to the right format
ns.getArrivals ({
  dateTime: '2019-05-10',
  station: 'UT',
})
  .then (data => console.table (data, ['name', 'origin', 'actualDateTime']))
  .catch (console.error)
;

API documentation

getCalamities

List of all current calamities

parameter type description
[lang] string Text language
ns.getArrivals ({ lang: 'en' })
  .then (console.log)
  .catch (console.error)
;

API documentation

getDepartures

List all departures at a station. It requires a station or uicCode.

parameter type description
[dateTime] Date or string Limit to starting time, will be converted to the right format
ns.getDepartures ()
  .then (console.log)
  .catch (console.error)
;

API documentation

getDisruptions

List of disruptions/maintenance.

parameter type description
[actual] boolean Only return disruptions within 2 hours
ns.getDisruptions()
  .then (data => console.table (data, ['titel']))
  .catch (console.error)
;

API documentation

getStationDisruption

List of disruptions at a station

parameter type description
[dateTime] Date or string Limit to starting time, will be converted to the right format
ns.getStationDisruption ({ dateTime: '2019-05-10' })
  .then (data => console.table (data, ['titel']))
  .catch (console.error)
;

API documentation

getDisruption

Get details about one disruption

parameter type description
type string Disruption type
id string Disruption object ID
ns.getDisruption ({
  type: 'maintenance',
  id: '7001000',
})
  .then (console.log)
  .catch (console.error)
;

API documentation

getTrips

Get a list of travel advises

parameter type description
[dateTime] Date or string Limit to starting time, will be converted to the right format
ns.getTrips ({
  dateTime: '2019-05-10 17:40',
  fromStation: 'Amersfoort',
  toStation: 'Den Haag',
})
  .then (console.log)
  .catch (console.error)
;

API documentation

getTrip

Get a specific travel advise

parameter type description
ctxRecon string Trip ctxRecon from getTrips()
ns.getTrip ({ ctxRecon: 'abc123' })
  .then (console.log)
  .catch (console.error)
;

API documentation

getPrice

Get pricing for travel between two stations.

parameter type description
fromStation string Station name or ID
toStation string Station name or ID
ns.getPrices ({
  fromStation: 'AMF',
  toStation: 'Den Haag',
})
  .then (console.log)
  .catch (console.error)
;

API documentation

getJourney

Get information about a specific journey. You can find the id in the trip data from getTrip() at trip.legs[].journeyDetail[].link.uri. Just use that whole path.

parameter type description
id string Journey ID
ns.getJourney ({
  id: 'HARP_S2S-1|3824|0|784|8052021',
})
  .then (console.log)
  .catch (console.error)
;

API documentation

Places

placesList

Search for places. Returns an array.

argument type description
parameters object See API docs
ns.placesList ({
  q: 'utrecht cs',
});

API documentation

placesGet

Get details about one place. Returns an object.

parameter type description
type string Place type, ex: stationV2
id string Place ID, ex: AMF
[lang] string Response language
ns.placesGet ({
  type: 'stationV2',
  id: 'AMF',
});

API documentation

placesOvfiets

Get a list of OV Fiets locations. Returns an array.

parameter type description
[station_code] string Filter by station
ns.placesOvfiets ({
  station_code: 'AMF',
});

API documentation

Unlicense

This is free and unencumbered software released into the public domain.

Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means.

In jurisdictions that recognize copyright laws, the author or authors of this software dedicate any and all copyright interest in the software to the public domain. We make this dedication for the benefit of the public at large and to the detriment of our heirs and successors. We intend this dedication to be an overt act of relinquishment in perpetuity of all present and future rights to this software under copyright law.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

For more information, please refer to https://unlicense.org/

Author

Franklin | Buy me a coffee

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].