@@ -24,6 +24,7 @@ By the end of this tutorial, you will:
2424- Understand what PHZ catalogs are available and how to view the columns in those catalogs.
2525- How to query with ADQL in the PHZ catalog to find galaxies between a redshift of 1.4 and 1.6.
2626- Pull and plot a spectrum of one of the galaxies in that catalog.
27+ - Cutout an image of the galaxy to view it close up.
2728- Learn how to upload images and catalogs to Firefly to inspect individual sources in greater detail.
2829
2930+++
@@ -173,7 +174,7 @@ We specify the following conditions on our search:
173174- We select just the galaxies where the flux is greater than zero, to ensure the appear in all four of the Euclid MER images.
174175- Select only objects in a circle (search radius selected below) around our selected RA and Dec
175176- phz_classification =2 means we select only galaxies
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 %
177+ - Using the phz_90_int1 and phz_90_int2, we select just the galaxies where the error on the photometric redshift is less than 20 %
177178- Select just the galaxies between a median redshift of 1.4 and 1.6
178179
179180+++
@@ -230,6 +231,7 @@ print(hdu_mer_irsa.info())
230231``` {code-cell} ipython3
231232# download_path='/yourlocalpath/'
232233# hdu_mer_irsa.writeto(download_path+'./MER_image_VIS.fits', overwrite=True)
234+ # df_g_irsa.to_csv(download_path+'./df_table_irsa.csv', index=False)
233235```
234236
235237``` {code-cell} ipython3
@@ -344,9 +346,6 @@ plt.title('Object ID is '+str(obj_id))
344346
345347## Lets cut out a very small patch of the MER image to see what this galaxy looks like
346348
347- ``` {code-cell} ipython3
348- df_g_irsa[df_g_irsa['object_id']==obj_id]['ra']
349- ```
350349
351350``` {code-cell} ipython3
352351## How large do you want the image cutout to be?
@@ -418,7 +417,6 @@ fc.align_images(lock_match=True)
418417
419418``` {code-cell} ipython3
420419csv_path = os.path.join(download_path, "mer_df.csv")
421- df_g_irsa.to_csv(csv_path, index=False)
422420```
423421
424422### Upload the CSV table to Firefly and display as an overlay on the FITS image
0 commit comments