geopack
Version:
This is a npm package for the geoglows package
25 lines (22 loc) • 555 B
JavaScript
/*
This is the wrapper for the four modules related to the API:
--Forecast
--Historical
--Seasonal Average
--Return Periods(this one is also included inside each one of this ones).
*/
/*
Exporting the Necessary Modules
*/
var forecast=require('./scripts/getForecast.js');
var historical=require('./scripts/getHistorical.js');
var seasonal=require('./scripts/getSeasonal.js');
/*
Final wrapper for the function containing the other
modules
*/
module.exports= {
forecast: forecast,
historical: historical,
seasonal: seasonal
}