Skip to content

Commit

Permalink
Fixed array reading issue with the linked list reader
Browse files Browse the repository at this point in the history
  • Loading branch information
daminton committed Jul 18, 2022
1 parent 62318b1 commit 3ce8126
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/ctem/ctem/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -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


Expand Down

0 comments on commit 3ce8126

Please sign in to comment.