Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
A Python package for interfacing the Cosmoglobe Sky Model with commander3 outputs for the purpose of producing astrophysical sky maps.
cosmoglobe is a python package that interfaces the Cosmoglobe Sky Model with Commander outputs for the purpose of producing astrophysical sky maps.
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()
cosmoglobe can be installed via pip
pip install cosmoglobe
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).
FAQs
A Python package for interfacing the Cosmoglobe Sky Model with commander3 outputs for the purpose of producing astrophysical sky maps.
We found that cosmoglobe demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.