You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tutorials/euclid_access/euclid.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,9 @@ Data products include MERged mosaics of calibrated and stacked frames; combined
24
24
-[PHZ Catalogs](4_Euclid_intro_PHZ_catalog.md) — Join the PHZ and MER catalogs and do a box search for galaxies with quality redshifts, load a MER mosaic cutout of the box, and plot the cutout with the catalog results overlaid.
25
25
Then plot the SIR spectrum of the brightest galaxy and look at a MER mosaic cutout of the galaxy in Firefly.
26
26
-[SPE Catalogs](5_Euclid_intro_SPE_catalog.md) — Join the SPE and MER catalogs and query for galaxies with H-alpha line detections, then plot the SIR spectrum of a galaxy with a high SNR H-alpha line measurement.
27
-
-[Merged Objects HATS Catalog](../parquet-catalog-demos/euclid-q1-hats/1-euclid-q1-hats-intro.md) — Understand the content and format of the Euclid Q1 Merged Objects HATS Catalog, then perform a basic query.
27
+
-**Merged Objects HATS Catalog** — This product was created by IRSA and contains the Euclid MER, PHZ, and SPE catalogs in a single [HATS](https://hats.readthedocs.io/en/latest/) catalog.
28
+
-[Introduction](../parquet-catalog-demos/euclid-q1-hats/1-euclid-q1-hats-intro.md) — Understand the content and format of the Euclid Q1 Merged Objects HATS Catalog, then perform a basic query.
29
+
-[Magnitudes](../parquet-catalog-demos/euclid-q1-hats/4-euclid-q1-hats-magnitudes.md) — Review the types of flux measurements available, load template-fit and aperture magnitudes, and plot distributions and comparisons for different object types.
Euclid Q1 offers many flux measurements, both from Euclid detections and from external ground-based surveys.
312
314
They are given in microjanskys, so all flux columns can be found by searching the metadata for this unit.
313
315
314
-
```{code-cell}python3
316
+
```{code-cell}ipython3
315
317
# Find all flux columns.
316
318
flux_columns = [field.name for field in schema if field.metadata[b"unit"] == b"uJy"]
317
319
@@ -321,7 +323,7 @@ flux_columns[:4]
321
323
322
324
Columns associated with external surveys are identified by the inclusion of "ext" in the name.
323
325
324
-
```{code-cell}python3
326
+
```{code-cell}ipython3
325
327
external_flux_columns = [name for name in flux_columns if "ext" in name]
326
328
print(f"{len(external_flux_columns)} flux columns from external surveys. First four are:")
327
329
external_flux_columns[:4]
@@ -332,14 +334,14 @@ external_flux_columns[:4]
332
334
+++
333
335
334
336
Euclid Q1 includes data from three Euclid Deep Fields: EDF-N (North), EDF-S (South), EDF-F (Fornax; also in the southern hemisphere).
335
-
There is also a small amount of data from a fourth field: LDN1641 (Lynds' Dark Nebula 1641), which was observed for technical reasons during Euclid's verification phase and mostly ignored here.
337
+
There is also a small amount of data from a fourth field: LDN1641 (Lynds' Dark Nebula 1641), which was observed for technical reasons during Euclid's verification phase.
336
338
The fields are described in [Euclid Collaboration: Aussel et al., 2025](https://arxiv.org/pdf/2503.15302) and can be seen on this [skymap](https://irsa.ipac.caltech.edu/data/download/parquet/euclid/q1/merged_objects/hats/euclid_q1_merged_objects-hats/skymap.png).
337
339
338
340
The regions are well separated, so we can distinguish them using a simple cone search without having to be too picky about the radius.
339
341
We can load data more efficiently using the HEALPix order 9 pixels that cover each area rather than using RA and Dec values directly.
To demonstrate a basic query, we'll search for objects with a galaxy photometric redshift estimate of 6.0 (largest possible).
363
-
Other tutorials in this series will show more complex queries and describe the redshifts and other data in more detail.
365
+
Other tutorials in this series will show more complex queries, and describe the redshifts and other data in more detail.
366
+
PyArrow dataset filters are described at [Filtering by Expressions](https://arrow.apache.org/docs/python/compute.html#filtering-by-expressions), and the list of available functions is at [Compute Functions](https://arrow.apache.org/docs/python/api/compute.html).
**Authors:** Troy Raen, Vandana Desai, Andreas Faisst, Shoubaneh Hemmati, Jaladh Singhal, Brigitta Sipőcz, Jessica Krick, the IRSA Data Science Team, and the Euclid NASA Science Center at IPAC (ENSCI).
0 commit comments