A Python package for interfacing the Cosmoglobe Sky Model with commander3 outputs for the purpose of producing astrophysical sky maps.
Project description
cosmoglobe is a python package that interfaces the Cosmoglobe Sky Model with Commander outputs for the purpose of producing astrophysical sky maps.
Features
See the documentation for a more comprehensive guide.
Initialize the Cosmoglobe Sky Model (this downloads and caches a ~800 MB file with the sky model data)
import cosmoglobe
model = cosmoglobe.sky_model(nside=256)
Simulate the sky at 150 GHz in units of MJy/sr, smoothed to 40 arcmin with a gaussian beam:
import astropy.units as u
emission = model(150*u.GHz, fwhm=40*u.arcmin, output_unit="MJy/sr")
Integrate over a bandpass:
import numpy as np
import healpy as hp
import matplotlib.pyplot as plt
# Reading in WMAP K-band bandpass profile.
bandpass_frequencies, bandpass_weights = np.loadtxt(wmap_bandpass.txt, unpack=True)
# The units of the detector must be specified even if the bandpass is pre-normalized.
bandpass_weights *= u.Unit("K_RJ") # Specify K_RJ or K_CMB
bandpass_frequencies *= u.GHz
model.remove_dipole() # Remove the dipole from the CMB component
emission = model(
freqs=bandpass_frequencies,
weights=bandpass_weights,
fwhm=0.8*u.deg,
output_unit="mK_RJ",
)
hp.mollview(emission[0], hist="norm") # Plotting the intensity
plt.show()
Installation
cosmoglobe can be installed via pip
pip install cosmoglobe
Funding
This work has received funding from the European Union's Horizon 2020 research and innovation programme under grant agreements No 776282 (COMPET-4; BeyondPlanck), 772253 (ERC; bits2cosmology) and 819478 (ERC; Cosmoglobe).
License
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file cosmoglobe-0.9.85.tar.gz
.
File metadata
- Download URL: cosmoglobe-0.9.85.tar.gz
- Upload date:
- Size: 18.5 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.10.4 Darwin/23.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bf003cc650b9a2f08b09b300c49f87110cc89474fea2798b959f83266c7f4e3f |
|
MD5 | 99c2031b31d19d86fdf57759af8b74bf |
|
BLAKE2b-256 | 0e5b7fb63566200945d3220dee4d4550c689733cd8c479b24e098e2684a237e4 |
File details
Details for the file cosmoglobe-0.9.85-py3-none-any.whl
.
File metadata
- Download URL: cosmoglobe-0.9.85-py3-none-any.whl
- Upload date:
- Size: 18.6 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.10.4 Darwin/23.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c467009c3c3dac79e785b2e166267696838f9dc771de142df14177d1f9e2875b |
|
MD5 | 41f047466fbbf852dcd94b49f86c8186 |
|
BLAKE2b-256 | 7e2168ab740793a0396244060db45dc2e1802352200a79a9186e06b1263454ba |