如何将复杂数组从python导出到tiff文件以进行IDL

时间:2018-08-24 18:43:36

标签: python save tiff idl-programming-language

我有一个复杂的2D numpy数组,我想将其保存为tiff文件,以将其导入IDL。

什么是最好的方法?

谢谢!

1 个答案:

答案 0 :(得分:0)

可能是您使用软件包pIDLy(https://github.com/anthonyjsmith/pIDLy)从numpy直接保存.sav文件(IDL格式)的原因。

对我来说,它像这样工作:

#starting IDL
idl = pidly.IDL()

#save the file with the save method of idle
idl.pro('save',variable,FILENAME=name_file)

#clossing IDL session
idl.close()