arso-weather

Slovenian historical and current weather data. Arso archive wrapper for node.

Usage no npm install needed!

<script type="module">
  import arsoWeather from 'https://cdn.skypack.dev/arso-weather';
</script>

README

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