From b2fe03e9e455f108f5dc991f6e6871c9b4f74505 Mon Sep 17 00:00:00 2001 From: tomrink <rink@ssec.wisc.edu> Date: Thu, 27 May 2021 22:04:26 -0500 Subject: [PATCH] remove dead code --- modules/amv/aeolus.py | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/modules/amv/aeolus.py b/modules/amv/aeolus.py index 997c2144..6c86e503 100644 --- a/modules/amv/aeolus.py +++ b/modules/amv/aeolus.py @@ -80,19 +80,6 @@ def time_dict_to_nd_2(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 get_cloud_layers_dict(filename, lon360=False): a_d = get_aeolus_time_dict(filename, lon360=lon360) c_d = time_dict_to_cld_layers(a_d) -- GitLab