Skip to content
Snippets Groups Projects
Commit 3cc3390e authored by Frisinghelli Daniel's avatar Frisinghelli Daniel
Browse files

Optional compression for ERA5.

parent 0ec2a085
No related branches found
No related tags found
No related merge requests found
......@@ -168,6 +168,11 @@ def preprocess_era5_parser():
help='Overwrite existing files {}.'.format(default),
default=False, nargs='?', const=True, metavar='')
# optional argument: whether to apply compression
parser.add_argument('-c', '--compress', type=bool,
help='Apply file compression {}.'.format(default),
default=False, nargs='?', const=True, metavar='')
# optional argument: dry run, print files which would be processed
parser.add_argument('-d', '--dry-run', type=bool,
help=('Print files which would be processed {}.'
......
......@@ -128,9 +128,10 @@ if __name__ == '__main__':
ds = xr.open_mfdataset(target, parallel=True).compute()
# set NetCDF file compression for each variable
for _, var in ds.data_vars.items():
var.encoding['zlib'] = True
var.encoding['complevel'] = 5
if args.compress:
for _, var in ds.data_vars.items():
var.encoding['zlib'] = True
var.encoding['complevel'] = 5
# save aggregated netcdf file
LOGGER.info('Compressing NetCDF: {}'.format(filename))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment