diff options
author | Aaron LI <aly@aaronly.me> | 2018-11-15 23:29:57 +0800 |
---|---|---|
committer | Aaron LI <aly@aaronly.me> | 2018-11-15 23:29:57 +0800 |
commit | 4cf13ac35cd9ef74cd9743bc0c6b5bf337b0784e (patch) | |
tree | 53d6774abfb677b7f5308d67b90e54991ccae8c3 | |
parent | 9181265fdaca30db5630ff137ac868f98b427f7f (diff) | |
download | atoolbox-4cf13ac35cd9ef74cd9743bc0c6b5bf337b0784e.tar.bz2 |
Move fits/merge_fits.py to fitstable_merge.py
-rwxr-xr-x | astro/fitstable_merge.py (renamed from astro/fits/merge_fits.py) | 22 |
1 files changed, 2 insertions, 20 deletions
diff --git a/astro/fits/merge_fits.py b/astro/fitstable_merge.py index e014c69..3732d99 100755 --- a/astro/fits/merge_fits.py +++ b/astro/fitstable_merge.py @@ -1,25 +1,7 @@ #!/usr/bin/env python3 -# -*- coding: utf-8 -*- # -# Aaron LI -# 2015/06/16 -# -# Changelogs: -# 0.3.0, 2015/06/17, Aaron LI -# * added argument '-c/--columns' to specify columns to be merged -# * added argument 'columns' to function 'merge2fits()' -# 0.2.0, 2015/06/17, Aaron LI -# * added function 'del_key_startswith()' to delete header keywords, -# and the deletion must be repeated until the header length does not -# decrease any more -# * ignore the header of the second FITS file to avoid keyword conflictions -# -# BUGS: -# * astropy.io.fits may have bug with header keywords deletion -# -# TODO: -# * to support image FITS merge -# * to allow specify column list to be merged +# Copyright (c) 2015 Weitian LI <weitian@aaronly.me> +# MIT license # """ |