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/1_Euclid_intro_MER_images.md
+21-29Lines changed: 21 additions & 29 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,29 +20,23 @@ kernelspec:
20
20
+++
21
21
22
22
By the end of this tutorial, you will:
23
-
-Understand the basic characteristics of Euclid Q1 MER mosaics.
24
-
-How do download full MER mosaics.
25
-
-How to make smaller cutouts of MER mosaics.
26
-
-Use matplotlib to plot a grid of cutouts.
27
-
-Identify sources in the cutouts and make basic measurements.
23
+
-understand the basic characteristics of Euclid Q1 MER mosaics;
24
+
-know how to download full MER mosaics;
25
+
-know how to make smaller cutouts of MER mosaics;
26
+
-know how to use matplotlib to plot a grid of cutouts;
27
+
-know how to identify sources in the cutouts and make basic measurements.
28
28
29
29
+++
30
30
31
31
## Introduction
32
32
33
33
+++
34
34
35
-
Euclid is a European Space Agency (ESA) space mission with NASA participation, to study the geometry and nature of the dark Universe.
36
-
The Quick Data Release 1 (Q1) are the first data release from the Euclid mission after the Early Release Observations (ERO).
37
-
On March 19, 2025 the data will be available on the [ESA archive](https://easidr.esac.esa.int/sas/) and on the [IRSA archive](https://irsa.ipac.caltech.edu).
35
+
Euclid launched in July 2023 as a European Space Agency (ESA) mission with involvement by NASA. The primary science goals of Euclid are to better understand the composition and evolution of the dark Universe. The Euclid mission is providing space-based imaging and spectroscopy as well as supporting ground-based imaging to achieve these primary goals. These data will be archived by multiple global repositories, including IRSA, where they will support transformational work in many areas of astrophysics.
38
36
39
-
These Q1 notebooks focus on how to access, download, and process Euclid Q1 data from the IRSA archive.
40
-
If you have any issues accessing data from the archives, please contact the helpdesk directly: [IRSA helpdesk](https://irsa.ipac.caltech.edu/docs/help_desk.html) and [ESA Euclid Helpdesk](https://support.cosmos.esa.int/euclid).
37
+
Euclid Quick Release 1 (Q1) consists of consists of ~30 TB of imaging, spectroscopy, and catalogs covering four non-contiguous fields: Euclid Deep Field North (22.9 sq deg), Euclid Deep Field Fornax (12.1 sq deg), Euclid Deep Field South (28.1 sq deg), and LDN1641.
41
38
42
-
MER mosaic images are all the images from Level 2 images in different filters mapped to a common pixel scale.
43
-
44
-
This notebook provides an introduction to MER mosaics released as part of Euclid Q1.
45
-
Other Euclid notebooks show how to use other data products released as part of Euclid Q1.
39
+
Among the data products included in the Q1 release are the Level 2 MER mosaics. These are multiwavelength mosaics created from images taken with the Euclid instruments (VIS and NISP), as well as a variety of ground-based telescopes. All of the mosaics have been created according to a uniform tiling on the sky, and mapped to a common pixel scale. This notebook provides a quick introduction to accessing MER mosaics from IRSA. If you have questions about it, please contact the [IRSA helpdesk].
## 1. Search for multiwavelength Euclid Q1 MER mosaics that cover the star HD 168151
87
-
Below are the object name and coordinates and our search radius
81
+
Below we set a search radius of 10 arcsec and convert the name "HD 168151" into coordinates.
88
82
89
83
```{code-cell} ipython3
90
84
search_radius = 10 * u.arcsec
91
85
coord = SkyCoord.from_name('HD 168151')
92
86
```
93
87
94
-
Use IRSA to search for all Euclid data on this target.
95
-
This searches specifically in the euclid_DpdMerBksMosaic "collection" which is the MER images and catalogs.
96
-
This query will return any image with pixels that overlap the search region.
88
+
Use IRSA's Simple Image Access (SIA) API to search for all Euclid MER mosaics that overlap with the search region you have specified. We specify the euclid_DpdMerBksMosaic "collection" because it lists all of the multiwavelength MER mosaics, along with their associated catalogs.
This dataframe contains lots of other datasets that have been "Euclidized", so put on the same pixel scale as the Euclid data. For this example choose science as the data product subtype to see all images of this tile
118
+
This dataframe contains lots of datasets that have been "Euclidized", which means that they have been put on a common pixel scale chosen for the Euclid mission. Choose "science" as the data product subtype to see all science images of this tile.
We'd like to take a look at the other MER images but only in a specific cutout of interest so we don't have to download 9 full MER images.
199
+
We'd like to take a look at the multiwavelength images of our object, but the full MER mosaics are very large, so we will inspect the multiwavelength cutouts.
0 commit comments