我正在尝试使用 netcdf4 文件中的 xarray 读取 python 中的全局属性。我可以从 linux 命令行中看到 nc_dump 中的全局属性。我试过:
print(ds['global_attribute']) print(ds.attrs['global_attribute'])
在 python 中,我注意到当我使用
print(ds.variables.keys())
感谢帮助。