学习python那些年的踩坑记录

学习python那些年的踩坑记录,第1张

xarray
  1. 路径错误
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

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/724278.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-04-26
下一篇 2022-04-26

发表评论

登录后才能评论

评论列表(0条)

保存