Skip to content
Snippets Groups Projects
Commit baa12f15 authored by tomrink's avatar tomrink
Browse files

snapshot...

parent a64032a0
Branches
No related tags found
No related merge requests found
......@@ -1178,7 +1178,6 @@ def run_mean_std(check_cloudy=False):
if check_cloudy:
keep = np.logical_or(cld_msk_i == 2, cld_msk_i == 3)
data_i = data_i[keep]
print('ice: ', data_i.shape)
mean_i = np.nanmean(data_i)
data_i -= mean_i
std_i = np.nanstd(data_i)
......@@ -1187,7 +1186,6 @@ def run_mean_std(check_cloudy=False):
if check_cloudy:
keep = np.logical_or(cld_msk_ni == 2, cld_msk_ni == 3)
data_ni = data_ni[keep]
print('no ice: ', data_ni.shape)
mean_ni = np.nanmean(data_ni)
data_ni -= mean_ni
std_ni = np.nanstd(data_ni)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment