Source code for hide.astro.static_gsm

# HIDE 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 3 of the License, or
# (at your option) any later version.
# 
# HIDE 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 HIDE.  If not, see <http://www.gnu.org/licenses/>.


'''
Created on Jan 7, 2015

author: jakeret
'''
from __future__ import print_function, division, absolute_import, unicode_literals

import healpy as hp 
from pkg_resources import resource_filename
import hide

FILE_PATH = "data/gsm_map.fits"

GSM_NSIDE = 2**9

[docs]def load_signal(ctx): """ Returns the same global sky model (GSM) map independent of the frequency. Rescales the map if neccessary (if param.beam_nside != 512) :param params: The ctx instance with the paramterization :returns signal: The astro signal """ path = resource_filename(hide.__name__, FILE_PATH) gsm_map = hp.read_map(path, verbose=False) if ctx.params.beam_nside != GSM_NSIDE: gsm_map = hp.ud_grade(gsm_map, nside_out=ctx.params.beam_nside) return gsm_map