11# Licensed under a 3-clause BSD style license - see LICENSE.rst
2- """
3- CDS MOCServer Query Tool
4- ------------------------
2+ """CDS MOCServer Query Tool.
3+ ----------------------------
54
65:Author: Matthieu Baumann ([email protected] ) 76
1312Note: If the access to MOCs with the MOCServer tool was helpful for your research,
1413the following acknowledgment would be appreciated::
1514
16- This research has made use of the MOCServer, a tool developed at CDS, Strasbourg, France aiming at retrieving
17- MOCs/meta-data from known data-sets. MOC is an IVOA standard described in the following paper :
15+ This research has made use of the MOCServer, a tool developed at CDS, Strasbourg,
16+ France aiming at retrieving MOCs/meta-data from known data-sets. MOC is an IVOA
17+ standard described in :
1818 http://www.ivoa.net/documents/MOC/20140602/REC-MOC-1.0-20140602.pdf
1919"""
2020
2424
2525
2626class Conf (_config .ConfigNamespace ):
27- """
28- Configuration parameters for ``astroquery.template_module``.
29- """
27+ """Configuration parameters for ``astroquery.template_module``."""
3028
3129 server = _config .ConfigItem (
3230 [
33- "http ://alasky.unistra.fr/MocServer/query" ,
34- "http ://alaskybis.unistra.fr/MocServer/query" ,
31+ "https ://alasky.unistra.fr/MocServer/query" ,
32+ "https ://alaskybis.unistra.fr/MocServer/query" ,
3533 ],
3634 "Name of the template_module server to use." ,
3735 )
@@ -40,6 +38,16 @@ class Conf(_config.ConfigNamespace):
4038 30 , "Time limit for connecting to template_module server."
4139 )
4240
41+ default_fields = [
42+ "ID" ,
43+ "obs_title" ,
44+ "obs_description" ,
45+ "nb_rows" ,
46+ "obs_regime" ,
47+ "bib_reference" ,
48+ "dataproduct_type" ,
49+ ]
50+
4351
4452conf = Conf ()
4553
0 commit comments