diff options
author | Aaron LI <aaronly.me@outlook.com> | 2017-05-22 15:14:05 +0800 |
---|---|---|
committer | Aaron LI <aaronly.me@outlook.com> | 2017-05-22 15:14:59 +0800 |
commit | a3d31bfaac0136d40975f48705cf60d85b47ea7d (patch) | |
tree | 4413a0b115504ffe6f016c43e987bb160617787d /fg21sim/sky.py | |
parent | 42a173830b9f47868e7b08f0c7474699ecbe05b6 (diff) | |
download | fg21sim-a3d31bfaac0136d40975f48705cf60d85b47ea7d.tar.bz2 |
sky/SkyPatch: Add wcs and region coverage check
NOTE: only TAN sky projection supported.
Diffstat (limited to 'fg21sim/sky.py')
-rw-r--r-- | fg21sim/sky.py | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/fg21sim/sky.py b/fg21sim/sky.py index 9b12092..dbf445e 100644 --- a/fg21sim/sky.py +++ b/fg21sim/sky.py @@ -10,9 +10,13 @@ import os import logging import copy +import numpy as np from scipy import ndimage from astropy.io import fits import astropy.units as au +from astropy.wcs import WCS +from astropy.coordinates import SkyCoord +from regions import PixCoord, RectanglePixelRegion import healpy as hp from .utils.fits import read_fits_healpix, write_fits_healpix @@ -25,6 +29,10 @@ class SkyPatch: """ Support reading & writing FITS file of sky patches. + NOTE/XXX + -------- + Only `TAN` (tangential) sky projection supported! + Parameters ---------- size : (xsize, ysize) tuple @@ -149,10 +157,58 @@ class SkyPatch: os.makedirs(outdir) logger.info("Created output directory: %s" % outdir) image = self.data.reshape(self.ysize, self.xsize) + header = self.wcs.to_header() + header.extend(self.header, update=True) hdu = fits.PrimaryHDU(data=image, header=self.header) hdu.writeto(outfile, clobber=clobber, checksum=checksum) logger.info("Write sky map to file: %s" % outfile) + @property + def wcs(self): + """ + The WCS header with sky projection information, for sky <-> + pixel coordinate(s) conversion. + + NOTE/XXX + -------- + Currently only support the `TAN` (tangential) projection. + """ + w = WCS(naxis=2) + w.wcs.ctype = ["RA---TAN", "DEC--TAN"] + w.wcs.crval = np.array([self.xcenter, self.ycenter]) + w.wcs.crpix = np.array([self.xsize/2.0-0.5, self.ysize/2.0-0.5]) + w.wcs.cdelt = np.array([-self.pixelsize/60.0, self.pixelsize/60.0]) + w.wcs.cunit = ["deg", "deg"] + w.wcs.equinox = 2000.0 + return w + + def contains(self, skycoord): + """ + Check whether the given (list of) sky coordinate(s) falls + inside this sky patch (region). + + Parameters + ---------- + skycoord : `~astropy.coordinate.SkyCoord` or (lon, lat) tuple + The (list of) sky coordinate(s) to check, or the (list of) + longitudes and latitudes of sky coordinates [ deg ] + + Returns + ------- + inside : bool + (list of) boolean values indicating whether the given + sky coordinate(s) is inside this sky patch. + """ + if not isinstance(skycoord, SkyCoord): + lon, lat = skycoord + skycoord = SkyCoord(lon, lat, unit=au.deg) + wcs = self.wcs + pixcoord = PixCoord.from_sky(skycoord, wcs=wcs) + center = PixCoord(x=self.xcenter, y=self.ycenter) + region = RectanglePixelRegion(center=center, + width=self.xsize, height=self.ysize) + return region.contains(pixcoord) + class SkyHealpix: """ |