Skip to content

BUGFIX: http->https in skyview #3346

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jun 12, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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 @@ -108,6 +108,12 @@ query.py
Some corner cases where downloads were not properly continued have been
fixed. [#3232]

skyview
^^^^^^^

- Changed SkyView URL to https. [#3346]


utils
^^^^^

Expand Down
2 changes: 1 addition & 1 deletion astroquery/skyview/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class Conf(_config.ConfigNamespace):
Configuration parameters for `astroquery.skyview`.
"""
url = _config.ConfigItem(
'http://skyview.gsfc.nasa.gov/current/cgi/basicform.pl',
'https://skyview.gsfc.nasa.gov/current/cgi/basicform.pl',
'SkyView URL')


Expand Down
2 changes: 1 addition & 1 deletion astroquery/skyview/tests/data/survey_dict.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"HardX-ray": ["INT GAL 17-35 Flux", "INT GAL 17-60 Flux", "INT GAL 35-80 Flux", "INTEGRAL/SPI GC", "GRANAT/SIGMA", "RXTE Allsky 3-8keV Flux", "RXTE Allsky 3-20keV Flux", "RXTE Allsky 8-20keV Flux"],
"X-ray:SwiftBAT": ["BAT SNR 14-195", "BAT SNR 14-20", "BAT SNR 20-24", "BAT SNR 24-35", "BAT SNR 35-50", "BAT SNR 50-75", "BAT SNR 75-100", "BAT SNR 100-150", "BAT SNR 150-195"],
"UV": ["GALEX Near UV", "GALEX Far UV", "ROSAT WFC F1", "ROSAT WFC F2", "EUVE 83 A", "EUVE 171 A", "EUVE 405 A", "EUVE 555 A"],
"Optical:SDSS": ["SDSSg", "SDSSi", "SDSSr", "SDSSu", "SDSSz", "SDSSdr7g", "SDSSdr7i", "SDSSdr7r", "SDSSdr7u", "SDSSdr7z"],
"Optical:SDSS class=": ["SDSSg", "SDSSi", "SDSSr", "SDSSu", "SDSSz"],
"OtherOptical": ["TESS", "Mellinger Red", "Mellinger Green", "Mellinger Blue", "H-Alpha Comp", "SHASSA H", "SHASSA CC", "SHASSA C", "SHASSA Sm"],
"IR:IRAS": ["IRIS 12", "IRIS 25", "IRIS 60", "IRIS 100", "SFD100m", "SFD Dust Map", "IRAS 12 micron", "IRAS 25 micron", "IRAS 60 micron", "IRAS 100 micron"],
"IR:Planck": ["Planck 857 I", "Planck 545 I", "Planck 353 I", "Planck 353 Q", "Planck 353 U", "Planck 353 PI", "Planck 353 PA", "Planck 353 PI/I", "Planck 217 I", "Planck 217 Q", "Planck 217 U", "Planck 217 PI", "Planck 217 PA", "Planck 217 PI/I", "Planck 143 I", "Planck 143 Q", "Planck 143 U", "Planck 143 PI", "Planck 143 PA", "Planck 143 PI/I", "Planck 100 I", "Planck 100 Q", "Planck 100 U", "Planck 100 PI", "Planck 100 PA", "Planck 100 PI/I", "Planck 070 I", "Planck 070 Q", "Planck 070 U", "Planck 070 PI", "Planck 070 PA", "Planck 070 PI/I", "Planck 044 I", "Planck 044 Q", "Planck 044 U", "Planck 044 PI", "Planck 044 PA", "Planck 044 PI/I", "Planck 030 I", "Planck 030 Q", "Planck 030 U", "Planck 030 PI", "Planck 030 PA", "Planck 030 PI/I"],
Expand Down