Skip to content

Commit 9b043bd

Browse files
committed
Correction of the 2nd example in 'interplevel' docstring
1 parent bd1107c commit 9b043bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/wrf/interp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ def interplevel(field3d, vert, desiredlev, missing=default_fill(np.float64),
9090
wrfin = Dataset("wrfout_d02_2010-06-13_21:00:00")
9191
9292
rh = getvar(wrfin, "rh")
93-
z = getvar(wrfin, "z")
93+
z = getvar(wrfin, "z", msl=False)
9494
pblh = getvar(wrfin, "PBLH")
9595
9696
rh_pblh = interplevel(rh, z, pblh)

0 commit comments

Comments
 (0)