mikeio
mikeio copied to clipboard
Change Dataset to a Sequence instead of a Mapping
Having Dataset as a Mapping with separate keys (as before this PR) causes some problems:
- renaming of DataArray
daby settingda.name = "new_name"will give a mismatch between the DataArray's name and the names (keys) of the Dataset that it belongs to
This PR change the underlaying data variable in Dataset from a dict to a list
(work in progress)