-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathutil.py
More file actions
346 lines (287 loc) · 12.1 KB
/
util.py
File metadata and controls
346 lines (287 loc) · 12.1 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
# -*- coding: utf-8 -*-
"""
util.py -- Utilities for working with PRMS data or other functionality that aren't
appropriate to put elsewhere at this time.
"""
import warnings
import os, shutil, json
import numpy as np
import pandas as pd
def calc_emp_CDF(data):
# changed function name for PEP 8 style
warnings.warn("calc_emp_CDF is deprecated, please use "+\
"util.calc_emp_cdf instead", DeprecationWarning)
return calc_emp_cdf(data)
def calc_emp_cdf(data):
"""
Create empirical CDF of arbitrary data
Arguments:
data (array_like) : array to calculate CDF on
Returns:
X (numpy.ndarray) : array of x values of CDF (sorted data)
F (numpy.ndarray) : array of CDF values for each X value or cumulative
exceedence probability, in [0,1].
"""
n_bins = len(data)
X = np.sort(data)
F = np.array(range(n_bins))/float(n_bins)
return X,F
def Kolmogorov_Smirnov(uncond, cond, n_bins=10000):
# changed function name for PEP 8 style
warnings.warn("Kolmogorov_Smirnov is deprecated, please use "+\
"util.komogorov_smirnov instead", DeprecationWarning)
return kolmogorov_smirnov(uncond, cond, n_bins=10000)
def kolmogorov_smirnov(uncond, cond, n_bins=10000):
"""
Calculate the Kolmogorov-Smirnov statistic between two datasets by first
computing their empirical CDFs
Arguments:
uncond (array_like) : data for creating the unconditional CDF.
cond (array_like) : data for creating the conditional CDF
n_bins (int) : number of bins for both CDFs, note if n_bins > length
of either dataset then CDF values are interpolated by numpy
Returns:
KS (float) : Kolmogorov-Smirnov statistic, i.e. absolute max distance
between uncond and cond CDFs
"""
# create unconditional CDF (F_Uc)
H,X = np.histogram(uncond, bins=n_bins, normed=True)
dx = X[1] - X[0]
F_Uc = np.cumsum(H)*dx
# create conditional CDF (F_C)
H,X = np.histogram(cond, bins=n_bins, normed=True)
dx = X[1] - X[0]
F_C = np.cumsum(H)*dx
# Calc max absolulte divergence
KS = np.max(np.abs(F_Uc - F_C))
return KS
def remove_all_optimization_sims_of_other_stage(work_directory, stage):
"""
Track number of simulation directories not tracked by a specific stage
and recursively delete them and their contents. This was created to avoid
having nutracked simulations in an optimizer working directory for example
when an optimization method was interupted before data was saved to a meta
data file.
Arguments:
work_directory (str) : Directory to look for Optimization metadata
json files and simulation directories to keep or remove.
stage (str) : Optimization stage that will not have its simulation
data deleted. All other stages if any are found in metadata files
will have their associated simulation directories deleted.
Returns:
None
"""
from .optimizer import OptimizationResult # avoid circular import
try:
result = OptimizationResult(work_directory,stage=stage)
tracked_dirs = []
for f in result.metadata_json_paths[stage]:
with open(f) as fh:
json_data = json.load(fh)
tracked_dirs.extend(json_data.get('sim_dirs'))
count = 0
for d in os.listdir(result.working_dir):
path = os.path.join(result.working_dir, d)
if path in tracked_dirs:
continue
elif os.path.isdir(path) and '_archived' not in path:
count+=1
for dirpath, dirnames, filenames in os.walk(path,\
topdown=False):
shutil.rmtree(dirpath, ignore_errors=True)
# if no json file in working dir for given stage, delete any other sim dirs
except:
count = 0
for d in os.listdir(work_directory):
path = os.path.join(work_directory, d)
if os.path.isdir(path) and '_archived' not in path:
count+=1
for dirpath, dirnames, filenames in os.walk(path,\
topdown=False):
shutil.rmtree(dirpath, ignore_errors=True)
print('deleted {} simulations that were either not tracked by a JSON file'\
.format(count) + ' or were not part of {} optimization stage'\
.format(stage))
def delete_files(work_directory, file_name=''):
"""
Recursively delete all files of a certain name from multiple PRMS
simulations that are within a given directory. Can be useful to removw
large files that are no longer needed. For example initial condition
output files are often large and not always used, similarly animation,
data, control, ... files may no longer be needed.
Arguments:
work_directory (str) : path to directory with simulations.
file_name (str) : Name of the PRMS input or output file(s) to be
removed, default = '' empty string- nothing will be deleted.
Example:
e.g. if you have several simulation directories:
>>> "test/results/intcp:-26.50_slope:0.49",
"test/results/intcp:-11.68_slope:0.54",
"test/results/intcp:-4.70_slope:0.51",
"test/results/intcp:-35.39_slope:0.39",
"test/results/intcp:-20.91_slope:0.41"
each of these contains an '/inputs' folder with a duplicate data
file that you would like to delete. In this case, delete all
data files like so:
>>> work_dir = 'test/results/'
>>> delete_files(work_dir, file_name='data')
Returns:
None
"""
for dirpath, dirnames, filenames in os.walk(work_directory, topdown=False):
paths = (os.path.join(dirpath, filename) for filename in filenames\
if filename == file_name)
for path in paths:
os.remove(path)
def load_statvar(statvar_file):
"""
Read the statvar file and load into a datetime indexed
Pandas dataframe object
Arguments:
statvar_file (str): statvar file path
Returns:
(pandas.DataFrame) Pandas DataFrame of PRMS variables date indexed
from statvar file
"""
# make list of statistical output variables for df header
column_list = ['index',
'year',
'month',
'day',
'hh',
'mm',
'sec']
# append to header list the variables present in the file
with open(statvar_file, 'r') as inf:
for idx, l in enumerate(inf):
# first line is always number of stat variables
if idx == 0:
n_statvars = int(l)
elif idx <= n_statvars and idx != 0:
column_list.append(l.rstrip().replace(' ', '_'))
else:
break
# arguments for read_csv function
missing_value = -999
skiprows = n_statvars+1
df = pd.read_csv(
statvar_file, delim_whitespace=True, skiprows=skiprows,
header=None, na_values=[missing_value]
)
# apply correct header names using metadata retrieved from file
df.columns = column_list
date = pd.Series(
pd.to_datetime(df.year*10000+df.month*100+df.day, format='%Y%m%d'),
index=df.index
)
# make the df index the datetime for the time series data
df.index = pd.to_datetime(date)
# drop unneeded columns
df.drop(['index', 'year', 'month', 'day', 'hh', 'mm', 'sec'],
axis=1, inplace=True)
# name dataframe axes (index,columns)
df.columns.name = 'statistical_variables'
df.index.name = 'date'
return df
def load_data_file(data_file):
# changed function name for PEP 8 style
warnings.warn("load_data_file is deprecated, please use "+\
"util.load_data instead", DeprecationWarning)
return load_data(data_file)
def load_data(data_file):
"""
Read the data file and load into a datetime indexed Pandas dataframe object.
Arguments:
data_file (str): data file path
Returns:
df (pandas.DataFrame): Pandas dataframe of input time series data
from data file with datetime index
"""
# valid input time series that can be put into a data file
valid_input_variables = ('gate_ht',
'humidity',
'lake_elev',
'pan_evap',
'precip',
'rain_day',
'runoff',
'snowdepth',
'solrad',
'tmax',
'tmin',
'wind_speed')
# starting list of names for header in dataframe
column_list = ['year',
'month',
'day',
'hh',
'mm',
'sec']
# append to header list the variables present in the file
with open(data_file, 'r') as inf:
for idx, l in enumerate(inf):
# first line always string identifier of the file- may use later
if idx == 0:
data_head = l.rstrip()
elif l.startswith('/'): # comment lines
continue
# header lines with name and number of input variables
if l.startswith(valid_input_variables):
# split line into list, first element name and
# second number of columns
h = l.split()
# more than one input time series of a particular variable
if int(h[1]) > 1:
for el in range(int(h[1])):
tmp = '{var_name}_{var_ind}'.format(var_name=h[0],
var_ind=el+1)
column_list.append(tmp)
elif int(h[1]) == 1:
column_list.append(h[0])
# end of header info and begin time series input data
if l.startswith('#'):
skip_line = idx+1
break
# read data file into pandas dataframe object with correct header names
missing_value = -999 # missing data representation
df = pd.read_csv(data_file, header=-1, skiprows=skip_line,
delim_whitespace=True, na_values=[missing_value])
# apply correct header names using metadata retrieved from file
df.columns = column_list
# create date column
date = pd.Series(
pd.to_datetime(df.year*10000+df.month*100+df.day, format='%Y%m%d'),
index=df.index
)
df.index = pd.to_datetime(date) # make the df index the datetime
# drop unneeded columns
df.drop(['year', 'month', 'day', 'hh', 'mm', 'sec'], axis=1, inplace=True)
df.columns.name = 'input variables'
df.index.name = 'date' # name dataframe axes (index,columns)
return df
def nash_sutcliffe(observed, modeled):
"""
Calculates the Nash-Sutcliffe Goodness-of-fit
Arguments:
observed (numpy.ndarray): historic observational data
modeled (numpy.ndarray): model output with matching time index
"""
numerator = sum((observed - modeled)**2)
denominator = sum((observed - np.mean(observed))**2)
return 1 - (numerator/denominator)
def percent_bias(observed, modeled):
"""
Calculates percent bias
Arguments:
observed (numpy.ndarray): historic observational data
modeled (numpy.ndarray): model output with matching time index
"""
return 100 * ( sum( modeled - observed ) / sum( observed ) )
def rmse(observed, modeled):
"""
Calculates root mean squared error
Arguments:
observed (numpy.ndarray): historic observational data
modeled (numpy.ndarray): model output with matching time index
"""
return np.sqrt( sum((observed - modeled)**2) / len(observed) )