使用 fitsio 重命名 Python 中的 FITS 文件扩展名
Use fitsio to rename a FITS file extension in Python
我正在使用 fitsio 库尝试创建一个新的 fits 文件,从数据帧 df 中插入一个 table,然后更改一个关键字。但是,当我这样做时,我的第一个扩展没有名字。我不知道如何更改扩展名。
现在我正在做以下事情:
import fitsio
example_file = fitsio.FITS('example_test.fits', 'rw')
example_file.write(df.to_records(index=False))
example_file[1].write_key('My Key Name', key_name, comment="seconds")
example_file.close()
example_file.write(df_out.to_records(index=False), extname='My Extension Name')
我正在使用 fitsio 库尝试创建一个新的 fits 文件,从数据帧 df 中插入一个 table,然后更改一个关键字。但是,当我这样做时,我的第一个扩展没有名字。我不知道如何更改扩展名。 现在我正在做以下事情:
import fitsio
example_file = fitsio.FITS('example_test.fits', 'rw')
example_file.write(df.to_records(index=False))
example_file[1].write_key('My Key Name', key_name, comment="seconds")
example_file.close()
example_file.write(df_out.to_records(index=False), extname='My Extension Name')