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

minor...

parent bef9ccc6
No related branches found
No related tags found
No related merge requests found
......@@ -332,7 +332,6 @@ def make_for_full_domain_predict(clvrx_file, name_list=l1b_ds_list):
j_0 = 0
for didx, ds_name in enumerate(name_list):
print(ds_name)
for j in range(4, n_y-4, 1):
j_ul = j_0 + j * w_y
for i in range(4, n_x-4, 1):
......@@ -341,7 +340,7 @@ def make_for_full_domain_predict(clvrx_file, name_list=l1b_ds_list):
grd_dct = {name: None for name in name_list}
for didx, ds_name in enumerate(name_list):
grd_dct[ds_name] = np.concatenate(grd_dct_n[ds_name])
grd_dct[ds_name] = np.stack(grd_dct_n[ds_name])
return grd_dct
......
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