From 3ce812694cea4f72a26b40d45343615e145020da Mon Sep 17 00:00:00 2001 From: David Minton Date: Mon, 18 Jul 2022 13:35:59 -0400 Subject: [PATCH] Fixed array reading issue with the linked list reader --- python/ctem/ctem/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/ctem/ctem/util.py b/python/ctem/ctem/util.py index c9ab281f..3347de17 100644 --- a/python/ctem/ctem/util.py +++ b/python/ctem/ctem/util.py @@ -291,7 +291,7 @@ def read_linked_list_binary(filename, stackname, gridsize): for s in np.arange(stack[j, i]): d = f.read_reals(np.float64) datastack.append(d) - data[j, i] = d + data[j, i] = np.asarray(datastack).T return data