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

minor

parent b2fe03e9
No related branches found
No related tags found
No related merge requests found
......@@ -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())
......
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