@@ -37,8 +37,8 @@ Agency EUCLID Archive using a TAP+ REST service. TAP+ is an extension of Table A
37
37
specified by the International Virtual Observatory Alliance (IVOA: http://www.ivoa.net).
38
38
39
39
40
- The TAP query language is Astronomical Data Query Language
41
- (ADQL: https://www.ivoa.net/documents/ADQL/20231215/index.html), which is similar to Structured Query Language (SQL),
40
+ The TAP query language is Astronomical Data Query Language
41
+ (ADQL: https://www.ivoa.net/documents/ADQL/20231215/index.html ), which is similar to Structured Query Language (SQL),
42
42
widely used to query databases.
43
43
44
44
TAP provides two operation modes: Synchronous and Asynchronous:
@@ -540,8 +540,8 @@ To remove asynchronous
540
540
1.6. Synchronous query on an 'on-the-fly' uploaded table
541
541
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
542
542
543
- A user can execute ADQL queries and upload a votable to be used in a query 'on-the-fly' (these tables will be removed
544
- once the query is executed) .
543
+ 'On-the-fly' queries allow you to submit a votable and perform a query using that table all in one command; unlike tables
544
+ uploaded with ` upload_table ` (see :ref: ` uploading_table_to_user_space `), these tables will be deleted after the query is complete .
545
545
546
546
You have to provide the local path to the file you want to upload. In the following example, the file 'my_table.xml' is
547
547
located to the relative location where your python program is running. See note below.
@@ -801,6 +801,7 @@ To obtain a list of the tables shared to a user type the following:
801
801
>>> for table in tables:
802
802
... print (table.get_qualified_name())
803
803
804
+ .. _uploading_table_to_user_space :
804
805
805
806
2.5. Uploading table to user space
806
807
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -915,6 +916,7 @@ surrounded by quotation marks, i.e.: *user_<your_login_name>."<table_name>"*):
915
916
>>> job = Euclid.launch_job(query = query)
916
917
>>> results = job.get_results()
917
918
919
+
918
920
2.5.4. Uploading table from job
919
921
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
920
922
0 commit comments