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

remove dead code

parent 2ae8613c
No related branches found
No related tags found
No related merge requests found
...@@ -80,19 +80,6 @@ def time_dict_to_nd_2(time_dict): ...@@ -80,19 +80,6 @@ def time_dict_to_nd_2(time_dict):
return 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): def get_cloud_layers_dict(filename, lon360=False):
a_d = get_aeolus_time_dict(filename, lon360=lon360) a_d = get_aeolus_time_dict(filename, lon360=lon360)
c_d = time_dict_to_cld_layers(a_d) c_d = time_dict_to_cld_layers(a_d)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment