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
@@ -26,7 +26,6 @@ By the end of this tutorial, you will:
26
26
- Pull and plot a spectrum of one of the galaxies in that catalog.
27
27
- Learn how to upload images and catalogs to Firefly to inspect individual sources in greater detail.
28
28
29
-
30
29
+++
31
30
32
31
## Introduction
@@ -41,10 +40,6 @@ The photometry of every source is processed through a photometric redshift fitti
41
40
42
41
+++
43
42
44
-
### NOTE to testers -- please log in to IPAC vpn to access the IRSAdev data. After the Q1 data release, we will not need to use the IPAC VPN or the irsadev site.
45
-
46
-
+++
47
-
48
43
## Imports
49
44
50
45
```{code-cell} ipython3
@@ -79,16 +74,14 @@ import pyvo as vo
79
74
80
75
## 1. Find the MER Tile ID that corresponds to a given RA and Dec
81
76
82
-
In this case, choose random coordinates to show a different MER mosaic image. Search a radius around these coordinates.
77
+
In this case, choose random coordinates to show a different MER mosaic image. Search a radius around these coordinates.
This table lists all MER mosaic images available in this position. These mosaics include the Euclid VIS, Y, J, H images, as well as ground-based telescopes which have been put on the same pixel scale. For more information, see the [Euclid documentation at IPAC](https://euclid.caltech.edu/page/euclid-faq-tech/).
106
99
```
107
100
108
101
```{code-cell} ipython3
109
-
## Change the settings so we can see all the columns in the dataframe and the full column width
110
-
## (to see the full long URL)
111
-
pd.set_option('display.max_columns', None)
112
-
pd.set_option('display.max_colwidth', None)
102
+
# Convert the table to pandas dataframe
103
+
df_im_irsa=image_table.to_pandas()
113
104
```
114
105
115
-
#### This table lists all MER mosaic images available in this position. These mosaics include the Euclid VIS, Y, J, H images, as well as ground-based telescopes which have been put on the same pixel scale. For more information, see here: https://euclid.caltech.edu/page/euclid-faq-tech/
@@ -176,17 +165,7 @@ We note that the phz_catalog on IRSA has more columns than it does on the ESA ar
176
165
177
166
The fluxes are different from the fluxes derived in the MER catalog. The _unif fluxes are: "Unified flux recomputed after correction from galactic extinction and filter shifts"
178
167
179
-
```{code-cell} ipython3
180
-
## Change the settings so we can see all the columns in the dataframe and the full column width
181
-
## (to see the full long URL)
182
-
pd.set_option('display.max_columns', None)
183
-
pd.set_option('display.max_colwidth', None)
184
-
185
-
186
-
## Can use the following lines to reset the max columns and column width of pandas
187
-
# pd.reset_option('display.max_columns')
188
-
# pd.reset_option('display.max_colwidth')
189
-
```
168
+
+++
190
169
191
170
## Find some galaxies between 1.4 and 1.6 at a selected RA and Dec
192
171
@@ -197,9 +176,7 @@ We specify the following conditions on our search:
197
176
- Using the phz_90_int1 and phz_90_int2, we select just the galaxies where the error on the photometric redshift is less than 15%
198
177
- Select just the galaxies between a median redshift of 1.4 and 1.6
### Optional -- Access the data from the ESA archive website directly
493
-
494
-
+++
495
-
496
-
#### 1. Download and read in data from the ESA archive
497
-
498
-
- Go to https://easidr.esac.esa.int/sas/ and sign in with your credentials.
499
-
- Click Search and go to the ADQL form and enter a query which matches the query above.
500
-
501
-
+++
502
-
503
-
Download the results, gunzip in the command line. You should now have a VOT table
504
-
505
-
NOTE: Need to do the following in the command line:
506
-
507
-
mv original_cat.vot.gz to mer_cat.vot
508
-
509
-
to remove the .gz extension
510
-
511
-
+++
512
-
513
-
## Additional Resources
514
-
515
-
If you have any issues accessing data from the archives, please contact the helpdesk directly: IRSA ([email protected]) and ESA (https://support.cosmos.esa.int/euclid).
516
-
517
-
+++
518
-
519
449
## About this Notebook
520
450
521
-
**Author(s)**: Tiffany Meshkat <br>
522
-
**Keyword(s)**: Euclid, Q1, phz catalog <br>
523
-
**First published**: March 19, 2025 <br>
524
-
**Last updated**: March 19, 2025
451
+
**Author**: Tiffany Meshkat (IPAC Scientist)
525
452
526
-
+++
527
-
528
-
529
-
530
-
```{code-cell} ipython3
531
-
532
-
```
533
-
534
-
```{code-cell} ipython3
453
+
**Updated**: 2025-03-19
535
454
536
-
```
537
-
538
-
```{code-cell} ipython3
539
-
540
-
```
541
-
542
-
```{code-cell} ipython3
543
-
544
-
```
455
+
**Contact:**[the IRSA Helpdesk](https://irsa.ipac.caltech.edu/docs/help_desk.html) with questions or reporting problems.
0 commit comments