Changeset 2264 in lmdz_wrf
- Timestamp:
- Dec 20, 2018, 1:54:43 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/nc_var_tools.py
r2247 r2264 27057 27057 27058 27058 def compute_Koeppen_Geiger_clims(values): 27059 """ Function to compute the Kooeppen-Geiger climatological classification 27059 """ Function to compute the Kooeppen-Geiger climatological classification after: 27060 Kottek et al., Meteorologische Zeitschrift, Vol. 15, No. 3, 259-263 27060 27061 values= [tasvalues]:[prvalues] 27061 27062 [tasvalues]: '|' separated list of [ncfilen]|[varn]|[timevarn] for tas (2m temperature) … … 27167 27168 27168 27169 # Starting statistics 27169 tasn = np.min(tas )27170 tasx = np.max(tas )27171 27172 prn = np.min(pr )27173 prx = np.max(pr )27170 tasn = np.min(tas, axis=(0)) 27171 tasx = np.max(tas, axis=(0)) 27172 27173 prn = np.min(pr, axis=(0)) 27174 prx = np.max(pr, axis=(0)) 27174 27175 27175 27176
Note: See TracChangeset
for help on using the changeset viewer.