Skip to content

Commit ebf8de5

Browse files
committed
Merge pull request #537 from zemogle/lcogt
Adding LCOGT archive support
2 parents 7fdb127 + 97e5c90 commit ebf8de5

File tree

10 files changed

+991
-0
lines changed

10 files changed

+991
-0
lines changed

astroquery/lcogt/__init__.py

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# Licensed under a 3-clause BSD style license - see LICENSE.rst
2+
"""
3+
LCOGT public archive Query Tool
4+
===============
5+
6+
This module contains various methods for querying
7+
LCOGT data archive as hosted by IPAC.
8+
"""
9+
from astropy import config as _config
10+
11+
12+
class Conf(_config.ConfigNamespace):
13+
"""
14+
Configuration parameters for `astroquery.irsa`.
15+
"""
16+
17+
server = _config.ConfigItem(
18+
'http://lcogtarchive.ipac.caltech.edu/cgi-bin/Gator/nph-query',
19+
'Name of the LCOGT archive as hosted by IPAC to use.'
20+
)
21+
row_limit = _config.ConfigItem(
22+
500,
23+
'Maximum number of rows to retrieve in result'
24+
)
25+
timeout = _config.ConfigItem(
26+
60,
27+
'Time limit for connecting to the LCOGT IPAC server.'
28+
)
29+
30+
conf = Conf()
31+
32+
33+
from .core import Lcogt, LcogtClass
34+
35+
__all__ = ['Lcogt', 'LcogtClass',
36+
'Conf', 'conf',
37+
]

0 commit comments

Comments
 (0)