我正在尝试将源自椭圆等光度拟合的等光度列表的 QTable 对象保存到任何文件类型(.txt、.csv 等),让我只需将其加载回脚本而无需清理它或任何一种。
- QTable 创建如下:
example_isolist = ellipse_example.fit_image(sclip=3., nclip=3) #performing elliptical isophote fit and creating the Isophote list
example_isolist_tab = example_isolist.to_table() #converting to QTable
- 我的尝试:
import json
with open("example_isolist_tab.txt", 'w') as f:
json.dump(example_isolist_tab, f, indent=2)
在这里使用 json 不起作用。出现以下错误:
TypeError: Object of type QTable is not JSON serializable
这里的任何人都有过 photutils 数据处理或将 isoophote 保存到文件的经验吗?这真的应该是一件非常简单的事情,只是一种方式,这样我就不必每次想要使用等光度拟合的结果时都重新运行整个脚本。我的整个数据集包含 26 张图像,这意味着大约需要 2.5 小时的计算时间,而不会在两者之间进行保存。
提前致谢!