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

update2412

parent eaf89653
...@@ -8,6 +8,13 @@ This is a Python package for modelling the data of intergral field spectrascopy ...@@ -8,6 +8,13 @@ This is a Python package for modelling the data of intergral field spectrascopy
This code is available at readthedocs: This code is available at readthedocs:
https://csst-ifs-gehong.readthedocs.io/ https://csst-ifs-gehong.readthedocs.io/
# Updates History
### 2024-12
* 优化了输入参数的边界判定
* 调整了代码的格式规范
* 修复了尘埃消光曲线的bug
* pypi同步更新至1.1.3
# Developers # Developers
Shuai Feng (sfeng@hebtu.edu.cn) Shuai Feng (sfeng@hebtu.edu.cn)
...@@ -68,12 +68,8 @@ class Cube3D(): ...@@ -68,12 +68,8 @@ class Cube3D():
def savefits(self, filename, path='./'): def savefits(self, filename, path='./'):
hdr = fits.Header() hdr = fits.Header()
hdr['FILETYPE'] = 'SCICUBE' hdr['FILETYPE'] = 'SCICUBE'
hdr['CODE'] = 'CSST-IFS-GEHONG' hdr['CODE'] = 'csst-ifs-gehong'
hdr['VERSION'] = '0.0.1' hdr['VERSION'] = '1.1.3'
hdr['OBJECT'] = 'NGC1234'
hdr['RA'] = 0.0
hdr['DEC'] = 0.0
hdu0 = fits.PrimaryHDU(header=hdr) hdu0 = fits.PrimaryHDU(header=hdr)
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment