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-6Lines changed: 6 additions & 6 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
-
.. doctest-skip::
327
326
.. Skip testing as the example requires a lot of time to download a huge file
327
+
.. doctest-skip::
328
328
329
329
>>> file_name = res['file_name'][0]
330
330
>>> print("Downloading file:", file_name)
@@ -371,8 +371,8 @@ It is also possible to download just small portions of the MER (background subtr
371
371
372
372
Download the cutout...
373
373
374
-
.. doctest-skip::
375
374
.. Skip testing as the example requires a lot of time to download a huge file
@@ -502,8 +502,8 @@ package will also be available:
502
502
503
503
There are several ways to log in to the Euclid archive, as detailed below:
504
504
505
-
.. doctest-skip::
506
505
.. Skip testing as the example require authentication
506
+
.. doctest-skip::
507
507
508
508
>>> from astroquery.esa.euclid import Euclid
509
509
>>> Euclid.login_gui() # Login via graphic interface (pop-up window)
@@ -518,8 +518,8 @@ There are several ways to log in to the Euclid archive, as detailed below:
518
518
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.
519
519
The example below shows how to delete all the jobs in the user area using the list_async_jobs and remove_jobs_ methods.
520
520
521
-
.. doctest-skip::
522
521
.. Skip testing as the example require authentication
522
+
.. doctest-skip::
523
523
524
524
>>> Euclid.login()
525
525
>>> job_ids = [job.jobid for job in Euclid.list_async_jobs()]
@@ -530,8 +530,8 @@ It is also possible to take advantage of the job metadata to delete all the jobs
530
530
531
531
First, use the load_async_job_ method to download the metadata of the async jobs stored in the user space:
532
532
533
-
.. doctest-skip::
534
533
.. Skip testing as the example require authentication
534
+
.. doctest-skip::
535
535
536
536
>>> job_obj = [Euclid.load_async_job(jobid=jobid) for jobid in job_ids]
537
537
>>> job_ids = [job.jobid for job in job_obj]
@@ -548,8 +548,8 @@ Second, create a dataframe that contains the jobid and date information:
548
548
549
549
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:
550
550
551
-
.. doctest-skip::
552
551
.. Skip testing as the example require authentication
0 commit comments