From 4146bd76834abe2055a50b215a34cf98747f5d37 Mon Sep 17 00:00:00 2001 From: Aaron LI Date: Sun, 13 Aug 2017 12:30:52 +0800 Subject: utils/io.py: Default float32=False to preserve the data type Signed-off-by: Aaron LI --- fg21sim/utils/io.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'fg21sim/utils') diff --git a/fg21sim/utils/io.py b/fg21sim/utils/io.py index cd98ff7..a1a5000 100644 --- a/fg21sim/utils/io.py +++ b/fg21sim/utils/io.py @@ -176,7 +176,7 @@ def pickle_load(infile): return pickle.load(open(infile, "rb")) -def write_fits_image(outfile, image, header=None, float32=True, +def write_fits_image(outfile, image, header=None, float32=False, clobber=False, checksum=False): """ Write the supplied image (together with header information) into @@ -194,7 +194,7 @@ def write_fits_image(outfile, image, header=None, float32=True, float32 : bool, optional Whether coerce the image data (generally double/float64 data type) into single/float32 (in order to save space)? - Default: True + Default: False (i.e., preserve the data type unchanged) clobber : bool, optional Whether to overwrite the existing output file. Default: False @@ -255,7 +255,7 @@ def read_fits_healpix(filename): return (data.astype(dtype), header) -def write_fits_healpix(outfile, hpmap, header=None, float32=True, +def write_fits_healpix(outfile, hpmap, header=None, float32=False, clobber=False, checksum=False): """ Write the HEALPix map to a FITS file with proper header as well @@ -283,7 +283,7 @@ def write_fits_healpix(outfile, hpmap, header=None, float32=True, float32 : bool, optional Whether coerce the image data (generally double/float64 data type) into single/float32 (in order to save space)? - Default: True + Default: False (i.e., preserve the data type unchanged) clobber : bool, optional Whether to overwrite the existing output file? Default: False -- cgit v1.2.2