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

snapshot...

parent 7d7e1cb9
Branches
No related tags found
No related merge requests found
...@@ -685,9 +685,11 @@ def run_evaluate_static(in_file, out_file, ckpt_dir): ...@@ -685,9 +685,11 @@ def run_evaluate_static(in_file, out_file, ckpt_dir):
refl = get_grid_values_all(h5f, 'super/refl_0_65um') refl = get_grid_values_all(h5f, 'super/refl_0_65um')
ylen, xlen = refl.shape ylen, xlen = refl.shape
refl = refl[0:int(ylen/2), :] refl = refl[0:int(ylen/2), :]
bt = get_grid_values_all(h5f, 'orig/temp_11_0um') bt = get_grid_values_all(h5f, 'orig/temp_11_0um')
ylen, xlen = bt.shape ylen, xlen = bt.shape
bt = bt[0:int(ylen/2), :] bt = bt[0:int(ylen/2), :]
cld_opd = get_grid_values_all(h5f, 'super/' + label_param) cld_opd = get_grid_values_all(h5f, 'super/' + label_param)
ylen, xlen = cld_opd.shape ylen, xlen = cld_opd.shape
cld_opd = cld_opd[0:int(ylen/2), :] cld_opd = cld_opd[0:int(ylen/2), :]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment