Commit 7324c7e5 authored by Klaus Wölfel's avatar Klaus Wölfel Committed by Eteri

Data Array View: Temporary hack to appear like plain array

parent fa9362b4
......@@ -91,4 +91,12 @@ class DataArrayView(DataArray):
line_list = [(l.getIntIndex(), l.getArray()) for l in self.objectValues(portal_type="Data Array View Line")]
if not line_list:
return None
return MergedArray([l[1] for l in sorted(line_list)])
\ No newline at end of file
return MergedArray([l[1] for l in sorted(line_list)])
def getArrayDtype(self):
"""Standard dtype"""
return "float64"
def getArrayShape(self):
"""Standard shape"""
return (self.getArray().shape[0], 48)
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment