Skip to content
Snippets Groups Projects
Commit 8e63fb9e authored by Christoph Knote's avatar Christoph Knote
Browse files

Make a copy of the data upon adding

parent 4472d96b
No related branches found
No related tags found
1 merge request!20Make a copy of the data upon adding
Pipeline #106 passed
......@@ -87,18 +87,20 @@ class DataStore1001:
"""
if not isinstance(newData, np.ndarray):
raise TypeError("Input data needs to be numpy ndarray.")
if newData.dtype.names is None:
workData = newData.copy()
if workData.dtype.names is None:
try:
newData.dtype = [(name, newData.dtype) for name in self.varnames]
workData.dtype = [(name, workData.dtype) for name in self.varnames]
except:
ValueError(
"Could not assign names to data structure, are you providing an array containing all variables?"
)
if self.data is None:
self.data = newData
self.data = workData
else:
self.data = np.append(self.data, newData)
self.data = np.append(self.data, workData)
def denanify(self, d):
dd = d.copy()
......
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