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

snapshot...

parent b963a353
No related branches found
No related tags found
No related merge requests found
......@@ -116,7 +116,7 @@ def upsample_mean(grd):
def get_grid_cell_mean(grd_k):
grd_k = np.where(np.isnan(grd_k), 0, grd_k)
# grd_k = np.where(np.isnan(grd_k), 0, grd_k)
a = grd_k[:, 0::2, 0::2]
b = grd_k[:, 1::2, 0::2]
c = grd_k[:, 0::2, 1::2]
......@@ -127,7 +127,7 @@ def get_grid_cell_mean(grd_k):
def get_min_max_std(grd_k):
grd_k = np.where(np.isnan(grd_k), 0, grd_k)
# grd_k = np.where(np.isnan(grd_k), 0, grd_k)
a = grd_k[:, 0::2, 0::2]
b = grd_k[:, 1::2, 0::2]
c = grd_k[:, 0::2, 1::2]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment