We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bef740d commit 0dde48cCopy full SHA for 0dde48c
astroquery/xmatch/core.py
@@ -19,7 +19,8 @@ class XMatchClass(BaseQuery):
19
20
def query(self, cat1, cat2, max_distance, colRA1=None,
21
colDec1=None, colRA2=None, colDec2=None):
22
- """Query the `CDS cross-match service
+ """
23
+ Query the `CDS cross-match service
24
<http://cdsxmatch.u-strasbg.fr/xmatch>`_ by finding matches between
25
two (potentially big) catalogues.
26
@@ -55,7 +56,6 @@ def query(self, cat1, cat2, max_distance, colRA1=None,
55
56
-------
57
table : `~astropy.table.Table`
58
Query results table
-
59
"""
60
response = self.query_async(
61
cat1, cat2, max_distance, colRA1, colDec1, colRA2, colDec2)
@@ -66,12 +66,10 @@ def query_async(
66
self, cat1, cat2, max_distance, colRA1=None,
67
68
69
70
Returns
71
72
response : `requests.Response`
73
The HTTP response returned from the service.
74
75
76
if max_distance > 180 * arcsec:
77
raise ValueError(
0 commit comments