Commit 8cc303e6 authored by Shuai Feng's avatar Shuai Feng
Browse files

update2412

parent eaf89653
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -8,6 +8,13 @@ This is a Python package for modelling the data of intergral field spectrascopy
This code is available at readthedocs:
https://csst-ifs-gehong.readthedocs.io/

# Updates History
### 2024-12
* 优化了输入参数的边界判定
* 调整了代码的格式规范
* 修复了尘埃消光曲线的bug
* pypi同步更新至1.1.3


# Developers
Shuai Feng (sfeng@hebtu.edu.cn)
+2 −6
Original line number Diff line number Diff line
@@ -68,12 +68,8 @@ class Cube3D():
    def savefits(self, filename, path='./'):
        hdr = fits.Header()
        hdr['FILETYPE'] = 'SCICUBE'
        hdr['CODE'] = 'CSST-IFS-GEHONG'
        hdr['VERSION'] = '0.0.1'

        hdr['OBJECT'] = 'NGC1234'
        hdr['RA'] = 0.0
        hdr['DEC'] = 0.0
        hdr['CODE'] = 'csst-ifs-gehong'
        hdr['VERSION'] = '1.1.3'

        hdu0 = fits.PrimaryHDU(header=hdr)