From 73a8df23afd199e8a43096e3895fed42eb4552a1 Mon Sep 17 00:00:00 2001 From: Anne Tipka <anne.tipka@ctbto.org> Date: Wed, 26 Oct 2022 09:27:29 +0000 Subject: [PATCH] added output at the end to show which packingType was used --- Source/Python/Classes/EcFlexpart.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Source/Python/Classes/EcFlexpart.py b/Source/Python/Classes/EcFlexpart.py index b7e02f6..4584af6 100644 --- a/Source/Python/Classes/EcFlexpart.py +++ b/Source/Python/Classes/EcFlexpart.py @@ -1478,9 +1478,9 @@ class EcFlexpart(object): ''' gribfile = GribUtil(os.path.join(inputdir, 'rr_grib_dummy.grb')) - + gribfile.copy_dummy_msg(ifile, keynames=['paramId','paramId'], - keyvalues=[142,143], filemode='wb') + keyvalues=[142,143], filemode='wb') return @@ -1879,6 +1879,8 @@ class EcFlexpart(object): print('\n\nPostprocessing:\n Format: {}\n'.format(c.format)) + print('\n\nGrib compression type:\n packingType: {}\n'.format(c.compression)) + if _config.FLAG_ON_ECMWFSERVER: print('ecstorage: {}\n ecfsdir: {}\n'. format(c.ecstorage, c.ecfsdir)) -- GitLab