Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions docs/api/surveys.euclid.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
frb.surveys.euclid
==================

.. automodule:: frb.surveys.euclid
:members:
:undoc-members:
:show-inheritance:
1 change: 1 addition & 0 deletions docs/api/surveys.rst
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ Submodules
surveys.galex
surveys.desi
surveys.delve
surveys.euclid
surveys.nedlvs
surveys.nsc
surveys.psrcat
Expand Down
10 changes: 10 additions & 0 deletions docs/surveys.rst
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,16 @@ The DECaL survey imaged the majority of the Northern,
extragalactic sky in the g,r, and z bands for the
DESI survey.

Euclid
++++++

The ESA Euclid mission provides deep imaging of the Universe
to study dark energy and dark matter through weak gravitational lensing
and galaxy clustering. The Q1 (March 2025) public data release includes
VIS-band and NISP near-infrared (J, H, Y) photometry, morphological parameters,
and optional spectroscopy (NISP red). Coverage includes three deep fields (EDF North, EDF Fornax, EDF South).
Data is queried from the mer_catalogue table providing multi-band photometry and source morphology.

Pan-STARRS
++++++++++

Expand Down
5 changes: 5 additions & 0 deletions frb/galaxies/defs.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,11 @@
for band in DECaL_bands:
valid_filters.append('DECaL_{:s}'.format(band))

# Euclid
Euclid_bands = ['VIS', 'J', 'H', 'Y']
for band in Euclid_bands:
valid_filters.append('Euclid_{:s}'.format(band))

# SOAR Goodman
SOAR_bands = ['U','g','r','i','z','bessell_B','bessell_V','bessell_R',
'cousins_R','stromgren_v','stromgren_b','stromgren_y']
Expand Down
Loading
Loading