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
+13-11Lines changed: 13 additions & 11 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)
@@ -356,12 +356,14 @@ and their sky coverage (in its "fov" field) is queried using ADQL_. Please note:
356
356
:height:500px
357
357
:scale:100%
358
358
359
-
The Euclid archive provides the VO Simple Image Access Protocol (SIAP) v2.0 to access the Euclid Observation Images. This service returns public images from:
359
+
The Euclid Archive provides the VO Simple Image Access Protocol (SIAP) v2.0 service for accessing Euclid observation images. This service returns public images from:
360
360
361
-
1. calibrated and Stacked NISP and VIS images;
362
-
2. MER Mosaics from VIS and NISP.
361
+
1. Calibrated and stacked NISP and VIS images.
362
+
2. MER mosaics from VIS and NISP.
363
363
364
-
This service returns the votable that contains all the necessary information to be used by the cutout function: the path to the fits files (file_name), the instrument, and id (obs_id). Note that the votable can also saved for a latter usage.
364
+
The service returns a VOTable containing all the information required by the cutout function, including the path to the FITS files (file_name), the instrument, and the observation identifier (obs_id).
365
+
366
+
The VOTable can also be saved for later use.
365
367
366
368
>>> from astroquery.esa.euclid import Euclid
367
369
>>> from astropy.coordinates import SkyCoord
@@ -400,7 +402,7 @@ This service returns the votable that contains all the necessary information to
@@ -561,8 +563,8 @@ package will also be available:
561
563
562
564
There are several ways to log in to the Euclid archive, as detailed below:
563
565
564
-
.. doctest-skip::
565
566
.. Skip testing as the example require authentication
567
+
.. doctest-skip::
566
568
567
569
>>> from astroquery.esa.euclid import Euclid
568
570
>>> Euclid.login_gui() # Login via graphic interface (pop-up window)
@@ -577,8 +579,8 @@ There are several ways to log in to the Euclid archive, as detailed below:
577
579
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
580
The example below shows how to delete all the jobs in the user area using the list_async_jobs and remove_jobs_ methods.
579
581
580
-
.. doctest-skip::
581
582
.. Skip testing as the example require authentication
583
+
.. doctest-skip::
582
584
583
585
>>> Euclid.login()
584
586
>>> job_ids = [job.jobid for job in Euclid.list_async_jobs()]
@@ -589,8 +591,8 @@ It is also possible to take advantage of the job metadata to delete all the jobs
589
591
590
592
First, use the load_async_job_ method to download the metadata of the async jobs stored in the user space:
591
593
592
-
.. doctest-skip::
593
594
.. Skip testing as the example require authentication
595
+
.. doctest-skip::
594
596
595
597
>>> job_obj = [Euclid.load_async_job(jobid=jobid) for jobid in job_ids]
596
598
>>> job_ids = [job.jobid for job in job_obj]
@@ -607,8 +609,8 @@ Second, create a dataframe that contains the jobid and date information:
607
609
608
610
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:
609
611
610
-
.. doctest-skip::
611
612
.. Skip testing as the example require authentication
0 commit comments