Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
d6345c6
add files from NOAO fork
weaverba137 Jun 26, 2025
e6a7dac
add noirlab.rst to index
weaverba137 Jun 26, 2025
dd77a3f
update change log
weaverba137 Jun 26, 2025
9b093d1
update url and tests
weaverba137 Jun 26, 2025
e5c647b
fix remote data import
weaverba137 Jun 26, 2025
a02dbef
fix doc errors
weaverba137 Jun 26, 2025
bb3bbef
add local test
weaverba137 Jun 27, 2025
14834a4
adding offline tests
weaverba137 Jun 27, 2025
13d7686
ongoing test refactoring
weaverba137 Jun 27, 2025
f090357
fix test patching
weaverba137 Jun 27, 2025
f8fc5cf
adding more tests
weaverba137 Jun 27, 2025
6a70c46
fix docstring
weaverba137 Jun 27, 2025
6eaacb6
adding more tests
weaverba137 Jul 8, 2025
2f8816e
activate additional tests and add placeholders
weaverba137 Jul 9, 2025
714c2f0
fix style issue
weaverba137 Jul 9, 2025
25f879f
working on doc strings
weaverba137 Jul 9, 2025
298a69f
fix pformat issues
weaverba137 Jul 10, 2025
c703673
update docs
weaverba137 Jul 10, 2025
038a5f6
add test coverage for some corner cases
weaverba137 Jul 10, 2025
7929eba
fix style & add placeholders
weaverba137 Jul 10, 2025
e0c421f
tweak formatting
weaverba137 Jul 10, 2025
f63e091
update and sync docs
weaverba137 Jul 10, 2025
29b2437
activate hdu metadata tests
weaverba137 Jul 17, 2025
3894c16
all tests now active
weaverba137 Jul 17, 2025
afa21af
fix remote data error
weaverba137 Jul 17, 2025
708dbb4
fix doc compilation errors
weaverba137 Jul 17, 2025
64b84bf
updates based on initial review
weaverba137 Sep 17, 2025
f643b79
fix style check
weaverba137 Sep 17, 2025
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