Navigation | Overlay |
---|---|
t Navigate files | h Toggle hits |
y Change url to tip of branch | m Toggle misses |
b / v Jump to prev/next hit line | p Toggle partial |
z / x Jump to prev/next missed or partial line | 1..9 Toggle flags |
shift + o Open current page in GitHub | a Toggle all on |
/ or ? Show keyboard shortcuts dialog | c Toggle context lines or commits |
1 |
# Licensed under a 3-clause BSD style license - see LICENSE.rst
|
|
2 | 1 |
"""
|
3 |
Module to query the NRAO Data Archive for observation summaries.
|
|
4 |
"""
|
|
5 | 1 |
from astropy import config as _config |
6 |
|
|
7 |
|
|
8 | 1 |
class Conf(_config.ConfigNamespace): |
9 |
"""
|
|
10 |
Configuration parameters for `astroquery.nrao`.
|
|
11 |
"""
|
|
12 | 1 |
server = _config.ConfigItem( |
13 |
['https://archive.nrao.edu/archive/ArchiveQuery'], |
|
14 |
'Name of the NRAO mirror to use.') |
|
15 | 1 |
timeout = _config.ConfigItem( |
16 |
60, |
|
17 |
'Time limit for connecting to NRAO server.') |
|
18 | 1 |
username = _config.ConfigItem( |
19 |
"", |
|
20 |
'Optional default username for ALMA archive.') |
|
21 |
|
|
22 |
|
|
23 | 1 |
conf = Conf() |
24 |
|
|
25 | 1 |
from .core import Nrao, NraoClass |
26 |
|
|
27 | 1 |
__all__ = ['Nrao', 'NraoClass', |
28 |
'Conf', 'conf', |
|
29 |
]
|
Read our documentation on viewing source code .