diff options
author | Aaron LI <aly@aaronly.me> | 2017-08-13 11:17:03 +0800 |
---|---|---|
committer | Aaron LI <aly@aaronly.me> | 2017-08-13 11:17:03 +0800 |
commit | 01ad6e91008d3e564861694289fc400311639b98 (patch) | |
tree | fb19aaf722ef72d5e1a691870f8b6c7414479c61 /fg21sim/sky.py | |
parent | f372ced0663836c4bde13794cafd25cb51111d3c (diff) | |
download | fg21sim-01ad6e91008d3e564861694289fc400311639b98.tar.bz2 |
utils: Merge fits.py into io.py
Functions "{read,write}_fits_healpix()" merged into io.py
Signed-off-by: Aaron LI <aly@aaronly.me>
Diffstat (limited to 'fg21sim/sky.py')
-rw-r--r-- | fg21sim/sky.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/fg21sim/sky.py b/fg21sim/sky.py index 2e5d4a8..eb9f824 100644 --- a/fg21sim/sky.py +++ b/fg21sim/sky.py @@ -20,7 +20,9 @@ from reproject import reproject_interp, reproject_to_healpix import healpy as hp from .utils.wcs import make_wcs -from .utils.fits import read_fits_healpix, write_fits_healpix +from .utils.io import (read_fits_healpix, + write_fits_healpix, + write_fits_image) from .utils.random import spherical_uniform from .utils.units import UnitConversions as AUC |