Skip to content

Commit d108c3c

Browse files
Update new_simpleNIPA.py
1 parent a7720d0 commit d108c3c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

albatross/new_simpleNIPA.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,8 @@ def bootcorr(
9292
# Mask land
9393
corr_grid = ma.masked_array(corr_grid, isnan(corr_grid))
9494
# Mask northern/southern ocean
95-
corr_grid.mask[self.sst.lat > 80] = True
96-
corr_grid.mask[self.sst.lat < -80] = True
95+
corr_grid.mask[self.sst.lat > 60] = True
96+
corr_grid.mask[self.sst.lat < -60] = True
9797
nlat = len(self.sst.lat)
9898
nlon = len(self.sst.lon)
9999

0 commit comments

Comments
 (0)