Skip to content

Commit 04d050f

Browse files
Fixing code to match the narrative
Co-authored-by: Jaladh Singhal <[email protected]>
1 parent 6e8c48b commit 04d050f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tutorials/cloud_access/euclid-cloud-access.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ List all Simple Image Access (SIA) collections for IRSA with names containing "e
108108

109109
```{code-cell} ipython3
110110
collections = Irsa.list_collections(servicetype='SIA', filter='euclid')
111-
len(collections)
111+
collections
112112
```
113113

114114
As per "Data Products Overview" in [user guide](https://irsa.ipac.caltech.edu/data/Euclid/docs/euclid_archive_at_irsa_user_guide.pdf) and above table, we identify that MER Mosiacs are available as the following collection:
@@ -226,7 +226,7 @@ First, list the Euclid catalogs provided by IRSA:
226226

227227
```{code-cell} ipython3
228228
catalogs = Irsa.list_catalogs(full=True, filter='euclid')
229-
len(catalogs)
229+
catalogs
230230
```
231231

232232
From this table, we can extract the MER catalog name. We also see several other interesting catalogs, let's also extract spectral file association catalog for retrieving spectra later.

0 commit comments

Comments
 (0)