Skip to content

Commit ca3d70f

Browse files
Tiffany Meshkatbsipocz
authored andcommitted
A few changes following the rehearsal
1 parent cf7c4ca commit ca3d70f

File tree

1 file changed

+19
-3
lines changed

1 file changed

+19
-3
lines changed

tutorials/euclid_access/1_Euclid_intro_MER_images.md

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ image_table = irsa_service.search(pos=(coord, search_radius), collection='euclid
104104
Convert the table to pandas dataframe
105105

106106
```{code-cell} ipython3
107-
df_im_irsa=image_table.to_table().to_pandas()
107+
df_im_irsa=image_table.to_table().to_pandas().reset_index()
108108
```
109109

110110
Change the settings so we can see all the columns in the dataframe and the full column width (to see the full long URL)
@@ -119,12 +119,16 @@ pd.set_option('display.max_colwidth', None)
119119
# pd.reset_option('display.max_colwidth')
120120
```
121121

122+
```{code-cell} ipython3
123+
df_im_irsa
124+
```
125+
122126
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
123127

124128
```{code-cell} ipython3
125-
df_im_euclid=df_im_irsa[ (df_im_irsa['dataproduct_subtype']=='science')]
129+
df_im_euclid=df_im_irsa[ (df_im_irsa['dataproduct_subtype']=='science')].reset_index()
126130
127-
df_im_euclid.head()
131+
df_im_euclid
128132
```
129133

130134
```{code-cell} ipython3
@@ -400,3 +404,15 @@ for i in range(len(sources_thr)):
400404
**Updated**: 2025-03-19
401405

402406
**Contact:** [the IRSA Helpdesk](https://irsa.ipac.caltech.edu/docs/help_desk.html) with questions or reporting problems.
407+
408+
```{code-cell} ipython3
409+
410+
```
411+
412+
```{code-cell} ipython3
413+
414+
```
415+
416+
```{code-cell} ipython3
417+
418+
```

0 commit comments

Comments
 (0)