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
Copy file name to clipboardExpand all lines: tutorials/euclid_access/Euclid_ERO.md
+11-12Lines changed: 11 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
# Exploring Star Clusters in the Euclid ERO Data
3
3
***
4
4
5
-
## Learning Goals
5
+
## Learning Goals
6
6
By the end of this tutorial, you will be able to:
7
7
8
8
• Access the Euclid ERO images using `astroquery`
@@ -15,7 +15,7 @@ By the end of this tutorial, you will be able to:
15
15
16
16
• Visualize the Euclid ERO image and the Gaia catalog in `Firefly`
17
17
18
-
18
+
19
19
## Introduction
20
20
Euclid is a European Space Agency (ESA) space mission with NASA participation, to study the geometry and nature of the dark Universe. As part of its first observations, Euclid publicly released so-called *Early Release Observations* (ERO) targeting some press-worthy targets on the sky such as star clusters or local galaxies.
21
21
@@ -138,7 +138,7 @@ Note that the Euclid ERO images are no in the cloud currently, but we access the
138
138
139
139
**Note:** The following only works for combined images (either extended or point source stacks). This would not work if there are multiple, let's say, H-band images of Euclid at a given position. Therefore, no time domain studies here (which is anyway not one of the main goals of Euclid).
140
140
141
-
The IRSA SIA products can be listed via
141
+
The IRSA SIA products can be listed via
142
142
```
143
143
Irsa.list_collections(servicetype='SIA')
144
144
```
@@ -230,7 +230,7 @@ for ii,filt in tqdm(enumerate(filters)):
230
230
231
231
with fits.open(image_tab['access_url'][sel[0]], use_fsspec=True) as hdul:
Finally, we perform object detection with `sep`. There are also modules in `photutils` to do that, however, we found that `sep` works best here. We output the number of objects found on the image.
Now, we use the `photutils` Python package to perform PSF fitting. Here we assume a simple Gaussian with a FWHM given by `psf_fwhm` as PSF.
325
325
326
-
**Note:** We use a Gaussian PSF here for simplicity. The photometry can be improved by using a pixelated PSF measured directly from the Euclid images (for example by stacking stars).
326
+
**Note:** We use a Gaussian PSF here for simplicity. The photometry can be improved by using a pixelated PSF measured directly from the Euclid images (for example by stacking stars).
327
327
328
328
```python
329
329
psf_fwhm =0.16# PSF FWHM in arcsec
@@ -407,7 +407,7 @@ plt.show()
407
407
408
408
## Measure the Photometry on the NISP Images
409
409
410
-
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.
410
+
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.
411
411
For this, we use the positions of the VIS measurements and perform PSF fitting on the NISP image using these priors.
412
412
413
413
The steps below are almost identical to the ones applied to the VIS images.
@@ -430,8 +430,8 @@ mask2 = np.isnan(img2)
430
430
... and we also get some statistics on the sky background.
Now, we need to obtain the (x,y) image coordinates on the NISP image that correspond to the extracted sources on the VIS image. We use the WCS information from the NISP image for this case and apply it to the sky coordinates obtained on the VIS image.
@@ -502,7 +502,6 @@ Gaia.ROW_LIMIT = -1
502
502
Next, we request the Gaia catalog around the position of the globular cluster. We use the same size as the cutout size.
0 commit comments