Skip to content
Closed
Changes from 1 commit
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
4 changes: 4 additions & 0 deletions esmvalcore/preprocessor/_area.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,11 @@ def extract_region(cube, start_longitude, end_longitude, start_latitude,
latitude=(start_latitude, end_latitude),
ignore_bounds=True,
)
# delete bounds: kluge for issue 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