English | Deutsch
A Node wrapper for the Wiener Linien public transport API
npm install wili
Example usage in script:
import { createWienerLinien } from 'wili';
const wili = createWienerLinien();
const options = {
relatedLine: ['U2', 'U4', 'U6']
};
try {
const data = await wili.trafficInfoList(options);
console.log(data.trafficInfos);
} catch (output) {
console.error(error);
}
fetch
-implementation
Example
import { createWienerLinien } from 'wili';
import fetch from 'isomorphic-fetch';
const wili = createWienerLinien(fetch);
Usage: monitor(rbl, [options])
Returns real-time data for a station, including train information such as identifier or accessibility features.
Type: String
, Integer
, Array
RBL number (Rechnergestütztes Betriebsleitsystem - computer-aided operations control system), can be found this website
Type: String
, Array
Disruption type (stoerungkurz
, stoerunglang
, or aufzugsinfo
)
Usage: newsList(options)
Returns news, elevator maintenance and other information
Type: String
, Integer
, Array
Train or bus number, e.g. U1, S7, 59A (case-insensitive)
Type: String
, Integer
, Array
Station ID
Type: String
, Array
Information category, e.g news
or aufzugsservice
Usage: trafficInfoList([options])
Returns interruption of operations and elevator outage
Type: String
, Integer
, Array
Train or bus number, e.g. U1, S7, 59A (case-insensitive)
Type: String
, Integer
, Array
Station ID
Type: String
, Array
Disruption type (stoerungkurz
, stoerunglang
, or aufzugsinfo
)
This work is licensed under The MIT License