arso-weather
v0.1.2
Published
Slovenian historical and current weather data. Arso archive wrapper for node.
Downloads
3
Readme
ARSO Weather
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);
})