diff --git a/modules/aeolus/aeolus_amv.py b/modules/aeolus/aeolus_amv.py index 6b3409f4a6cc1e28e0599758153784978f79802e..b1133273776576c9a3c1fa362a56b25f2d5d1347 100644 --- a/modules/aeolus/aeolus_amv.py +++ b/modules/aeolus/aeolus_amv.py @@ -1933,7 +1933,7 @@ def create_file_new(match_dct, filename, clvrx_params): grd_x_len = 9 grd_y_len = 9 num_aparams = 7 - num_aprofs = len(match_dct) + num_aprofs = 0 max_num_alevels = 0 max_num_amvs = 0 @@ -1948,6 +1948,7 @@ def create_file_new(match_dct, filename, clvrx_params): for key in keys: tup_s = match_dct.get(key) for tup in tup_s: + num_aprofs += 1 prof = tup[3] lat = prof[0, 0] lon = prof[0, 1] @@ -2027,7 +2028,7 @@ def create_file_new(match_dct, filename, clvrx_params): prf_time[:] = atimes idx = 0 - for key in enumerate(keys): + for key in keys: tup_s = match_dct.get(key) for tup in tup_s: prof = tup[3]