有没有一种方法可以选择所有时间步来打开xarray数据集?

时间:2019-12-11 10:18:58

标签: dask python-xarray

只是开始使用dask数组来优化时间处理。

我想以1 lat x 1长和所有时间的步长打开的块打开多个netcdf文件:

我使用以下代码打开文件:

da_dask = xr.open_mfdataset('*.nc', combine='by_coords', chunks={ 'time': -1, 'longitude': 1, 'latitude':1})

但是我退回的单个卡盘尺寸不大于52608。我的块形状为(52608,1,1)

enter image description here

我想返回(350640,1,1)的大块形状。

有办法吗?

0 个答案:

没有答案