diff options
author | Aaron LI <aly@aaronly.me> | 2017-11-01 09:41:42 +0800 |
---|---|---|
committer | Aaron LI <aly@aaronly.me> | 2017-11-01 09:41:42 +0800 |
commit | 851c8d7490eb3df860c7048ba3adc89db8d15a87 (patch) | |
tree | d442e248666876cc8393a668df12022627ee90f3 /astro/ps2d.py | |
parent | fcb344b61c0b92e617068956d17e86cae83dd96a (diff) | |
download | atoolbox-851c8d7490eb3df860c7048ba3adc89db8d15a87.tar.bz2 |
astro/ps2d.py: Improve data unit handling
Diffstat (limited to 'astro/ps2d.py')
-rwxr-xr-x | astro/ps2d.py | 24 |
1 files changed, 16 insertions, 8 deletions
diff --git a/astro/ps2d.py b/astro/ps2d.py index 3ae78f6..1ae59ad 100755 --- a/astro/ps2d.py +++ b/astro/ps2d.py @@ -80,13 +80,15 @@ class PS2D: * Cube data unit: [K] (brightness temperature) """ def __init__(self, cube, pixelsize, frequencies, - window_name=None, window_width="extended"): + window_name=None, window_width="extended", unit="???"): logger.info("Initializing PS2D instance ...") self.cube = cube self.pixelsize = pixelsize # [arcsec] + self.unit = unit logger.info("Loaded data cube: %dx%d (cells) * %d (channels)" % (self.Nx, self.Ny, self.Nz)) logger.info("Image pixel size: %.2f [arcsec]" % pixelsize) + logger.info("Data unit: %s" % unit) self.frequencies = np.asarray(frequencies) # [MHz] self.nfreq = len(self.frequencies) @@ -355,7 +357,7 @@ class PS2D: hdr["HDUNAME"] = ("PS2D", "block name") hdr["CONTENT"] = ("2D cylindrically averaged power spectrum", "data product") - hdr["BUNIT"] = ("K^2 Mpc^3", "data unit") + hdr["BUNIT"] = ("%s^2 Mpc^3" % self.unit, "data unit") # Physical coordinates: IRAF LTM/LTV # Li{Image} = LTMi_i * Pi{Physical} + LTVi # Reference: ftp://iraf.noao.edu/iraf/web/projects/fitswcs/specwcs.html @@ -412,15 +414,21 @@ def main(): with fits.open(args.infile[0]) as f: cube = f[0].data header = f[0].header - bunit = header.get("BUNIT", "UNKNOWN") + bunit = header.get("BUNIT", "???") + logger.info("Cube data unit: %s" % bunit) if bunit.upper() not in ["K", "KELVIN", "MK"]: - logger.warning("Wrong data unit: %s" % bunit) - else: - logger.info("Data unit: %s" % bunit) + logger.warning("input cube in unknown unit: %s" % bunit) for fn in args.infile[1:]: logger.info("Adding additional FITS cube: %s" % fn) - cube += fits.open(fn)[0].data + with fits.open(fn) as f: + cube2 = f[0].data + header2 = f[0].header + bunit2 = header2.get("BUNIT", "???") + if bunit2.upper() == bunit.upper(): + cube += cube2 + else: + raise ValueError("cube has different unit: %s" % bunit2) wcs = WCS(header) nfreq = cube.shape[0] @@ -431,7 +439,7 @@ def main(): pixelsize = abs(wcs.wcs.cdelt[0]) * 3600 # [deg] -> [arcsec] ps2d = PS2D(cube=cube, pixelsize=pixelsize, frequencies=frequencies, - window_name=args.window) + window_name=args.window, unit=bunit) ps2d.calc_ps3d() ps2d.calc_ps2d() ps2d.save(outfile=args.outfile, clobber=args.clobber) |