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
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -56,6 +56,10 @@ Each MER image is approximately 1.47 GB. Downloading can take some time.
56
56
57
57
## Imports
58
58
59
+
```{important}
60
+
We rely on ``astroquery`` and ``sep`` features that have been recently added, so please make sure you have the respective version v0.4.10 and v1.4 or newer installed.
61
+
```
62
+
59
63
```{code-cell} ipython3
60
64
# Uncomment the next line to install dependencies if needed.
@@ -94,7 +98,7 @@ This searches specifically in the euclid_DpdMerBksMosaic "collection" which is t
94
98
+++
95
99
96
100
```{note}
97
-
This table lists all MER mosaic images available in this position. These mosaics include the Euclid VIS, Y, J, H images, as well as ground-based telescopes which have been put on the same pixel scale. For more information, see the [Euclid documentation at IPAC](https://euclid.caltech.edu/page/euclid-faq-tech/). We use the ``facility`` argument below to query for Euclid images only.
101
+
This table lists all MER mosaic images available in this position. These mosaics include the Euclid VIS, Y, J, H images, as well as ground-based telescopes which have been put on the same pixel scale. For more information, see the [Euclid documentation at IPAC](https://euclid.caltech.edu/page/euclid-faq-tech/). We use the ``facility`` argument below to query for Euclid images only.
98
102
```
99
103
100
104
```{code-cell} ipython3
@@ -217,7 +221,7 @@ result_galaxies[:5]
217
221
```
218
222
219
223
```{warning}
220
-
Note that we use `to_table` above rather than `to_qtable`. While astropy's `QTable` is more powerful than its `Table`, as it e.g. handles the column units properly, we cannot use it here due to a known bug; it mishandles the large integer numbers in the `object_id` column and recast them as float during which process some precision is being lost.
224
+
Note that we use `to_table` above rather than `to_qtable`. While astropy's `QTable` is more powerful than its `Table`, as it e.g. handles the column units properly, we cannot use it here due to a known bug; it mishandles the large integer numbers in the `object_id` column and recast them as float during which process some precision is being lost.
221
225
222
226
Once the bug is fixed, we plan to update the code in this notebook and simplify some of the approaches below.
223
227
```
@@ -263,9 +267,9 @@ For more info, please visit the [WCSAxes documentation](https://docs.astropy.org
Let's pick one of these galaxies. Note that the table has been sorted above, we can use the same index here and below to access the data for this particular galaxy.
288
+
Let's pick one of these galaxies. Note that the table has been sorted above, we can use the same index here and below to access the data for this particular galaxy.
285
289
286
290
```{code-cell} ipython3
287
291
index = 2
@@ -363,7 +367,7 @@ Plot to show the cutout on the galaxy
Copy file name to clipboardExpand all lines: tutorials/euclid_access/Euclid_ERO.md
+6-1Lines changed: 6 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -49,13 +49,18 @@ The total data volume required for running this notebook is less than 20 MB.
49
49
50
50
## Imports
51
51
52
-
First, we import all necessary packages.
52
+
```{important}
53
+
We rely on ``astroquery``, ``firefly_client``, ``photutils``, and ``sep`` features that have been recently added, so please make sure you have the respective versions v0.4.10, v3.2, v2.0, and v1.4 or newer installed.
54
+
```
53
55
54
56
```{code-cell} ipython3
55
57
# Uncomment the next line to install dependencies if needed.
0 commit comments