0.1.2 • Published 9 years ago

arso-weather v0.1.2

Weekly downloads
12
License
-
Repository
github
Last release
9 years ago

ARSO Weather

Build Status

Slovenian historical and current weather data. Arso archive wrapper for node. http://meteo.arso.gov.si/met/sl/archive/

Installation

npm install arso-weather

Usage

var WeatherArso = require('arso-weather');
var weatherArso = new WeatherArso()

weatherArso.weatherData("2015-02-03", "2015-02-04", function (err, data) {
    if (err) throw err;
    console.log(data.data);
})