def __init__(self,
data: xr.Dataset,
mutable: bool = False):
"""
Create and initialize a new DataSet with the specified parameters.
There should be no reason to invoke this constructor directly. Instead, the utility methods for loading a data
set from a file, or for creating an empty data set should be used.
Parameters
----------
data: xarray.Dataset
The xarray data set storing the actual data
mutable: bool
True, if modifications to the data set should be allowed, False otherwise
"""
super().__init__()
self._data = data
self._mutable = mutable
评论列表
文章目录