- 路径错误
ds = xr.open_dataset('F:\BaiduNetdiskWorkspace\code\testB-HHR-E.MS.MRG.3IMERG.20201201-S000000-E002959.0000.V06B.HDF5.SUB.nc4')
ds
ValueError:did not find a match in any of xarray's currently installed IO backends ['netcdf4', 'scipy']. Consider explicitly selecting one of the installed engines via the ``engine`` parameter, or installing additional IO dependencies, see: https://docs.xarray.dev/en/stable/getting-started-guide/installing.html https://docs.xarray.dev/en/stable/user-guide/io.html
解决办法:
路径前边加r,或者将路径中的 \ 改写为 //
ds = xr.open_dataset(r'F:\BaiduNetdiskWorkspace\code\testB-HHR-E.MS.MRG.3IMERG.20201201-S000000-E002959.0000.V06B.HDF5.SUB.nc4')
ds
pandas
matplotlib
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)