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
# Compute pixel coordinates corresponding to cutout position.
@@ -190,7 +189,7 @@ Approximately 5-7 minutes for 700 images of cutout size 0.01 degree on a typical
190
189
```{tip}
191
190
The astropy `fits.open()` supports a caching argument.
192
191
This can be passed through in the `process_cutout()` function.
193
-
If cache=True is set, the images are cached and the cutout creation is sped up next time the code is run (even if the Jupyter kernel is restarted!).
192
+
If `cache=True` is set, the images are cached and the cutout creation is sped up next time the code is run (even if the Jupyter kernel is restarted!).
194
193
The downside is that the images are saved on the machine where this notebook is run (usually in `~/.astropy/cache/`).
195
194
If many cutouts are created, this can sum up to a large cached data volume, in which case `cache=False` is preferred.
196
195
@@ -222,9 +221,11 @@ A good value for the maximum number of workers is between 7 and 12 for a machine
222
221
```{tip}
223
222
The astropy `fits.open()` supports a caching argument.
224
223
This can be passed through in the `process_cutout()` function.
225
-
If cache=True is set, the images are cached and the cutout creation is sped up next time the code is run (even if the Jupyter kernel is restarted!).
226
-
The downside is that the images are saved on the machine where this notebook is run.
227
-
If many cutouts are created, this can sum up to a large cached data volume, in which case cache=False is preferred.
224
+
If `cache=True` is set, the images are cached and the cutout creation is sped up next time the code is run (even if the Jupyter kernel is restarted!).
225
+
The downside is that the images are saved on the machine where this notebook is run (usually in `~/.astropy/cache/`).
226
+
If many cutouts are created, this can sum up to a large cached data volume, in which case `cache=False` is preferred.
227
+
228
+
To learn more about the cache please read the [astropy cache management documentation](https://docs.astropy.org/en/stable/utils/data.html#cache-management).
228
229
```
229
230
230
231
Again, before running the cutout processing we define some place holders.
@@ -325,12 +326,8 @@ plt.show()
325
326
326
327
**Authors:** IRSA Data Science Team, including Vandana Desai, Andreas Faisst, Troy Raen, Brigitta Sipőcz, Jessica Krick, Shoubaneh Hemmati
327
328
328
-
**Updated:** 2025-09-10
329
+
**Updated:** 2025-09-30
329
330
330
331
**Contact:**[IRSA Helpdesk](https://irsa.ipac.caltech.edu/docs/help_desk.html) with questions or problems.
331
332
332
333
**Runtime:** As of the date above, this notebook takes about 3 minutes to run to completion on a machine with 8GB RAM and 4 CPU.
333
-
(Note: This notebook doesn't take significant time to run, but please report actual numbers and
334
-
machine details for your notebook if it is expected to run longer or requires specific machines,
335
-
e.g., on Fornax. Also, if querying archives, please include a statement like, "This runtime is
336
-
heavily dependent on archive servers which means runtime will vary for users".)
0 commit comments