-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproc_cr1000_sys.py
346 lines (300 loc) · 12.6 KB
/
proc_cr1000_sys.py
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
344
345
346
#!/usr/bin/env python
# Last modified: Time-stamp: <2017-03-11 13:09:58 haines>
"""
how to parse data, and assert what data and info goes into
creating and updating monthly netcdf files
parse system data collected on Campbell Scientific DataLogger (loggernet) (csi)
parser : sample date and time,
creator : lat, lon, z, time,
updator : time,
Examples
--------
>> (parse, create, update) = load_processors('proc_csi_adcp_v2')
or
>> si = get_config(cn+'.sensor_info')
>> (parse, create, update) = load_processors(si['adcp']['proc_module'])
>> lines = load_data(filename)
>> data = parse(platform_info, sensor_info, lines)
>> create(platform_info, sensor_info, data) or
>> update(platform_info, sensor_info, data)
"""
from raw2proc import *
from procutil import *
from ncutil import *
now_dt = datetime.utcnow()
now_dt.replace(microsecond=0)
def parser(platform_info, sensor_info, lines):
"""
Example system data
"TOA5","CR1000_B2","CR1000","31722","CR1000.Std.26","CPU:UNC CHill_20_Buoy2_Revision2013_str.CR1","36098","Sys_1Hr"
"TIMESTAMP","RECORD","P_Batt_Min","P_Batt_TMn","P_Batt_Max","P_Batt_TMx","P_Temp_Avg","P_RH_Avg"
"TS","RN","","","","","",""
"","","Min","TMn","Max","TMx","Avg","Avg"
"2014-02-01 00:00:00",75,13,"2014-01-31 23:50:00",13.22,"2014-01-31 23:01:00",12.82,7.771
"2014-02-01 01:00:00",76,13.05,"2014-02-01 00:56:00",13.09,"2014-02-01 00:29:00",10.15,8.22
"2014-02-01 02:00:00",77,13.03,"2014-02-01 01:44:00",13.07,"2014-02-01 01:05:00",7.792,8.64
"2014-02-01 03:00:00",78,12.95,"2014-02-01 02:01:00",13.04,"2014-02-01 02:04:00",6.323,9.01
"2014-02-01 04:00:00",79,12.99,"2014-02-01 03:50:00",13.03,"2014-02-01 03:13:00",5.068,9.27
####### TO DO add parsing additional variables ######
####### New additions to cr1000_sys -- 4 columns at end #####
"TOA5","CR1000_B1_RUDICS","CR1000","55356","CR1000.Std.25","CPU:UNC CHill_30_Buoy1_Revision_2017-02-21.CR1","14173","Sys_1Hr"
"TIMESTAMP","RECORD","P_Batt_Min","P_Batt_TMn","P_Batt_Max","P_Batt_TMx","P_Temp_Avg","P_RH_Avg","Li_Batt","WatchdogErrors","SkippedScan","SkippedSystemScan"
"TS","RN","","","","","","","","","",""
"","","Min","TMn","Max","TMx","Avg","Avg","Smp","Smp","Smp","Smp"
"2017-03-01 00:00:00",7,12.38,"2017-02-28 23:52:00",13.16,"2017-02-28 23:01:00",25.22,6.293,3.515,0,7,0
"2017-03-01 01:00:00",8,12.44,"2017-03-01 00:09:00",12.66,"2017-03-01 00:50:00",23.72,6.485,3.513,0,7,0
"2017-03-01 02:00:00",9,12.65,"2017-03-01 01:04:00",12.69,"2017-03-01 01:09:00",22.72,6.611,3.512,0,7,0
"2017-03-01 03:00:00",10,12.67,"2017-03-01 02:36:00",12.71,"2017-03-01 02:03:00",22.23,6.689,3.512,0,7,0
"""
import numpy
from datetime import datetime
from time import strptime
# get sample datetime from filename
fn = sensor_info['fn']
sample_dt_start = filt_datetime(fn)
# how many samples (don't count header 4 lines)
nsamp = len(lines[4:])
N = nsamp
data = {
'dt' : numpy.array(numpy.ones((N,), dtype=object)*numpy.nan),
'time' : numpy.array(numpy.ones((N,), dtype=long)*numpy.nan),
'batt_min' : numpy.array(numpy.ones((N,), dtype=float)*numpy.nan),
'batt_max' : numpy.array(numpy.ones((N,), dtype=float)*numpy.nan),
'can_temp' : numpy.array(numpy.ones((N,), dtype=float)*numpy.nan),
'can_rh' : numpy.array(numpy.ones((N,), dtype=float)*numpy.nan),
}
# sample count
i = 0
for line in lines[4:]:
csi = []
# split line
sw = re.split(',', line)
if len(sw)<=0:
print ' ... skipping line %d ' % (i,)
continue
# replace any "NAN" text with a number
for index, s in enumerate(sw):
m = re.search(NAN_RE_STR, s)
if m:
sw[index] = '-99999'
# parse date-time, and all other float and integers
for s in sw[1:]:
m = re.search(REAL_RE_STR, s)
if m:
csi.append(float(m.groups()[0]))
if sensor_info['utc_offset']:
sample_dt = scanf_datetime(sw[0], fmt='"%Y-%m-%d %H:%M:%S"') + \
timedelta(hours=sensor_info['utc_offset'])
else:
sample_dt = scanf_datetime(sw[0], fmt='"%Y-%m-%d %H:%M:%S"')
data['dt'][i] = sample_dt # sample datetime
data['time'][i] = dt2es(sample_dt) # sample time in epoch seconds
# increased number of parameters so account for both sizes -- was len(csi)==7
if len(csi)>=7 and len(csi)<=11:
#
# data['samplenum'][i] = csi[0] # sample number assigned by datalogger in table
data['batt_min'][i] = csi[1] # (v) CR1000 batt min in last hour
data['batt_max'][i] = csi[3] # (v)
data['can_temp'][i] = csi[5] # canister temperature avg (deg C)
data['can_rh'][i] = csi[6] # canister relative humidity as leak detect (%)
i=i+1
else:
print ' ... skipping line %d -- %s ' % (i,line)
continue
# if re.search
# for line
# Specific to buoys using CR1000 in Fall of 2011
# prior to Jan 01, 2012, no difference
if data['dt'][0] < datetime(2012, 1, 1):
pass
# some QC
# good = -40<at & at<60 # does not work
# good = (-40<at) & (at<60) # THIS WORKS!
# return the -99999 back into Nan's
for vn in ['batt_min', 'batt_max', 'can_temp', 'can_rh']:
bad = data[vn]==-99999
data[vn][bad] = numpy.nan
# check that no data[dt] is set to Nan or anything but datetime
# keep only data that has a resolved datetime
keep = numpy.array([type(datetime(1970,1,1)) == type(dt) for dt in data['dt'][:]])
if keep.any():
for param in data.keys():
data[param] = data[param][keep]
return data
def creator(platform_info, sensor_info, data):
#
#
# subset data only to month being processed (see raw2proc.process())
i = data['in']
title_str = sensor_info['description']+' at '+ platform_info['location']
global_atts = {
'title' : title_str,
'institution' : platform_info['institution'],
'institution_url' : platform_info['institution_url'],
'institution_dods_url' : platform_info['institution_dods_url'],
'metadata_url' : platform_info['metadata_url'],
'references' : platform_info['references'],
'contact' : platform_info['contact'],
#
'source' : platform_info['source']+' '+sensor_info['source'],
'history' : 'raw2proc using ' + sensor_info['process_module'],
'comment' : 'File created using pycdf'+pycdfVersion()+' and numpy '+pycdfArrayPkg(),
# conventions
'Conventions' : platform_info['conventions'],
# SEACOOS CDL codes
'format_category_code' : platform_info['format_category_code'],
'institution_code' : platform_info['institution_code'],
'platform_code' : platform_info['id'],
'package_code' : sensor_info['id'],
# institution specific
'project' : platform_info['project'],
'project_url' : platform_info['project_url'],
# timeframe of data contained in file yyyy-mm-dd HH:MM:SS
# first date in monthly file
'start_date' : data['dt'][i][0].strftime("%Y-%m-%d %H:%M:%S"),
# last date in monthly file
'end_date' : data['dt'][i][-1].strftime("%Y-%m-%d %H:%M:%S"),
'release_date' : now_dt.strftime("%Y-%m-%d %H:%M:%S"),
#
'creation_date' : now_dt.strftime("%Y-%m-%d %H:%M:%S"),
'modification_date' : now_dt.strftime("%Y-%m-%d %H:%M:%S"),
'process_level' : 'level1',
#
# must type match to data (e.g. fillvalue is real if data is real)
'_FillValue' : -99999.,
}
var_atts = {
# coordinate variables
'time' : {'short_name': 'time',
'long_name': 'Time',
'standard_name': 'time',
'units': 'seconds since 1970-1-1 00:00:00 -0', # UTC
'axis': 'T',
},
'lat' : {'short_name': 'lat',
'long_name': 'Latitude',
'standard_name': 'latitude',
'reference':'geographic coordinates',
'units': 'degrees_north',
'valid_range':(-90.,90.),
'axis': 'Y',
},
'lon' : {'short_name': 'lon',
'long_name': 'Longitude',
'standard_name': 'longitude',
'reference':'geographic coordinates',
'units': 'degrees_east',
'valid_range':(-180.,180.),
'axis': 'Y',
},
'z' : {'short_name': 'z',
'long_name': 'Altitude',
'standard_name': 'altitude',
'reference':'zero at mean sea level',
'positive' : 'up',
'units': 'm',
'axis': 'Z',
},
# data variables
'batt_min': {'short_name': 'batt_min',
'long_name': 'System Minimum Battery',
'standard_name': 'battery minimum',
'units': 'volt',
'z': sensor_info['canister_height'],
'z_units' : 'meter',
},
'batt_max': {'short_name': 'batt_max',
'long_name': 'System Maximum Battery',
'standard_name': 'battery maximum',
'units': 'volt',
'z': sensor_info['canister_height'],
'z_units' : 'meter',
},
'can_temp': {'short_name': 'can_temp',
'long_name': 'Internal Canister Temperature',
'standard_name': 'temperature',
'units': 'degC',
'z': sensor_info['canister_height'],
'z_units' : 'meter',
},
'can_rh': {'short_name': 'can_rh',
'long_name': 'Internal Canister RH -- Leak Detect',
'standard_name': 'relative_humidity',
'units': '%',
'z': sensor_info['canister_height'],
'z_units' : 'meter',
},
}
# dimension names use tuple so order of initialization is maintained
dim_inits = (
('ntime', NC.UNLIMITED),
('nlat', 1),
('nlon', 1),
('nz', 1),
)
# using tuple of tuples so order of initialization is maintained
# using dict for attributes order of init not important
# use dimension names not values
# (varName, varType, (dimName1, [dimName2], ...))
var_inits = (
# coordinate variables
('time', NC.INT, ('ntime',)),
('lat', NC.FLOAT, ('nlat',)),
('lon', NC.FLOAT, ('nlon',)),
('z', NC.FLOAT, ('nz',)),
# data variables
('batt_min', NC.FLOAT, ('ntime',)),
('batt_max', NC.FLOAT, ('ntime',)),
('can_temp', NC.FLOAT, ('ntime',)),
('can_rh', NC.FLOAT, ('ntime',)),
)
# subset data only to month being processed (see raw2proc.process())
i = data['in']
# var data
var_data = (
('lat', platform_info['lat']),
('lon', platform_info['lon']),
('z', platform_info['altitude']),
#
('time', data['time'][i]),
#
('batt_min', data['batt_min'][i]),
('batt_max', data['batt_max'][i]),
('can_temp', data['can_temp'][i]),
('can_rh', data['can_rh'][i]),
)
return (global_atts, var_atts, dim_inits, var_inits, var_data)
def updater(platform_info, sensor_info, data):
#
# subset data only to month being processed (see raw2proc.process())
i = data['in']
global_atts = {
# update times of data contained in file (yyyy-mm-dd HH:MM:SS)
# last date in monthly file
'end_date' : data['dt'][i][-1].strftime("%Y-%m-%d %H:%M:%S"),
'release_date' : now_dt.strftime("%Y-%m-%d %H:%M:%S"),
#
'modification_date' : now_dt.strftime("%Y-%m-%d %H:%M:%S"),
}
# data variables
# update any variable attributes like range, min, max
var_atts = {}
# var_atts = {
# 'wtemp': {'max': max(data.u),
# 'min': min(data.v),
# },
# 'cond': {'max': max(data.u),
# 'min': min(data.v),
# },
# }
# data
var_data = (
('time', data['time'][i]),
#
('batt_min', data['batt_min'][i]),
('batt_max', data['batt_max'][i]),
('can_temp', data['can_temp'][i]),
('can_rh', data['can_rh'][i]),
)
return (global_atts, var_atts, var_data)
#