-
Notifications
You must be signed in to change notification settings - Fork 0
/
cesmutils.py
41 lines (40 loc) · 1020 Bytes
/
cesmutils.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
def realm(vn):
d={
'lhflx': 'atm',
'vq': 'atm',
'vt': 'atm',
'vz': 'atm',
'fsntoa': 'atm',
'fsns': 'atm',
'flnt': 'atm',
'flns': 'atm',
'ra': 'atm',
'pblh': 'atm',
'pblp': 'atm',
'qsoil': 'lnd',
'qvege': 'lnd',
'qvegt': 'lnd',
'qsum': 'lnd',
'fsm': 'lnd',
'fsno': 'lnd',
}
return d[vn]
def history(vn):
d={
'lhflx': 'cam.h1',
'fsntoa': 'cam.h1',
'fsns': 'cam.h1',
'flnt': 'cam.h1',
'flns': 'cam.h1',
'ra': 'cam.h1',
'solin': 'cam.h1',
'pblh': 'cam.h1',
'pblp': 'cam.h1',
'qsoil': 'clm2.h5',
'qvege': 'clm2.h5',
'qvegt': 'clm2.h5',
'qsum': 'clm2.h5',
'fsm': 'clm2.h5',
'fsno': 'clm2.h5',
}
return d[vn]