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
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