Skip to main content

bandpasses

PyPI - Version PyPI - Python Version

The bandpasses of the instrument involved in the Lemaitre dataset: MeagCam, HSC and ZTF.

  • The MegaCam bandpasses were re-determined from the decommissioned MegaCam filters by M. Betoule and a team from the Laboratoire des matériaux avancés (LMA). These determinations differ slightly from the passband models that were published along with the SNLS and JLA papers. They are all non-radial. They do not (yet?) include per-CCD quantum efficiency determinations.

  • The ZTF bandpasses were re-assembled by P. Rosnet from a series of bench measurements sent by the ZTF team at Caltech. These passbands differ from the models sncosmo (ztfg, ztfr and ztfi), which contains only averaged passbands, which account for (1) the QE difference betweem the single- and double-coated CCDs (2) the passband radial variations due to the coating non-uniformities and to the variations of the incident beam angle w.r.t. the filter surface.

  • The HSC passbands are based on the measurements performed by Kawanomoto et al. These passband models are radial. They do not (yet?) include any per-CCD quantum efficiency determinations.

The passband models are distributed with sncosmo>=2.12, which is able to handle non-radial variations as well as per-CCD quantum efficiencies.

This module contains the raw measurements and the code that was used to prepare the sncosmo release. It also contain code that automatically registers the Lemaitre passbands in sncosmo when the module is imported.

We also use the bbf module for fast computation of broadband fluxes. Within bbf, the passbands are projected on a wavelength and position-dependent spline basis, which is cached as a binary hdf5 file. The bbf module is

Getting started

Installation

Using pixi (recommended)

pixi handles all compiled dependencies including scikit-sparse. First add it from conda-forge, then the package itself:

pixi add "scikit-sparse<0.5"
# Install the lastest release on Pypi
pixi add --pypi lemaitre-bandpasses 
# Or from the latest development version on Gitlab
# (UV_GIT_LFS=1 is required due to a known pixi/uv issue: https://github.com/prefix-dev/pixi/issues/2000)
UV_GIT_LFS=1 pixi add --git https://gitlab.in2p3.fr/lemaitre/bandpasses.git --branch main --pypi lemaitre-bandpasses

To work from a local clone instead:

git clone git@gitlab.in2p3.fr:lemaitre/bandpasses.git
cd bandpasses && pixi install

Using pip

scikit-sparse requires the SuiteSparse C library; install it before running pip:

  • Linux / macOS — conda: conda install "scikit-sparse<0.5"
  • Linux (Debian/Ubuntu) — apt: sudo apt-get install libsuitesparse-dev
  • macOS — Homebrew: brew install suite-sparse

Then:

pip install lemaitre-bandpasses
# or from a local clone:
git clone git@gitlab.in2p3.fr:lemaitre/bandpasses.git && cd bandpasses && pip install -e .

Instantiating bandpasses from sncosmo

import sncosmo

# getting the average ZTF/MegaCam6/HSC bandpasses
for name in ['ztf::g', 'ztf::r', 'ztf::I']:
    band = sncosmo.get_bandpass(name)
for name in ['megacam6::' + b for b in ['g', 'r', 'i2', 'z']]:
    band = sncosmo.get_bandpass(name)
for name in ['hsc::' + b for b in ['g', 'r', 'r2', 'i', 'i2', 'z', 'Y']]:
    band = sncosmo.get_bandpass(name)

# getting, e.g. the ZTF r-passband at a given position
r = sncosmo.get_bandpass('ztf::r', x=724, y=2829, sensor_id=55)

# this function can be vectorized
r = sncosmo.get_bandpass('ztf::r', x=[724., 1802, 222.], y=[42., 58., 2512], sensor_id=[5, 42, 22])

Working with bbf.FilterLibs

from lemaitre import bandpasses

flib = bandpasses.get_filterlib(rebuild=False)

The filterlib contains all the lemaitre passbands, projected on specific (adapted) spline bases. Then it is possible to use it to compute efficiently broadband fluxes.

First, load a stellar library. A stellar library is like a FilterLib: it consists in a collection of spectra, projected on a spline basis:

import bbf.stellarlib.pickles
pickles = bbf.stellarlib.pickles.fetch()

With that in hand, one can compute broadband fluxes on all (average passbands) in the library:

fluxes = bbf.flux(flib, pickles)
from bbf.magsys import SpecMagSys

ms = SpecMagSys('AB')
mags = bbf.mag(flib, pickles, magsys=ms)

# or just
mags = bbf.mag(flib, pickles, 'AB')

We may be in a situation where we have actually one passband instance per measurement. bbf handles that:

nmeas = 10_000

star = np.random.choice(np.arange(len(pickles)), size=nmeas
x = np.random.rand(3000., 3000., nmeas)
y = np.random.rand(3000., 3000., nmeas)
sensor_id = np.random.choice(np.arange(64), size=nmeas)

mags = bbf.mags(flib, pickles, star, x, y, sensor_id, magsys='AB')

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

lemaitre_bandpasses-0.4.3.tar.gz (40.8 MB view details)

Uploaded Source

File details

Details for the file lemaitre_bandpasses-0.4.3.tar.gz.

File metadata

  • Download URL: lemaitre_bandpasses-0.4.3.tar.gz
  • Upload date:
  • Size: 40.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.3

File hashes

Hashes for lemaitre_bandpasses-0.4.3.tar.gz
Algorithm Hash digest
SHA256 2d0d16f7ea87adc327b864180aa0f9064e85b0dbb960611f814ed5085107766e
MD5 79a99de85be0661b139dbfb8b3f57522
BLAKE2b-256 c9652413009570f44e6c43fe5c80167b8cb3b0fcd25050a9139acf15d95823b3

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.4.3 This release

1 file

0.4.2

1 file

0.4.1

1 file

0.4.0

1 file

0.3.3

1 file

0.3.2

1 file

0.3.1

1 file

0.2.0

2 files

0.1

2 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page