0

我正在尝试下载一个 hdf 文件并读取它 python 如下

from pyhdf import SD

file = open("temp.hdf", 'w')
ftp.retrbinary('RETR '+ filename, file.write)
file.close()

hdf=SD.SD('temp.hdf')

它可以工作,但在我收到以下错误后不久:

Traceback (most recent call last):

  File "<ipython-input-46-55805a9d569b>", line 6, in <module>
    hdf=SD.SD('temp.hdf')

  File "/usr/local/lib/python2.7/dist-packages/pyhdf/SD.py", line 1444, in __init__
    _checkErr('SD', id, "cannot open %s" % path)

  File "/usr/local/lib/python2.7/dist-packages/pyhdf/error.py", line 23, in _checkErr
    raise HDF4Error(err)

HDF4Error: SD (59): HDF Internal error
4

1 回答 1

3

您需要以二进制模式打开输出文件:

file = open("temp.hdf", 'wb') # was 'w'

更好的是使用with自动关闭文件:

with open("temp.hdf", 'wb') as out:
    ftp.retrbinary('RETR '+ filename, out.write)
于 2018-02-14T13:52:47.337 回答