You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Different yamls in parm/atm/obs/config use different suffixes for diagnostic files. As a result the finalize method in g-w atm_analysis.py fails to gzip and tar all diagnostic files. Currently the finalize method only processes diagnostic files ending in the suffix .nc4.
# get list of diag files to put in tarball
diags = glob.glob(os.path.join(self.task_config.DATA, 'diags', 'diag*nc4'))
The diagnostic suffixes used by yamls in parm/atm/obs/config are tabulated below
What convention should be used for the names of netCDF files?
NetCDF files should have the file name extension ".nc". The recommended extension for netCDF files was changed from ".cdf" to ".nc" in 1994 in order to avoid a clash with the NASA CDF file extension, and now it also avoids confusion with "Channel Definition Format" files.
The text was updated successfully, but these errors were encountered:
Different yamls in
parm/atm/obs/config
use different suffixes for diagnostic files. As a result thefinalize
method in g-watm_analysis.py
fails to gzip and tar all diagnostic files. Currently thefinalize
method only processes diagnostic files ending in the suffix.nc4
.The diagnostic suffixes used by yamls in
parm/atm/obs/config
are tabulated below.nc
.nc4
The NetCDF 4.92. FAQ recommends
.nc
The text was updated successfully, but these errors were encountered: