-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
32 lines (28 loc) · 739 Bytes
/
index.js
File metadata and controls
32 lines (28 loc) · 739 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/*
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
// */
// // if(typeof exports != "undefined"){
// module.exports= {
// FORECAST: forecast,
// HISTORICAL: historical,
// SEASONAL: seasonal
// }
var geoglows = require ('./scripts/Geoglows.js');
module.exports = {
GEOGLOWS: geoglows
}