New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

vr

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vr

Wrapper for fetching info from VR's Junat kartalla-service

latest
Source
npmnpm
Version
0.2.0
Version published
Maintainers
1
Created
Source

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);
  });

Keywords

vr

FAQs

Package last updated on 26 Jan 2014

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