-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathMOPEXData.h
executable file
·43 lines (35 loc) · 1.47 KB
/
MOPEXData.h
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
33
34
35
36
37
38
39
40
41
42
43
/*
Copyright (C) 2010-2013 Jon Herman, Josh Kollat, and others.
Hymod is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Hymod is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with Hymod. If not, see <http://www.gnu.org/licenses/>.
*/
#include <iostream>
#include <string>
#include <fstream>
#include <cstdlib>
using namespace std;
struct MOPEXData
{
string ID;
double gageLat;
double gageLong;
double DA;
int nDays; //Number of days of data
int **date; //Date of data [year, month, day]
double *precip; //Mean areal precipitation (mm)
double *evap; //Climatic potential evaporation (mm)
double *flow; //Streamflow discharge (mm)
double *maxTemp; //Maximum air temperature (Celsius) (should be daily)
double *minTemp; //Minimum air temperature (Celsius) (should be daily)
double *avgTemp; //Average air temperature (Celsius) (should be daily)
};
//Function to read in the MOPEX data (precip, flow, temp, AE, etc.)
void readMOPEXData(MOPEXData *data, string filename);