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
Now, we search for the Euclid ERO images using the `astroquery` package.
154
154
Note that the Euclid ERO images are no in the cloud currently, but we access them directly from IRSA using IRSA's *Simple Image Access* (SIA) methods.
@@ -227,7 +227,7 @@ Let's check out the summary table that we have created. We see that we have all
227
227
summary_table
228
228
```
229
229
230
-
## 4. Create Cutout Images
230
+
## 3. Create Cutout Images
231
231
232
232
Now that we have a list of data products, we can create the cutouts. This is important as the full Euclid ERO images would be too large to run extraction and photometry software on them (they would simply fail due to memory issues).
233
233
@@ -265,7 +265,7 @@ for ii,filt in tqdm(enumerate(filters)):
We now want to add the best-fit coordinates (R.A. and Decl.) to the VIS photometry catalog. For this, we have to convert the image coordinates into sky coordinates using the WCS information. We will need these coordinates because we want to use them as positional priors for the photometry measurement on the NISP images.
We now have the photometry and the position of sources on the VIS image. We can now proceed with similar steps on the NISP images. Because the NISP PSF and pixel scale are larger that those of the VIS images, we utilize the advantage of position prior-based forced photometry.
430
430
For this, we use the positions of the VIS measurements and perform PSF fitting on the NISP image using these priors.
We now load the Gaia sources at the location of the globular clusters. The goal is to compare the photometry of Gaia to the one derived above for the Euclid VIS and NISP images. This is scientifically useful, for example we can compute the colors of the stars in the Gaia optical bands and the Euclid near-IR bands.
514
514
To search for Gaia sources, we use `astroquery` again.
@@ -563,7 +563,7 @@ ax2.set_title("NISP")
563
563
plt.show()
564
564
```
565
565
566
-
## 11. Match the Gaia Catalog to the VIS and NISP Catalogs
566
+
## 7. Match the Gaia Catalog to the VIS and NISP Catalogs
567
567
568
568
Now, we match the Gaia source positions to the extracted sources in the VIS and NISP images.
569
569
@@ -628,7 +628,7 @@ ax1.set_ylabel("I$_E$ [mag]")
628
628
plt.show()
629
629
```
630
630
631
-
## 12. Visualization with Firefly
631
+
## 8. Visualization with Firefly
632
632
633
633
At the end of this Notebook, we demonstrate how we can visualize the images and catalogs created above in `Firefly`.
0 commit comments