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

minor...

parent 79577e9b
Branches
No related tags found
No related merge requests found
......@@ -2455,7 +2455,14 @@ def run_icing_predict_image(clvrx_dir='/Users/tomrink/data/clavrx/RadC/', output
keep_lons = None
keep_lats = None
make_icing_image(None, probs_2d_dct[0], None, None, clvrx_str_time, satellite, domain,
prob_s = []
for flvl in flight_levels:
probs = probs_2d_dct[flvl]
prob_s.append(probs)
prob_s = np.stack(prob_s, axis=-1)
max_prob = np.max(prob_s, axis=2)
make_icing_image(None, max_prob, None, None, clvrx_str_time, satellite, domain,
ice_lons_vld=keep_lons, ice_lats_vld=keep_lats, extent=extent)
print('Done: ', clvrx_str_time)
......
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment