A very small library to help in calculating evaportranspiration using weather underground as a source. Uses formulae found here: http://edis.ifas.ufl.edu/pdffiles/ae/ae45900.pdf
npm install evapotranspiration_calculator --save
var et = require("evapotranspiration_calculator");
var wundergroundKey = ""; // your wunderground api key
var pws = ""; // the pws you are using, NOTE: this must has solar radiation and wind speed
var inputDate = ""; // the date you want to calc ET for
var canopyReflectionCoefficient = ""; // your reflection coeffecient
et.calc(wundergroundKey, inputDate, pws, canopyReflectionCoefficient, function(response) {
console.log(response);
});
no tests
Help me write tests?
- 0.1.0 Initial release