Skip to content

Commit 0c06dd5

Browse files
authored
Merge pull request #2744 from bsipocz/links_fix
MAINT: Update service links, and fix broken ones in docs
2 parents 35b64a9 + 3f8e5d1 commit 0c06dd5

File tree

19 files changed

+107
-115
lines changed

19 files changed

+107
-115
lines changed

CHANGES.rst

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -142,11 +142,11 @@ mast
142142
- Expanding ``Cutouts`` functionality to support making Hubble Advanced Product (HAP)
143143
cutouts via HAPCut. [#2613]
144144

145-
- Expanding ``Cutouts`` functionality to support TICA HLSPs now available through
145+
- Expanding ``Cutouts`` functionality to support TICA HLSPs now available through
146146
``TesscutClass``. [##2668]
147147

148148
- Resolved issue making PANSTARRS catalog queries when columns and sorting is specified. [#2727]
149-
149+
150150
nist
151151
^^^^
152152

@@ -1418,9 +1418,7 @@ Infrastructure, Utility and Other Changes and Additions
14181418
- ESO archive now supports HARPS/FEROS reprocessed data queries [#412]
14191419
- IPython notebook checker in the ESO tool is now compatible with regular
14201420
python [#413]
1421-
- Added new tool: ALMA archive query tool
1422-
http://astroquery.readthedocs.io/en/latest/alma/alma.html
1423-
[#411]
1421+
- Added new tool: ALMA archive query tool. [#411]
14241422
- setup script and installation fixes
14251423

14261424
0.2 (2014-08-17)

LICENSE.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2011-2022 Astroquery Developers
1+
Copyright (c) 2011-2023 Astroquery Developers
22
All rights reserved.
33

44
Redistribution and use in source and binary forms, with or without modification,

astroquery/cosmosim/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
Access to all cosmological simulations stored in the CosmoSim database,
77
via the uws service.
88
9-
https://www.cosmosim.org/uws/query
9+
https://www.cosmosim.org/query
1010
1111
:Author: Austen M. Groener <[email protected]>
1212
"""
@@ -20,7 +20,7 @@ class Conf(_config.ConfigNamespace):
2020
"""
2121

2222
query_url = _config.ConfigItem(
23-
['https://www.cosmosim.org/uws/query'],
23+
['https://www.cosmosim.org/query/'],
2424
'CosmoSim UWS query URL.')
2525
schema_url = _config.ConfigItem(
2626
['https://www.cosmosim.org/query/account/databases/json'],

astroquery/ipac/ned/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class Conf(_config.ConfigNamespace):
3232
Configuration parameters for `astroquery.ipac.ned`.
3333
"""
3434
server = _config.ConfigItem(
35-
['http://ned.ipac.caltech.edu/cgi-bin/'],
35+
['https://ned.ipac.caltech.edu/cgi-bin/'],
3636
'Name of the NED server to use.')
3737

3838
timeout = _config.ConfigItem(

astroquery/ipac/ned/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -505,7 +505,7 @@ def _extract_image_urls(self, html_in, *, file_format='fits'):
505505
Other options available: 'author-ascii', 'NED-ascii', 'VO-table'.
506506
507507
"""
508-
base_url = 'http://ned.ipac.caltech.edu'
508+
base_url = 'https://ned.ipac.caltech.edu'
509509

510510
extensions = {'fits': 'fits.gz',
511511
'author-ascii': 'txt',

astroquery/jplhorizons/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class Conf(_config.ConfigNamespace):
2020
['https://ssd.jpl.nasa.gov/api/horizons.api', ],
2121
'JPL Horizons')
2222

23-
# implement later: sbdb_server = 'http://ssd-api.jpl.nasa.gov/sbdb.api'
23+
# implement later: sbdb_server = 'https://ssd-api.jpl.nasa.gov/sbdb.api'
2424

2525
timeout = _config.ConfigItem(
2626
30,
@@ -29,7 +29,7 @@ class Conf(_config.ConfigNamespace):
2929
# JPL Horizons settings
3030

3131
# quantities queried in ephemerides query (see
32-
# http://ssd.jpl.nasa.gov/?horizons_doc#table_quantities)
32+
# https://ssd.jpl.nasa.gov/?horizons_doc#table_quantities)
3333
# default: all quantities
3434
eph_quantities = ('1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,'
3535
'21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,'

astroquery/nasa_ads/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ def _get_token(self):
123123
return self.TOKEN
124124
except OSError:
125125
raise RuntimeError('No API token found! Get yours from: '
126-
'https://ui.adsabs.harvard.edu/#user/settings/token '
126+
'https://ui.adsabs.harvard.edu/user/settings/token '
127127
'and store it in the API_DEV_KEY environment variable.')
128128

129129

astroquery/sdss/core.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def query_crossid_async(self, coordinates, *, radius=5. * u.arcsec, timeout=TIME
6868
6969
Note that there is a server-side limit of 3 arcmin on ``radius``.
7070
71-
.. _`primary object`: https://www.sdss.org/dr17/help/glossary/#surveyprimary
71+
.. _`primary object`: https://www.sdss4.org/dr17/help/glossary/#surveyprimary
7272
7373
Parameters
7474
----------
@@ -948,7 +948,7 @@ def get_spectral_template_async(self, kind='qso', *, timeout=TIMEOUT,
948948
"""
949949
Download spectral templates from SDSS DR-2.
950950
951-
Location: http://www.sdss.org/dr7/algorithms/spectemplates/
951+
Location: http://classic.sdss.org/dr7/algorithms/spectemplates/
952952
953953
There 32 spectral templates available from DR-2, from stellar spectra,
954954
to galaxies, to quasars. To see the available templates, do:

astroquery/vizier/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
-----------------
55
66
This package is for querying the VizieR service, primarily hosted at:
7-
http://vizier.u-strasbg.fr
7+
https://vizier.cds.unistra.fr
88
99
Note: If the access to catalogues with VizieR was helpful for your research
1010
work, the following acknowledgment would be appreciated::

astroquery/vizier/core.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ def __init__(self, *, columns=["*"], column_filters={}, catalog=None,
6060
"Unified Content Description" column descriptions. Specifying
6161
these will select only catalogs that have columns matching the
6262
column descriptions defined on the Vizier web pages.
63-
See http://vizier.u-strasbg.fr/vizier/vizHelp/1.htx#ucd and
64-
http://cds.u-strasbg.fr/w/doc/UCD/
63+
See https://vizier.cds.unistra.fr/vizier/vizHelp/1.htx#ucd and
64+
https://vizier.cds.unistra.fr/vizier/doc/UCD/
6565
vizier_server : string
6666
Name of the VizieR mirror to use.
6767
(This parameter's default is set from a configuration object.)
@@ -125,7 +125,7 @@ def catalog(self, values):
125125
@property
126126
def ucd(self):
127127
"""
128-
UCD criteria: see http://vizier.u-strasbg.fr/vizier/vizHelp/1.htx#ucd
128+
UCD criteria: see https://vizier.cds.unistra.fr/vizier/vizHelp/1.htx#ucd
129129
130130
Examples
131131
--------
@@ -141,7 +141,7 @@ def _server_to_url(self, return_type='votable'):
141141
"""
142142
Not generally meant to be modified, but there are different valid
143143
return types supported by Vizier, listed here:
144-
http://vizier.u-strasbg.fr/doc/asu-summary.htx
144+
https://vizier.cds.unistra.fr/doc/asu-summary.htx
145145
146146
HTML: VizieR
147147
votable: votable
@@ -163,7 +163,7 @@ def _server_to_url(self, return_type='votable'):
163163
raise TypeError("asu-txt is not and cannot be supported: the "
164164
"returned tables are not and cannot be made "
165165
"parseable.")
166-
return "http://" + self.VIZIER_SERVER + "/viz-bin/" + return_type
166+
return "https://" + self.VIZIER_SERVER + "/viz-bin/" + return_type
167167

168168
@property
169169
def keywords(self):
@@ -187,7 +187,7 @@ def find_catalogs(self, keywords, *, include_obsolete=False, verbose=False,
187187
----------
188188
keywords : list or string
189189
List of keywords, or space-separated set of keywords.
190-
From `Vizier <http://vizier.u-strasbg.fr/doc/asu-summary.htx>`_:
190+
From `Vizier <https://vizier.cds.unistra.fr/doc/asu-summary.htx>`_:
191191
"names or words of title of catalog. The words are and'ed, i.e.
192192
only the catalogues characterized by all the words are selected."
193193
include_obsolete : bool, optional
@@ -464,7 +464,7 @@ def query_constraints_async(self, *, catalog=None, return_type='votable',
464464
keyword/value pairs.
465465
466466
See `the vizier constraints page
467-
<http://vizier.cfa.harvard.edu/vizier/vizHelp/cst.htx>`_ for details.
467+
<https://vizier.cds.unistra.fr/vizier/vizHelp/syntax.htx>`_ for details.
468468
469469
Parameters
470470
----------

0 commit comments

Comments
 (0)