0

I'm basically trying to plot some images based on a given set of parameters of a .fits file. However, this made me curious: what IS a .fits array? When I type in img[2400,3456] or some random values in the array, I get some output.

I guess my question is more conceptual than code-based, but, it boils down to this: what IS a .fits file, and what do the arrays and the outputs represent?

4

1 回答 1

1

FITS 文件由标头数据单元组成。标题数据单元包含一个 ASCII 类型的标题,其中包含关键字值注释三元组以及二进制 FITS 表或(超维)图像立方体。二进制 FITS 表的表中的每个条目本身可能包含超维图像立方体。数组是通过任何这些立方体的某些维度进行的切片。现在,作为存储在第一个(又名主要)标题数据单元中的图像的快捷方式,许多查看器允许在方括号中指示这些图像中的一些窗口索引(在最常见的情况下基于 cfitsio 库的等效支持)。

于 2013-11-11T22:45:37.833 回答