4
4
===============
5
5
6
6
This module contains various methods for querying the
7
- IRSA Catalog Query Service(CatQuery).
7
+ IRSA Catalog Query Service(CatQuery) and the Moving
8
+ Object Search Tool (MOST).
8
9
"""
9
10
from astropy import config as _config
10
11
@@ -14,12 +15,19 @@ class Conf(_config.ConfigNamespace):
14
15
Configuration parameters for `astroquery.ipac.irsa`.
15
16
"""
16
17
17
- server = _config .ConfigItem (
18
+ irsa_server = _config .ConfigItem (
18
19
'https://irsa.ipac.caltech.edu/cgi-bin/Gator/nph-query' ,
19
20
'Name of the IRSA mirror to use.' )
20
21
gator_list_catalogs = _config .ConfigItem (
21
22
'https://irsa.ipac.caltech.edu/cgi-bin/Gator/nph-scan' ,
22
23
'URL from which to list all the public catalogs in IRSA.' )
24
+ most_server = _config .ConfigItem (
25
+ 'https://irsa.ipac.caltech.edu/cgi-bin/MOST/nph-most' ,
26
+ 'URL address of the MOST service.' )
27
+ most_interface_url = _config .ConfigItem (
28
+ 'https://irsa.ipac.caltech.edu/applications/MOST/' ,
29
+ 'URL address of the MOST application interface.'
30
+ )
23
31
row_limit = _config .ConfigItem (
24
32
500 ,
25
33
'Maximum number of rows to retrieve in result' )
@@ -32,5 +40,6 @@ class Conf(_config.ConfigNamespace):
32
40
33
41
34
42
from .core import Irsa , IrsaClass
43
+ from .most import Most , MostClass
35
44
36
- __all__ = ['Irsa' , 'IrsaClass' , 'Conf' , 'conf' , ]
45
+ __all__ = ['Irsa' , 'IrsaClass' , 'Most' , 'MostClass' , ' Conf' , 'conf' , ]
0 commit comments