File tree Expand file tree Collapse file tree 6 files changed +299
-677
lines changed Expand file tree Collapse file tree 6 files changed +299
-677
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,13 @@ ipac.irsa
9
9
10
10
- New class to access the Moving Object Search Tool (MOST) added. [#2660]
11
11
12
+ - The IRSA module's backend has been refactored to favour VO services and to
13
+ run the queries through TAP rather than Gator.
14
+ New method ``query_tap `` is added to enable ADQL queries, async-named
15
+ methods have been removed. The ``selcols `` kwarg has been renamed to
16
+ ``columns ``, and the ``cache `` and ``verbose `` kwargs have been
17
+ deprecated as they have no effect. [#2823]
18
+
12
19
gaia
13
20
^^^^
14
21
Original file line number Diff line number Diff line change 4
4
===============
5
5
6
6
This module contains various methods for querying the
7
- IRSA Catalog Query Service(CatQuery) and the Moving
8
- Object Search Tool (MOST).
7
+ IRSA Services.
8
+
9
9
"""
10
10
from astropy import config as _config
11
11
@@ -14,13 +14,6 @@ class Conf(_config.ConfigNamespace):
14
14
"""
15
15
Configuration parameters for `astroquery.ipac.irsa`.
16
16
"""
17
-
18
- irsa_server = _config .ConfigItem (
19
- 'https://irsa.ipac.caltech.edu/cgi-bin/Gator/nph-query' ,
20
- 'Name of the IRSA mirror to use.' )
21
- gator_list_catalogs = _config .ConfigItem (
22
- 'https://irsa.ipac.caltech.edu/cgi-bin/Gator/nph-scan' ,
23
- 'URL from which to list all the public catalogs in IRSA.' )
24
17
most_server = _config .ConfigItem (
25
18
'https://irsa.ipac.caltech.edu/cgi-bin/MOST/nph-most' ,
26
19
'URL address of the MOST service.' )
@@ -34,6 +27,7 @@ class Conf(_config.ConfigNamespace):
34
27
timeout = _config .ConfigItem (
35
28
60 ,
36
29
'Time limit for connecting to the IRSA server.' )
30
+ tap_url = _config .ConfigItem ('https://irsa.ipac.caltech.edu/TAP' , 'IRSA TAP URL' )
37
31
38
32
39
33
conf = Conf ()
You can’t perform that action at this time.
0 commit comments