我正在尝试使用 s3fsxr.open_mfdataset
从 S3 存储桶一次读取多个 netcdf 文件。这可能吗?
尝试了以下,它适用于xr.open_dataset
单个文件,但不适用于多个文件:
import s3fs
import xarray as xr
fs = s3fs.S3FileSystem(anon=False)
s3path = 's3://my-bucket/wind_data*'
store = s3fs.S3Map(root=s3path, s3=s3fs.S3FileSystem(), check=False)
data = xr.open_mfdataset(store, combine='by_coords')