首页 > 编程知识 正文

valueerror:coordsisnotdict-like

时间:2023-05-06 19:44:49 阅读:255853 作者:1548

python小白,用pycharm打开nc文件,想读取Albedo_inst这个变量,在DataArray()处出错ds = xr.open_dataset('A201701.021.nc4')t = ds['Albedo_inst']lons = ds.lon.datalats = ds.lat.datatemp = xr.DataArray(t.data.T, coords=[lats,lons], dims=['latitude','longitude

ValueError: coords is not dict-like, but it has 2 items, which does not match the 3 dimensions of the data

后来我在另一个类似的程序片段上,对 t 做了时间平均,好像就可以了。

time = ds.time

t = (ds['Albedo_inst']).mean(dim='time')

版权声明:该文观点仅代表作者本人。处理文章:请发送邮件至 三1五14八八95#扣扣.com 举报,一经查实,本站将立刻删除。