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: docs/esa/euclid/euclid.rst
+6-7Lines changed: 6 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -323,8 +323,8 @@ and their sky coverage (in its "fov" field) is queried using ADQL_. Please note:
323
323
* Given the size of the Euclid FITS images (~1.4 GB for the MER images and ~7 GB for calibrated VIS images) downloading individual files is time consuming (depending on the internet bandwith).
324
324
* This step can be skipped if using ESA Datalabs_ (as direct access to the products is possible).
325
325
326
-
.. Skip testing as the example requires a lot of time to download a huge file
327
326
.. doctest-skip::
327
+
.. Skip testing as the example requires a lot of time to download a huge file
328
328
329
329
>>> file_name = res['file_name'][0]
330
330
>>> print("Downloading file:", file_name)
@@ -430,8 +430,8 @@ It is also possible to download just small portions of the MER (background subtr
430
430
431
431
Download the cutout...
432
432
433
-
.. Skip testing as the example requires a lot of time to download a huge file
434
433
.. doctest-skip::
434
+
.. Skip testing as the example requires a lot of time to download a huge file
@@ -561,8 +561,8 @@ package will also be available:
561
561
562
562
There are several ways to log in to the Euclid archive, as detailed below:
563
563
564
-
.. Skip testing as the example require authentication
565
564
.. doctest-skip::
565
+
.. Skip testing as the example require authentication
566
566
567
567
>>> from astroquery.esa.euclid import Euclid
568
568
>>> Euclid.login_gui() # Login via graphic interface (pop-up window)
@@ -577,8 +577,8 @@ There are several ways to log in to the Euclid archive, as detailed below:
577
577
All the asynchronous jobs launched by registered users are stored in the user area, which can store up to 10 GB of jobs. Therefore, it is recommended to remove unnecessary jobs to avoid filling up the user quota.
578
578
The example below shows how to delete all the jobs in the user area using the list_async_jobs and remove_jobs_ methods.
579
579
580
-
.. Skip testing as the example require authentication
581
580
.. doctest-skip::
581
+
.. Skip testing as the example require authentication
582
582
583
583
>>> Euclid.login()
584
584
>>> job_ids = [job.jobid for job in Euclid.list_async_jobs()]
@@ -589,16 +589,15 @@ It is also possible to take advantage of the job metadata to delete all the jobs
589
589
590
590
First, use the load_async_job_ method to download the metadata of the async jobs stored in the user space:
591
591
592
-
.. Skip testing as the example require authentication
593
592
.. doctest-skip::
593
+
.. Skip testing as the example require authentication
594
594
595
595
>>> job_obj = [Euclid.load_async_job(jobid=jobid) for jobid in job_ids]
596
596
>>> job_ids = [job.jobid for job in job_obj]
597
597
>>> dates = [job.creationTime for job in job_obj]
598
598
599
599
Second, create a dataframe that contains the jobid and date information:
600
600
601
-
.. Skip testing as the example require authentication
@@ -608,8 +607,8 @@ Second, create a dataframe that contains the jobid and date information:
608
607
609
608
Finally, extract the job id's included in a given time range (in the example below, all the jobs stored since 2024-10-01 at 7 hours UTC) and delete them:
610
609
611
-
.. Skip testing as the example require authentication
612
610
.. doctest-skip::
611
+
.. Skip testing as the example require authentication
0 commit comments