I ran into a couple problems trying visualize some initial condition files in the E3SM inputdata repo. The files can be quite different, but a few of them have been particularly problematic, including this one => atm/cam/inic/homme/eam_i_rcemip_ne45np4_L60_c20210823.nc
When I first tried to open it with ncvis I got this error about the swband variable:
> ncvis /global/cfs/cdirs/e3sm/inputdata/atm/cam/inic/homme/eam_i_rcemip_ne45np4_L60_c20210823.nc
NcVis 2022.10.26 Paul A. Ullrich
ERROR: NetCDF fileset contains a dimension variable "swband" that is non-monotone
After removing that with a simple nco command:
ncks -x -v swband /global/cfs/cdirs/e3sm/inputdata/atm/cam/inic/homme/eam_i_rcemip_ne45np4_L60_c20210823.nc eam_i_rcemip_ne45np4_L60_c20210823_tmp.nc
I tried again and got this error:
...
..97% complete
..98% complete
..99% complete
..Done
Initializing the GridDataSampler took 31ms
EXCEPTION (/global/homes/p/paullric/ncvis/src/wxImagePanel.cpp, Line 648) Assertion failure
I'm trying to track down some issues with these files used for RCE experiments, so it's possible that there is a NaN value in the data, but either way it would be nice to have an option to ignore certain variables like swband.
I ran into a couple problems trying visualize some initial condition files in the E3SM inputdata repo. The files can be quite different, but a few of them have been particularly problematic, including this one =>
atm/cam/inic/homme/eam_i_rcemip_ne45np4_L60_c20210823.ncWhen I first tried to open it with ncvis I got this error about the
swbandvariable:After removing that with a simple nco command:
I tried again and got this error:
I'm trying to track down some issues with these files used for RCE experiments, so it's possible that there is a NaN value in the data, but either way it would be nice to have an option to ignore certain variables like
swband.