Skip to content

Commit

Permalink
rm regridding of uncertainty field
Browse files Browse the repository at this point in the history
  • Loading branch information
LisaBock committed Jul 17, 2024
1 parent 0384623 commit 6e9fc0d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions esmvaltool/cmorizers/data/formatters/datasets/esacci_sst.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,9 @@ def get_monthly_cube(cfg, var, vals, raw_info, attrs,

cube = concatenate(data_cubes)

# regridding from 0.05x0.05 to 0.5x0.5
cube = regrid(cube, target_grid='0.5x0.5', scheme='area_weighted')
# regridding from 0.05x0.05 to 0.5x0.5 (not for uncertainty field
if 'Stderr' not in var:
cube = regrid(cube, target_grid='0.5x0.5', scheme='area_weighted')

# Fix dtype
utils.fix_dtype(cube)
Expand Down

0 comments on commit 6e9fc0d

Please sign in to comment.