Browse Source

Merge pull request #125 from pgamez/develop

Correction of the 2nd example in 'interplevel' docstring
lon0
Michaela Sizemore 5 years ago committed by GitHub
parent
commit
92596e27ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      src/wrf/interp.py

4
src/wrf/interp.py

@ -90,10 +90,10 @@ def interplevel(field3d, vert, desiredlev, missing=default_fill(np.float64), @@ -90,10 +90,10 @@ def interplevel(field3d, vert, desiredlev, missing=default_fill(np.float64),
wrfin = Dataset("wrfout_d02_2010-06-13_21:00:00")
rh = getvar(wrfin, "rh")
z = getvar(wrfin, "z")
height = getvar(wrfin, "height_agl")
pblh = getvar(wrfin, "PBLH")
rh_pblh = interplevel(rh, z, pblh)
rh_pblh = interplevel(rh, height, pblh)
"""

Loading…
Cancel
Save