Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,12 @@ ipac.irsa
in to return all TAP tables, including non-spatial and metadata ones,
too. [#3334]

noirlab
^^^^^^^

- Restore access to the `NSF NOIRLab <https://noirlab.edu>`_
`Astro Data Archive <https://astroarchive.noirlab.edu>`_ [#3359].

SIMBAD
^^^^^^

Expand Down
24 changes: 24 additions & 0 deletions astroquery/noirlab/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Licensed under a 3-clause BSD style license - see LICENSE.rst
"""
NSF NOIRLab Astro Data Archive Query Tool
-----------------------------------------
"""
from astropy import config as _config


class Conf(_config.ConfigNamespace):
"""
Configuration parameters for `astroquery.noirlab`.
"""
server = _config.ConfigItem(['https://astroarchive.noirlab.edu',],
'Name of the NSF NOIRLab server to use.')
timeout = _config.ConfigItem(30,
'Time limit for connecting to NSF NOIRLab server.')


conf = Conf()

from .core import NOIRLab, NOIRLabClass # noqa

__all__ = ['NOIRLab', 'NOIRLabClass',
'conf', 'Conf']
Loading
Loading