vr

0.2.0 • Public • Published

vr.js

This is a node.js module for fetching info from VR's Junat kartalla-service.

You can fetch info from different stations and trains.

Documentation of the API is available here:

http://www.vr.fi/fi/index/palvelut/avoin_data/Junatkartalla-rajapinta.html

Install

  npm install vr

Useful information

Stations are named by codes. The list of the train stations with their code is available at:

http://www.vr.fi/fi/index/palvelut/mobiilipalvelut/popup_asemien_tunnukset.html

Also, the service also gives you information about whetever train is canceled or why it is delayed with code names.

The list of them is available at Finnish Transport Agency's site:

http://www2.liikennevirasto.fi/julkaisut/pdf4/rhk_2008-a1_aikataulusuunnittelu_ja_web.pdf

How to use

There's three methods in this module.

getStationInfo

Gives you station's departing and arriving trains. You need to use code name of the station. For example, Lahti is LH.

  var vr = require('vr');
  
  vr.getStationInfo('LH', function (info) {
    console.log(info);
  });

getTrains

Gives you all trains that are on the tracks at the moment.

  var vr = require('vr');
  
  vr.getTrains(function (trains) {
    console.log(trains);
  });

getTrain

Gives information about the stations that the train with given guid goes by. Also gives latitude/longitude, speed and direction of train. (Use guid from getStationInfo/getTrains in this.)

  var vr = require('vr');
  
  vr.getTrain('S79', function (train) {
    console.log(train);
  });

Readme

Keywords

none

Package Sidebar

Install

npm i vr

Weekly Downloads

3

Version

0.2.0

License

none

Last publish

Collaborators

  • janluu