Skip to content

Commit 91c8d38

Browse files
Apply suggestions from code review
Co-authored-by: Brigitta Sipőcz <b.sipocz@gmail.com>
1 parent 687ab7c commit 91c8d38

File tree

1 file changed

+6
-11
lines changed

1 file changed

+6
-11
lines changed

tutorials/cloud_access/euclid-cloud-access.md

Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -87,20 +87,14 @@ As per doc specification, we need `MER/{tile_id}/{instrument}/EUC_MER_BGSUB-MOSA
8787
### Get image file paths for a coordinate search of interest
8888

8989
```{code-cell} ipython3
90-
# Star TYC 4429-1677-1
91-
ra = 273.11730230 * u.deg
92-
dec = 68.20761349 * u.deg
93-
```
94-
95-
```{code-cell} ipython3
96-
coord = SkyCoord(ra=ra, dec=dec)
90+
coord = SkyCoord.from_name("TYC 4429-1677-1")
9791
search_radius = 10 * u.arcsec
9892
```
9993

10094
List all Simple Image Access (SIA) collections for IRSA.
10195

10296
```{code-cell} ipython3
103-
tbl = Irsa.list_collections(servicetype='SIA')
97+
collections = Irsa.list_collections(servicetype='SIA')
10498
len(tbl)
10599
```
106100

@@ -296,8 +290,9 @@ plt.title(f'Euclid Object ID: {object_id}');
296290
```
297291

298292
## About this Notebook
299-
Author: Jaladh Singhal (IRSA Developer) in conjunction with Tiffany Meshkat, Vandana Desai, Brigitta Sipőcz, and the IPAC Science Platform team
300293

301-
Updated: 2025-03-13
294+
**Author:** Jaladh Singhal (IRSA Developer) in conjunction with Tiffany Meshkat, Vandana Desai, Brigitta Sipőcz, and the IPAC Science Platform team
295+
296+
**Updated:** 2025-03-13
302297

303-
Contact: the [IRSA Helpdesk](https://irsa.ipac.caltech.edu/docs/help_desk.html) with questions or reporting problems.
298+
**Contact:** the [IRSA Helpdesk](https://irsa.ipac.caltech.edu/docs/help_desk.html) with questions or reporting problems.

0 commit comments

Comments
 (0)