Skip to content

Commit 8c3e869

Browse files
authored
Merge pull request #2478 from jsobeck/main
Modifying astroquery/sdss package init file to use most current SDSS DR (as well as associated documentation)
2 parents 5c1eefc + 5f60c09 commit 8c3e869

File tree

5 files changed

+17
-3
lines changed

5 files changed

+17
-3
lines changed

CHANGES.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,10 @@ sdss
133133
- ``query_region()`` now does a cone search around the specified
134134
coordinates. [#2477]
135135

136+
- The default data release has been changed to DR17. [#2478]
137+
138+
139+
136140
Infrastructure, Utility and Other Changes and Additions
137141
-------------------------------------------------------
138142

astroquery/sdss/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class Conf(_config.ConfigNamespace):
1919
timeout = _config.ConfigItem(
2020
60,
2121
'Time limit for connecting to SDSS server.')
22-
default_release = _config.ConfigItem(14, 'Default SDSS data release.')
22+
default_release = _config.ConfigItem(17, 'Default SDSS data release.')
2323

2424

2525
conf = Conf()

astroquery/sdss/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
__all__ = ['SDSS', 'SDSSClass']
2121
__doctest_skip__ = ['SDSSClass.*']
2222

23-
23+
# Imaging pixelscale 0.396 arcsec
2424
sdss_arcsec_per_pixel = 0.396 * u.arcsec / u.pixel
2525

2626

astroquery/sdss/tests/test_sdss_remote.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,4 +202,4 @@ def test_large_crossid(self, large_results):
202202
# Regression test for #589
203203

204204
results = sdss.SDSS.query_crossid(large_results)
205-
assert len(results) == 894
205+
assert len(results) == 845

docs/sdss/sdss.rst

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@
44
SDSS Queries (`astroquery.sdss`)
55
********************************
66

7+
Default Data Release
8+
====================
9+
10+
The default data release is set to Data Release 17 (DR17), which is
11+
the final data release of the Sloan Digital Sky Survey IV. DR17
12+
contains new optical and infrared spectra from both Apache Point
13+
Observatory and Las Campanas Observatory. Previously released
14+
integral-field datacubes and maps, stellar library spectra, as well as
15+
images, are also included in DR17. Users may select alternate DR's.
16+
717
Getting started
818
===============
919

0 commit comments

Comments
 (0)