Python 2.7:使用ftplib检索netCDF4文件

问题描述 投票:0回答:1

这是我的问题:我从FTP服务器下载一些netCDF4文件,有两种不同的方式:通过FileZilla和使用ftplib的Python 2.7脚本。

Python脚本代码(在Windows上运行):

# download the file
try:
    ftp = FTP(server_address)
    ftp.login(server_login, server_pass)
    filepath = 'the_remote_rep/myNetCDF4File.nc'
    filename = 'myNetCDF4File.nc'
    local_dir = 'toto'
    new_file = open('%s/%s' % (local_dir, filename), "w")
    ftp.retrbinary('RETR %s' % filepath, new_file.write)
    ftp.close()
    new_file.close()
except Exception as e:
    print("Error FTP : '" + str(e) + "'")

# update title into the file
try:
    fname = 'toto/myNetCDF4File.nc'
    dataset = netCDF4.Dataset(fname, mode='a')
    setattr(dataset, 'title', 'In Situ Observation Re-Analysis')
    dataset.close()
except Exception as e:
    print("Error netCDF4 : '" + str(e) + "'")

然后,我得到这个消息:

错误netCDF4:'[Errno 22]无效参数:'toto / myNetCDF4File.nc''

当我尝试使用通过FileZilla(例如同一文件)下载的netCDF4文件的第二个代码块时,没有错误。此外,当我尝试使用“ncdump -k”获取文件的netCDF版本时,这里是响应(与其他文件一起正常):

ncdump:myNetCDF4File.nc:参数无效

此外,文件的大小不同,具体取决于方法:

  • FileZilla:22 972 No.
  • Python ftplib:23 005 Ko

编写检索到的文件时,ftplib是一个问题吗?或者我错过了一些参数来正确编码文件?

提前致谢。

编辑:来自FileZilla的详细消息:

...
Response:   230 Login successful.
Trace:  CFtpLogonOpData::ParseResponse() in state 5
Trace:  CControlSocket::SendNextCommand()
Trace:  CFtpLogonOpData::Send() in state 9
Command:    OPTS UTF8 ON
Trace:  CFtpControlSocket::OnReceive()
Response:   200 Always in UTF8 mode.
Trace:  CFtpLogonOpData::ParseResponse() in state 9
Status: Logged in
Trace:  Measured latency of 114 ms
Trace:  CFtpControlSocket::ResetOperation(0)
Trace:  CControlSocket::ResetOperation(0)
Trace:  CFtpLogonOpData::Reset(0) in state 14
Trace:  CFtpControlSocket::FileTransfer()
Trace:  CControlSocket::SendNextCommand()
Trace:  CFtpFileTransferOpData::Send() in state 0
Status: Starting download of /INSITU_OBSERVATIONS/myNetCDF4File.nc
Trace:  CFtpChangeDirOpData::Send() in state 0
Trace:  CFtpControlSocket::ResetOperation(0)
Trace:  CControlSocket::ResetOperation(0)
Trace:  CFtpChangeDirOpData::Reset(0) in state 0
Trace:  CFtpFileTransferOpData::SubcommandResult(0) in state 1
Trace:  CControlSocket::SendNextCommand()
Trace:  CFtpFileTransferOpData::Send() in state 5
Trace:  CFtpRawTransferOpData::Send() in state 2
Command:    PASV
Trace:  CFtpControlSocket::OnReceive()
Response:   227 Entering Passive Mode (193,68,190,45,179,16).
Trace:  CFtpRawTransferOpData::ParseResponse() in state 2
Trace:  CControlSocket::SendNextCommand()
Trace:  CFtpRawTransferOpData::Send() in state 4
Trace:  Binding data connection source IP to control connection source IP 134.xx.xx.xx
Command:    RETR myNetCDF4File.nc
Trace:  CTransferSocket::OnConnect
Trace:  CFtpControlSocket::OnReceive()
Response:   150 Opening BINARY mode data connection for myNetCDF4File.nc (9411620 bytes).
Trace:  CFtpRawTransferOpData::ParseResponse() in state 4
Trace:  CControlSocket::SendNextCommand()
Trace:  CFtpRawTransferOpData::Send() in state 5
Trace:  CTransferSocket::TransferEnd(1)
Trace:  CFtpControlSocket::TransferEnd()
Trace:  CFtpControlSocket::OnReceive()
Response:   226 Transfer complete.
Trace:  CFtpRawTransferOpData::ParseResponse() in state 7
Trace:  CFtpControlSocket::ResetOperation(0)
Trace:  CControlSocket::ResetOperation(0)
Trace:  CFtpRawTransferOpData::Reset(0) in state 7
Trace:  CFtpFileTransferOpData::SubcommandResult(0) in state 7
Trace:  CFtpControlSocket::ResetOperation(0)
Trace:  CControlSocket::ResetOperation(0)
Trace:  CFtpFileTransferOpData::Reset(0) in state 7
Status: File transfer successful, transferred 9 411 620 bytes in 89 seconds
Status: Disconnected from server
Trace:  CFtpControlSocket::ResetOperation(66)
Trace:  CControlSocket::ResetOperation(66)
python-2.7 ftp netcdf ftplib netcdf4
1个回答
0
投票

实际上,这是二进制配置的问题(感谢您的问题)。

我在使用ftplib检索文件之前添加了ftp.voidcmd('TYPE I'),然后我将本地文件的编写参数修改为new_file = open('%s/%s' % (local_ftp_path, filename), "wb")以指定它是二进制文件。

现在,文件在通过ftplib下载后可读,并且与从FileZilla下载的文件大小相同。

感谢您的贡献。

© www.soinside.com 2019 - 2024. All rights reserved.