2D plotting of LES output#
The below notebook compares selected simulations against observational targets that were collected from satellite and ground-based retrievals.
In case of questions or concerns, please notify Ann Fridlind (ann.fridlind@nasa.gov), Timothy Juliano (tjuliano@ucar.edu), and Florian Tornow (ft2544@columbia.edu).
%run functions_plotting.py
## select simulations to plot
sim_keyword = 'FixN_2D'
%run functions_plotting.py
var_vec_2d = ['alb']
## load all simulations located in subfolders of the given directory
df_col_2d = load_sims_2d('/data/project/comble-mip/output_les/',var_vec_2d,t_shift=-2,keyword=sim_keyword)
Loading variables: f(time,x,y)
/data/project/comble-mip/output_les/wrf/WRF_Lx25_dx100_FixN_2D.nc
ERROR 1: PROJ: proj_create_from_database: Open of /opt/conda/share/proj failed
/data/project/comble-mip/output_les/dharma/DHARMA_Lx25_dx100_FixN_2D.nc
/data/project/comble-mip/output_les/uclales-salsa/UCLALES-SALSA_Lx25_dx100_FixN_2D.nc
...adjusting x and y values
df_col_2d['us'].plot(row='time',col_wrap=7,col='simulation')
/opt/conda/lib/python3.10/site-packages/xarray/plot/facetgrid.py:187: UserWarning: Ignoring col_wrap since both col and row were passed
warnings.warn("Ignoring col_wrap since both col and row were passed")
<xarray.plot.facetgrid.FacetGrid at 0x7f5f46895570>