📜  使用 xarray 向数据集添加属性和元数据 - Python 代码示例

📅  最后修改于: 2022-03-11 14:47:13.951000             🧑  作者: Mango

代码示例1
#import xarray
import xarray as xr

#open dataset
ds = xr.open_dataset(file_name.nc)

#add attributes and metadata in different ways
ds.attrs = {attribute name : attribute value}
ds.attrs[attribute name] = attribute value