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.
156
156
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.
@@ -229,7 +229,7 @@ Let's check out the summary table that we have created. We see that we have all
229
229
summary_table
230
230
```
231
231
232
-
## Create Cutout Images
232
+
## 3. Create Cutout Images
233
233
234
234
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).
235
235
@@ -267,7 +267,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.
432
432
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.
516
516
To search for Gaia sources, we use `astroquery` again.
@@ -565,7 +565,7 @@ ax2.set_title("NISP")
565
565
plt.show()
566
566
```
567
567
568
-
## Match the Gaia Catalog to the VIS and NISP Catalogs
568
+
## 7. Match the Gaia Catalog to the VIS and NISP Catalogs
569
569
570
570
Now, we match the Gaia source positions to the extracted sources in the VIS and NISP images.
571
571
@@ -630,7 +630,7 @@ ax1.set_ylabel("I$_E$ [mag]")
630
630
plt.show()
631
631
```
632
632
633
-
## Visualization with Firefly
633
+
## 8. Visualization with Firefly
634
634
635
635
At the end of this Notebook, we demonstrate how we can visualize the images and catalogs created above in `Firefly`.
Copy file name to clipboardExpand all lines: tutorials/simulated-data/OpenUniverse2024Preview_Firefly.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -90,7 +90,7 @@ from reproject import reproject_interp
90
90
from io import BytesIO
91
91
```
92
92
93
-
## Learn where the OpenUniverse2024 data are hosted in the cloud.
93
+
## 1. Learn where the OpenUniverse2024 data are hosted in the cloud
94
94
95
95
The OpenUniverse2024 data preview is hosted in the cloud via Amazon Web Services (AWS). To access these data, you need to create a client to read data from Amazon's Simple Storage Service (s3) buckets, and you need to know some information about those buckets. The OpenUniverse2024 data preview contains simulations of the Roman Wide-Area Survey (WAS) and the Roman Time Domain Survey (TDS). In this tutorial, we will focus on the WAS.
The Nancy Grace Roman Space Telescope will carry out a wide-area survey (WAS) in the near infrared. The OpenUniverse2024 data preview includes coadded mosaics of simulated WAS data, created with the IMCOM algorithm (Rowe et al. 2011). Bands include F184, H158, J129, K213, Y106. In this section, we define some functions that make it convenient to retrieve a given cloud-hosted simulated Roman coadd based on position and filter.
The OpenUniverse2024 data preview includes coadded mosaics in the following filters: u, g, r, i, z, y. In this section, we define some functions that make it convenient to retrieve a given cloud-hosted simulated Roman coadd based on position and filter.
## Compare simulated Roman and Rubin cutouts for a selected position
334
+
## 4. Compare simulated Roman and Rubin cutouts for a selected position
335
335
336
336
+++
337
337
@@ -370,7 +370,7 @@ fig.suptitle(f"Cutouts at ({coord.ra}, {coord.dec}) with {cutout_size} size", fo
370
370
plt.tight_layout(rect=[0, 0, 1, 0.97])
371
371
```
372
372
373
-
## Use Firefly to interactively identify a blended source
373
+
## 5. Use Firefly to interactively identify a blended source
374
374
375
375
Clearly, the simulated Roman coadd has higher spatial resolution than the Rubin simulated coadd. Let's try to locate blended objects to compare in the simulated Rubin and Roman images. We will use Firefly's interactive visualization to make this task easier.
## Use Firefly to visualize the OpenUniverse2024 data preview catalogs
508
+
## 7. Use Firefly to visualize the OpenUniverse2024 data preview catalogs
509
509
Let's inspect the properties of sources in the Rubin coadd image. For this we will use the input truth files present in S3 bucket.
510
510
511
511
The OpenUniverse2024 data preview includes the input truth files that were used to create the simulated images. These files are in Parquet and HDF5 format, and include information about the properties of galaxies, stars, and transients.
0 commit comments