@@ -652,8 +652,8 @@ def query_sia(self, *, pos=None, band=None, time=None, pol=None,
652
652
653
653
Returns
654
654
-------
655
- Results in `` pyvo.dal.sia2.SIA2Results` ` format.
656
- result.table in Astropy table format
655
+ Results in `~ pyvo.dal.sia2.SIA2Results` format.
656
+ result.to_qtable in `~astropy. table.QTable` format
657
657
"""
658
658
return self .sia .search (
659
659
pos = pos ,
@@ -680,13 +680,13 @@ def query_sia(self, *, pos=None, band=None, time=None, pol=None,
680
680
681
681
def query_tap (self , query , * , maxrec = None , uploads = None ):
682
682
"""
683
- Send query to the ALMA TAP. Results in pyvo.dal.TapResult format.
684
- result.table in Astropy table format
683
+ Send query to the ALMA TAP. Results in `~ pyvo.dal.TAPResults` format.
684
+ result.to_qtable in `~astropy. table.QTable` format
685
685
686
686
Parameters
687
687
----------
688
688
query : str
689
- ADQL query to execute
689
+ ADQL query to be executed
690
690
maxrec : int
691
691
maximum number of records to return
692
692
uploads : dict
@@ -702,6 +702,11 @@ def query_tap(self, query, *, maxrec=None, uploads=None):
702
702
>>> uploads = {'tmptable': '/tmp/tmptable_def.xml'}
703
703
>>> rslt = query_tap(self, query, maxrec=None, uploads=uploads)
704
704
705
+ Return
706
+ ------
707
+ result : `~pyvo.dal.TAPResults`
708
+ TAP query result
709
+
705
710
"""
706
711
log .debug ('TAP query: {}' .format (query ))
707
712
return self .tap .search (query , language = 'ADQL' , maxrec = maxrec , uploads = uploads )
0 commit comments