我试图用一个FITS文件。 我有以下代码:
from astropy.io import fits
from astropy.wcs import WCS
hdul = fits.open(fitsfilename)[0]
wcs = WCS(hdul.header)
它给了我这些警告:
警告:VerifyWarning:验证报告的错误:[astropy.io.fits.verify]警告:VerifyWarning:卡 'A_2_0' 不适用于标准(无效的字符串值: '3.29341755408e-05')。 固定“A_2_0”卡,以满足FITS标准。 [astropy.io.fits.verify]警告:VerifyWarning:注:astropy.io.fits使用从零开始的索引。 [astropy.io.fits.verify]警告:VerifyWarning:卡 'A_1_1' 不是FITS标准(无效值字符串: '1.51709339878e-05')。 固定“A_1_1”卡,以满足FITS标准。 [astropy.io.fits.verify]警告:VerifyWarning:卡 'A_0_2' 不是FITS标准(无效值字符串: '5.17973753556e-06')。 固定“A_0_2”卡,以满足FITS标准。 [astropy.io.fits.verify]警告:VerifyWarning:卡 'B_2_0' 不是FITS标准(无效值字符串: '2.97627426087e-06')。 固定“B_2_0”卡,以满足FITS标准。 [astropy.io.fits.verify]警告:VerifyWarning:卡 'B_1_1' 不是FITS标准(无效值字符串: '2.71948126373e-05')。 固定“B_1_1”卡,以满足FITS标准。 [astropy.io.fits.verify]警告:VerifyWarning:卡 'B_0_2' 不是FITS标准(无效值字符串: '1.66848449653e-05')。 固定“B_0_2”卡,以满足FITS标准。 [astropy.io.fits.verify]警告:VerifyWarning:卡 'AP_1_0' 不是FITS标准(无效值字符串: '1.79541533196e-06')。 固定“AP_1_0”卡,以满足FITS标准。 [astropy.io.fits.verify]警告:VerifyWarning:卡 'AP_0_1' 不是FITS标准(无效值字符串: '9.20624843151e-07')。 固定“AP_0_1”卡,以满足FITS标准。 [astropy.io.fits.verify]警告:VerifyWarning:卡 'AP_2_0' 不是FITS标准(无效值字符串: '-3.29292923201e-05')。 固定“AP_2_0”卡,以满足FITS标准。 [astropy.io.fits.verify]警告:VerifyWarning:卡 'AP_1_1' 不是FITS标准(无效值字符串: '-1.51738446887e-05')。 固定“AP_1_1”卡,以满足FITS标准。 [astropy.io.fits.verify]警告:VerifyWarning:卡 'AP_0_2' 不是FITS标准(无效值字符串: '-5.18321445978e-06')。 固定“AP_0_2”卡,以满足FITS标准。 [astropy.io.fits.verify]警告:VerifyWarning:卡 'BP_1_0' 不是FITS标准(无效值字符串: '8.99029048217e-07')。 固定“BP_1_0”卡,以满足FITS标准。 [astropy.io.fits.verify]警告:VerifyWarning:卡 'BP_0_1' 不是FITS标准(无效值字符串: '1.15967736014e-06')。 固定“BP_0_1”卡,以满足FITS标准。 [astropy.io.fits.verify]警告:VerifyWarning:卡 'BP_2_0' 不是FITS标准(无效值字符串: '-2.97837492348e-06')。 固定“BP_2_0”卡,以满足FITS标准。 [astropy.io.fits.verify]警告:VerifyWarning:卡 'BP_1_1' 不是FITS标准(无效值字符串: '-2.71998518336e-05')。 固定“BP_1_1”卡,以满足FITS标准。 [astropy.io.fits.verify]警告:VerifyWarning:卡 'BP_0_2' 不是FITS标准(无效值字符串: '-1.66872388359e-05')。 固定“BP_0_2”卡,以满足FITS标准。 [astropy.io.fits.verify]警告:VerifyWarning:卡 'WCSR_PRJ' 不是FITS标准(无效值字符串: '3.6679e-07')。 固定“WCSR_PRJ”卡,以满足FITS标准。 [astropy.io.fits.verify]警告:VerifyWarning:卡 'WCSR_PIX' 不是FITS标准(无效值字符串: '8.2565e-05')。 固定“WCSR_PIX”卡,以满足FITS标准。 [astropy.io.fits.verify]
这是什么意思的是固定“A_2_0”卡,以满足FITS标准 ? 交该卡A_2_0指的是数据发生了什么事? 我也有兴趣在警告的含义:VerifyWarning:注:astropy.io.fits使用从零开始的索引 。