From d8ff611300571c1f972a710e480b384fad41f1c2 Mon Sep 17 00:00:00 2001 From: tomrink <rink@ssec.wisc.edu> Date: Thu, 27 May 2021 22:05:55 -0500 Subject: [PATCH] minor --- modules/aeolus/aeolus_amv.py | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/modules/aeolus/aeolus_amv.py b/modules/aeolus/aeolus_amv.py index 9f565497..5dc18b6b 100644 --- a/modules/aeolus/aeolus_amv.py +++ b/modules/aeolus/aeolus_amv.py @@ -1294,6 +1294,17 @@ def time_dict_to_nd(time_dict): return time_dict +# # make each profile at a timestamp a numpy array +# def time_dict_to_nd(time_dict): +# keys = list(time_dict.keys()) +# for key in keys: +# vals = time_dict[key] +# if vals is not None: +# for i in range(len(vals)): +# nda = np.array(vals[i]) +# vals[i] = nda +# +# return time_dict def concat(t_dct_0, t_dct_1): keys_0 = list(t_dct_0.keys()) -- GitLab