Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions esmvalcore/preprocessor/_area.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,12 @@ def extract_region(cube, start_longitude, end_longitude, start_latitude,
latitude=(start_latitude, end_latitude),
ignore_bounds=True,
)
# delete bounds: kluge for
# issue here https://github.com/ESMValGroup/ESMValCore/issues/799
# TODO remove the bounds handling after iris fix
region_subset.coord("longitude").bounds = None
region_subset = region_subset.intersection(longitude=(0., 360.))
region_subset.coord("longitude").guess_bounds()
return region_subset
# Irregular grids
lats = cube.coord('latitude').points
Expand Down