Current and max UV index for Australian locations
npm install uvaus
> npm install uvaus --save
`
Usage
Get current UV Index for location
`
var UVIndex = require("uvaus");
UVIndex.GetCurrentUVIndex("Sydney", function(err, result){
if (err) console.log(err);
console.log(result);
});
`
Get max UV Index for location
`
UVIndex.GetMaxUVIndex("Sydney", function(err, result){
if (err) console.log(err);
console.log(result);
});
``