From a9e9c70a6e80454d7f48d197121a80c8d7db7482 Mon Sep 17 00:00:00 2001 From: justin-richling <56696811+justin-richling@users.noreply.github.com> Date: Tue, 18 Feb 2025 12:53:59 -0700 Subject: [PATCH] Update plotting_functions.py --- lib/plotting_functions.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/plotting_functions.py b/lib/plotting_functions.py index e58dc3972..bf3c9d2af 100644 --- a/lib/plotting_functions.py +++ b/lib/plotting_functions.py @@ -1649,11 +1649,12 @@ def lev_to_plev(data, ps, hyam, hybm, P0=100000., new_levels=None, hybm, p0=P0 ) - + print("asf\n") # data_interp may contain a dask array, which can cause # trouble downstream with numpy functions, so call compute() here. if hasattr(data_interp, "compute"): data_interp = data_interp.compute() + print("asf 2\n") #Rename vertical dimension back to "lev" in order to work with #the ADF plotting functions: @@ -2791,4 +2792,4 @@ def square_contour_difference(fld1, fld2, **kwargs): return fig ##################### -#END HELPER FUNCTIONS \ No newline at end of file +#END HELPER FUNCTIONS