From 7b2c0eb18c49ec7f030564ffb0c89fd02afc8b14 Mon Sep 17 00:00:00 2001 From: Jennifer Sobeck Date: Tue, 2 Aug 2022 12:18:40 -0700 Subject: [PATCH 1/3] SDSS module: set default data release to DR17 --- astroquery/sdss/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/astroquery/sdss/__init__.py b/astroquery/sdss/__init__.py index 7087ea7067..1347d5ccbf 100644 --- a/astroquery/sdss/__init__.py +++ b/astroquery/sdss/__init__.py @@ -19,7 +19,7 @@ class Conf(_config.ConfigNamespace): timeout = _config.ConfigItem( 60, 'Time limit for connecting to SDSS server.') - default_release = _config.ConfigItem(14, 'Default SDSS data release.') + default_release = _config.ConfigItem(17, 'Default SDSS data release.') conf = Conf() From 32c754317b176a67decee47025467a3572b14414 Mon Sep 17 00:00:00 2001 From: Jennifer Sobeck Date: Tue, 2 Aug 2022 12:35:23 -0700 Subject: [PATCH 2/3] Slight change to sdss-associated documentation --- astroquery/sdss/core.py | 2 +- docs/sdss/sdss.rst | 10 ++++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/astroquery/sdss/core.py b/astroquery/sdss/core.py index 32f7605a02..d27a98f047 100644 --- a/astroquery/sdss/core.py +++ b/astroquery/sdss/core.py @@ -20,7 +20,7 @@ __all__ = ['SDSS', 'SDSSClass'] __doctest_skip__ = ['SDSSClass.*'] - +# Imaging pixelscale 0.396 arcsec sdss_arcsec_per_pixel = 0.396 * u.arcsec / u.pixel diff --git a/docs/sdss/sdss.rst b/docs/sdss/sdss.rst index bcfcc760e9..bffbb5534b 100644 --- a/docs/sdss/sdss.rst +++ b/docs/sdss/sdss.rst @@ -4,6 +4,16 @@ SDSS Queries (`astroquery.sdss`) ******************************** +Default Data Release +==================== + +The default data release is set to Data Release 17 (DR17), which is +the final data release of the Sloan Digital Sky Survey IV. DR17 +contains new optical and infrared spectra from both Apache Point +Observatory and Las Campanas Observatory. Previously released +integral-field datacubes and maps, stellar library spectra, as well as +images, are also included in DR17. Users may select alternate DR's. + Getting started =============== From 5f60c09a9be2940fe5f9b46902c61606b3dfafe3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Brigitta=20Sip=C5=91cz?= Date: Sat, 10 Sep 2022 21:19:43 -0700 Subject: [PATCH 3/3] Minor updates for DR17 --- CHANGES.rst | 4 ++++ astroquery/sdss/tests/test_sdss_remote.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index ed06c39513..423a89e520 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -133,6 +133,10 @@ sdss - ``query_region()`` now does a cone search around the specified coordinates. [#2477] +- The default data release has been changed to DR17. [#2478] + + + Infrastructure, Utility and Other Changes and Additions ------------------------------------------------------- diff --git a/astroquery/sdss/tests/test_sdss_remote.py b/astroquery/sdss/tests/test_sdss_remote.py index 8e066facef..eb190cbdb6 100644 --- a/astroquery/sdss/tests/test_sdss_remote.py +++ b/astroquery/sdss/tests/test_sdss_remote.py @@ -202,4 +202,4 @@ def test_large_crossid(self, large_results): # Regression test for #589 results = sdss.SDSS.query_crossid(large_results) - assert len(results) == 894 + assert len(results) == 845