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/cloud_access/euclid-cloud-access.md
+17-9
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ jupytext:
6
6
format_version: 0.13
7
7
jupytext_version: 1.16.3
8
8
kernelspec:
9
-
display_name: irsa-tutorials
9
+
display_name: Python 3 (ipykernel)
10
10
language: python
11
11
name: python3
12
12
---
@@ -16,18 +16,24 @@ kernelspec:
16
16
+++
17
17
18
18
## Learning Goals
19
-
- Learn where Euclid QR1 data is present in the cloud
20
-
- Find an image and retireve its cutout from cloud
21
-
- Find an object and retrieve its spectrum from cloud
19
+
By the end of this tutorial, you will:
20
+
- Learn where Euclid Q1 data are stored in the cloud.
21
+
- Retrieve an image cutout from the cloud.
22
+
- Retrieve a spectrum from the cloud.
22
23
23
24
+++
24
25
25
26
## Introduction
26
-
TODO: fill with links of docs/specs?
27
+
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.
28
+
29
+
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.
30
+
31
+
Euclid Q1 data were released on-premises at IPAC and in the cloud via Amazon Web Services' Open Data Repository. This notebook introduces users to accessing Euclid Q1 data from the cloud. Additional Euclid-specific notebooks can be found at ["Accessing Euclid data" section](https://caltech-ipac.github.io/irsa-tutorials/#accessing-euclid-data) and additional notebooks about how to access IRSA-curated data from the AWS ODR can be found at ["Accessing IRSA's cloud holdings" section](https://caltech-ipac.github.io/irsa-tutorials/#accessing-irsa-s-cloud-holdings).
27
32
28
33
+++
29
34
30
35
## Imports
36
+
- TODO: fill the imports explaination
31
37
32
38
```{code-cell} ipython3
33
39
# Uncomment the next line to install dependencies if needed.
@@ -58,6 +64,8 @@ BUCKET_NAME='nasa-irsa-euclid-q1' # internal to IPAC until public release (use L
58
64
s3 = s3fs.S3FileSystem(anon=True)
59
65
```
60
66
67
+
TODO: link s3fs docs
68
+
61
69
```{code-cell} ipython3
62
70
s3.ls(f'{BUCKET_NAME}/q1')
63
71
```
@@ -95,16 +103,16 @@ List all Simple Image Access (SIA) collections for IRSA.
collections[['euclid' in v for v in collections['collection']]]
105
113
```
106
114
107
-
We identify the collection we need for MER images:
115
+
As per "Data Products Overview" in [user guide](https://irsa.ipac.caltech.edu/data/Euclid/docs/euclid_archive_at_irsa_user_guide.pdf) and the above table, we identify that MER Mosiacs are available as follows:
0 commit comments