diff options
author | Aaron LI <aly@aaronly.me> | 2017-08-26 20:34:13 +0800 |
---|---|---|
committer | Aaron LI <aly@aaronly.me> | 2017-08-26 20:34:13 +0800 |
commit | 20b428146982bd762390c17f83e5e46e955d8859 (patch) | |
tree | f9826bf880b0bf7890328e1d9536100d5dfff8d2 /bin/get-healpix-patch | |
parent | 9f713b6b099a960488ce1b6aed6ef76be43471b5 (diff) | |
download | fg21sim-20b428146982bd762390c17f83e5e46e955d8859.tar.bz2 |
sky.py: Replace @header.setter with method "merge_header()"
* Avoid the duplicate "@header.setter" in the inherited classes
* Update get-healpix-patch
Diffstat (limited to 'bin/get-healpix-patch')
-rwxr-xr-x | bin/get-healpix-patch | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/get-healpix-patch b/bin/get-healpix-patch index 2fa21c6..9d82ffd 100755 --- a/bin/get-healpix-patch +++ b/bin/get-healpix-patch @@ -101,7 +101,7 @@ def main(): image = scipy.ndimage.gaussian_filter(image, sigma=sigma) logger.info("Smoothed sky patch using Gaussian filter of " + "sigma = %.2f [pixel]" % sigma) - sky.header = hpheader.copy(strip=True) + sky.merge_header(hpheader.copy(strip=True)) sky.add_history(" ".join(sys.argv)) sky.data = image sky.write(args.outfile, clobber=args.clobber) |