diff --git a/modules/aeolus/aeolus_amv.py b/modules/aeolus/aeolus_amv.py
index 9f565497df20d4956ffe46d0b577e1f7494208a8..5dc18b6bfbb8f712d5409c3cf414134b79f9f8c9 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())