Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision
  • 1-download-era5
  • cloud_water_contents
  • dev
  • feature/makefiles
  • master
  • origin/task/language-editing
  • sysinstall
  • task/language-editing
  • 7.0.4
  • v7.0.4.1
  • v7.1
  • v7.1.1
  • v7.1.2
13 results

Target

Select target project
  • flexpart/flex_extract
1 result
Select Git revision
  • 1-download-era5
  • cloud_water_contents
  • dev
  • feature/makefiles
  • master
  • origin/task/language-editing
  • sysinstall
  • task/language-editing
  • 7.0.4
  • v7.0.4.1
  • v7.1
  • v7.1.1
  • v7.1.2
13 results
Show changes
Commits on Source (2)
...@@ -1928,14 +1928,15 @@ class EcFlexpart(object): ...@@ -1928,14 +1928,15 @@ class EcFlexpart(object):
ofile = os.path.join(self.inputdir, ofile) ofile = os.path.join(self.inputdir, ofile)
if c.format.lower() == 'grib2': if c.format.lower() == 'grib2':
execute_subprocess(['grib_set', '-s', 'edition=2,' + # execute_subprocess(['grib_set', '-s', 'edition=2,' +
'productDefinitionTemplateNumber=8', # 'productDefinitionTemplateNumber=8',
ofile, ofile + '_2'], # ofile, ofile + '_2'],
error_msg='GRIB2 CONVERSION FAILED!') # error_msg='GRIB2 CONVERSION FAILED!')
execute_subprocess(['mv', ofile + '_2', ofile], # execute_subprocess(['mv', ofile + '_2', ofile],
error_msg='RENAMING FOR NEW GRIB2 FORMAT ' # error_msg='RENAMING FOR NEW GRIB2 FORMAT '
'FILES FAILED!') # 'FILES FAILED!')
print('GRIB2 CONVERSION skipped!')
if c.compression.lower() != 'grid_simple': if c.compression.lower() != 'grid_simple':
execute_subprocess(['grib_set', '-r', '-s', execute_subprocess(['grib_set', '-r', '-s',
......