有没有人知道如何在APLpy中将坐标值更改为适合文件图像的像素值?
答案 0 :(得分:0)
我能想到的唯一方法就是传入数据数组而不是匹配文件。如果它没有WCS信息,它必须在像素空间中运行。
from astropy.io import fits # or import pyfits
with fits.open(filename) as hdus:
data = hdus[0].data
f1 = aplpy.FITSFigure(data)
# ... whatever you want to do thereafter.
我还没有使用过APLpy可能有更好的方法,但我在文档中找不到任何内容。