Source code for dustmaps.planck

#!/usr/bin/env python
#
# planck.py
# Reads the Planck Collaboration dust reddening map.
#
# Copyright (C) 2016  Gregory M. Green
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#

from __future__ import print_function, division

import os
import numpy as np
import healpy as hp
import astropy.io.fits as fits
import astropy.units as units

from .std_paths import *
from .healpix_map import HEALPixFITSQuery
from . import fetch_utils
from . import dustexceptions


[docs]class PlanckQuery(HEALPixFITSQuery): """ Queries the Planck Collaboration (2013) dust map. """
[docs] def __init__(self, map_fname=None, component='extragalactic'): """ Args: map_fname (Optional[str]): Filename of the Planck map. Defaults to ```None``, meaning that the default location is used. component (Optional[str]): Which measure of reddening to use. There are seven valid components. Three denote reddening measures: 'extragalactic', 'tau' and 'radiance'. Four refer to dust properties: 'temperature', 'beta', 'err_temp' and 'err_beta'. Defaults to 'extragalactic'. """ if map_fname is None: map_fname = os.path.join( data_dir(), 'planck', 'HFI_CompMap_ThermalDustModel_2048_R1.20.fits') if component.lower() in ('ebv', 'extragalactic'): field = 'EBV' self._scale = 1. elif component.lower() in ('tau', 'tau353', 'tau_353', 'optical depth'): field = 'TAU353' self._scale = 1.49e4 elif component.lower() in ('radiance', 'r'): field = 'RADIANCE' self._scale = 5.4e5 elif component.lower() in ('temperature', 'temp', 't'): field = 'TEMP' self._scale = units.Kelvin elif component.lower() in ('sigma_temp', 'sigma_t', 'err_temp', 'err_t'): field = 'ERR_TEMP' self._scale = units.Kelvin elif component.lower() in ('beta', 'b'): field = 'BETA' self._scale = 1. elif component.lower() in ('sigma_beta', 'sigma_b', 'err_beta', 'err_b'): field = 'ERR_BETA' self._scale = 1. else: raise ValueError(( "Invalid `component`: '{}'\n" "Valid components for reddening are 'extragalactic', 'tau', " "and 'radiance'. Valid components for dust properties are " "'temperature', 'err_temp', 'beta' and 'err_beta'." ).format(component)) try: with fits.open(map_fname) as hdulist: super(PlanckQuery, self).__init__( hdulist, 'galactic', hdu='COMP-MAP', field=field) except IOError as error: print(dustexceptions.data_missing_message('planck', 'Planck Collaboration')) raise error
[docs] def query(self, coords, **kwargs): """ Returns E(B-V) (or a different Planck dust inference, depending on how the class was intialized) at the specified location(s) on the sky. Args: coords (``astropy.coordinates.SkyCoord``): The coordinates to query. Returns: A float array of the selected Planck component, at the given coordinates. The shape of the output is the same as the shape of the coordinates stored by ``coords``. If extragalactic E(B-V), tau_353 or radiance was chosen, then the output has units of magnitudes of E(B-V). If the selected Planck component is temperature (or temperature error), then an ``astropy.Quantity`` is returned, with units of Kelvin. If beta (or beta error) was chosen, then the output is unitless. """ return self._scale * super(PlanckQuery, self).query(coords, **kwargs)
[docs]def fetch(): """ Downloads the Planck Collaboration (2013) dust map, placing it in the default ``dustmaps`` data directory. """ url = 'http://pla.esac.esa.int/pla/aio/product-action?MAP.MAP_ID=HFI_CompMap_ThermalDustModel_2048_R1.20.fits' md5 = '8d804f4e64e709f476a63f0dfed1fd11' fname = os.path.join( data_dir(), 'planck', 'HFI_CompMap_ThermalDustModel_2048_R1.20.fits') fetch_utils.download_and_verify(url, md5, fname=fname)
def main(): from astropy.coordinates import SkyCoord q = PlanckQuery() c = SkyCoord([0., 180., 0.], [0., 0., 90.], frame='galactic', unit='deg') print(q(c)) if __name__ == '__main__': main()