Skip to content

Commit c13b5ca

Browse files
committed
MAINT: fixing broken and redirected links
1 parent e13430f commit c13b5ca

File tree

50 files changed

+135
-130
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+135
-130
lines changed

CHANGES.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1374,7 +1374,7 @@ casda
13741374
dace
13751375
^^^^
13761376

1377-
- Added DACE Service. See https://dace.unige.ch/ for details. [#1370]
1377+
- Added DACE Service. See DACE website for details. [#1370]
13781378

13791379
gemini
13801380
^^^^^^
@@ -1831,8 +1831,8 @@ Infrastructure, Utility and Other Changes and Additions
18311831
- Fix NASA ADS, which had an internal syntax error [#602]
18321832
- Bugfix in NRAO queries: telescope config was parsed incorrectly [#629]
18331833
- IBE - added new module for locating data from PTF, WISE, and 2MASS from IRSA.
1834-
See <http://irsa.ipac.caltech.edu/ibe/> for more information about IBE and
1835-
<http://www.ptf.caltech.edu/page/ibe> for more information about PTF survey
1834+
See <https://irsa.ipac.caltech.edu:443/ibe/> for more information about IBE and
1835+
<https://www.ptf.caltech.edu/page/ibe> for more information about PTF survey
18361836
data in particular. [#450]
18371837

18381838
0.3.0 (2015-10-26)

astroquery/alma/core.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ def get_enhanced_table(result):
217217
except ImportError:
218218
print(
219219
"Could not import astropy-regions, which is a requirement for get_enhanced_table function in alma."
220-
"Please refer to http://astropy-regions.readthedocs.io/en/latest/installation.html for how to install it.")
220+
"Please refer to https://astropy-regions.readthedocs.io/en/latest/installation.html for how to install it.")
221221
raise
222222

223223
def _parse_stcs_string(input):
@@ -1143,7 +1143,7 @@ def get_cycle0_uid_contents(self, uid):
11431143
List the file contents of a UID from Cycle 0. Will raise an error
11441144
if the UID is from cycle 1+, since those data have been released in
11451145
a different and more consistent format. See
1146-
https://almascience.org/documents-and-tools/cycle-2/ALMAQA2Productsv1.01.pdf
1146+
https://almascience.nrao.edu/documents-and-tools/cycle-2/ALMAQA2Productsv1.01.pdf
11471147
for details.
11481148
"""
11491149

astroquery/astrometry_net/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ def solve_from_image(self, image_file_path, *, force_image_upload=False,
346346
"""
347347
Plate solve from an image, either by uploading the image to
348348
astrometry.net or by finding sources locally using
349-
`photutils <https://photutils.rtfd.io>`_ and solving with source
349+
`photutils <https://photutils.readthedocs.io/en/stable/>`_ and solving with source
350350
locations.
351351
352352
Parameters

astroquery/gama/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
gama
44
----
55
Access to GAMA (Galaxy And Mass Assembly) data, via the DR2 SQL query form.
6-
http://www.gama-survey.org/dr3/query/
6+
https://www.gama-survey.org/dr3/query/
77
88
:author: James T. Allen <[email protected]>
99
"""

astroquery/hitran/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class Conf(_config.ConfigNamespace):
1313
"""
1414
Configuration parameters for `astroquery.hitran`.
1515
"""
16-
query_url = _config.ConfigItem('http://hitran.org/lbl/api',
16+
query_url = _config.ConfigItem('https://hitran.org/lbl/api',
1717
'HITRAN web interface URL.')
1818
timeout = _config.ConfigItem(60,
1919
'Time limit for connecting to HITRAN server.')

astroquery/hitran/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class HitranClass(BaseQuery):
1919
'mol_name': 4}
2020

2121
# Copied from the hapi.py code (Academic Free License)
22-
# http://hitran.org/static/hapi/hapi.py
22+
# https://hitran.org/static/hapi/hapi.py
2323
# M I id iso_name abundance mass mol_name
2424
ISO = {
2525
(1, 1): [1, 'H2(16O)', 0.997317, 18.010565, 'H2O'],

astroquery/imcce/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@ def _parse_result(self, response, *, verbose=None):
396396
@async_to_sync
397397
class SkybotClass(BaseQuery):
398398
"""A class for querying the `IMCCE SkyBoT
399-
<http://vo.imcce.fr/webservices/skybot>`_ service.
399+
<https://vo.imcce.fr/webservices/skybot/>`_ service.
400400
"""
401401
_uri = None # query uri
402402
_get_raw_response = False

astroquery/ipac/irsa/ibe/__init__.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,10 @@ class Conf(_config.ConfigNamespace):
2424

2525
dataset = _config.ConfigItem(
2626
'images',
27-
('Default data set. See, for example, '
28-
'https://irsa.ipac.caltech.edu/ibe/search/ptf for options.'))
27+
('Default data set.'))
2928
table = _config.ConfigItem(
3029
'level1',
31-
('Default table. See, for example, '
32-
'https://irsa.ipac.caltech.edu/ibe/search/ptf/images for options.'))
30+
('Default table.'))
3331
timeout = _config.ConfigItem(
3432
120,
3533
'Time limit for connecting to the IRSA server.')

astroquery/jplhorizons/core.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ def ephemerides_async(self, *, airmass_lessthan=99,
236236
The following tables list the values queried, their definitions, data
237237
types, units, and original Horizons designations (where available). For
238238
more information on the definitions of these quantities, please refer to
239-
the `Horizons User Manual <https://ssd.jpl.nasa.gov/?horizons_doc>`_.
239+
the `Horizons User Manual <https://ssd.jpl.nasa.gov/horizons/manual.html>`_.
240240
241241
+------------------+-----------------------------------------------+
242242
| Column Name | Definition |
@@ -561,12 +561,12 @@ def ephemerides_async(self, *, airmass_lessthan=99,
561561
corresponding to all the quantities to be queried from JPL Horizons
562562
using the coding according to the `JPL Horizons User Manual
563563
Definition of Observer Table Quantities
564-
<https://ssd.jpl.nasa.gov/?horizons_doc#table_quantities>`_;
564+
<https://ssd.jpl.nasa.gov/horizons/manual.html#obsquan>`_;
565565
default: all quantities
566566
567567
optional_settings: dict, optional
568568
key-value based dictionary to inject some additional optional settings
569-
See `Optional observer-table settings" <https://ssd.jpl.nasa.gov/horizons.cgi?s_tset=1>`_;
569+
See `Optional observer-table settings" <https://ssd.jpl.nasa.gov/horizons/app.html>`_;
570570
default: empty optional setting
571571
572572
get_query_payload : boolean, optional
@@ -744,7 +744,7 @@ def elements_async(self, *, get_query_payload=False,
744744
The following table lists the values queried, their definitions, data
745745
types, units, and original Horizons designations (where available). For
746746
more information on the definitions of these quantities, please refer to
747-
the `Horizons User Manual <https://ssd.jpl.nasa.gov/?horizons_doc>`_.
747+
the `Horizons User Manual <https://ssd.jpl.nasa.gov/horizons/manual.html>`_.
748748
749749
+------------------+-----------------------------------------------+
750750
| Column Name | Definition |
@@ -974,7 +974,7 @@ def vectors_async(self, *, get_query_payload=False,
974974
The following table lists the values queried, their definitions, data
975975
types, units, and original Horizons designations (where available). For
976976
more information on the definitions of these quantities, please refer to
977-
the `Horizons User Manual <https://ssd.jpl.nasa.gov/?horizons_doc>`_.
977+
the `Horizons User Manual <https://ssd.jpl.nasa.gov/horizons/manual.html>`_.
978978
979979
+------------------+-----------------------------------------------+
980980
| Column Name | Definition |

astroquery/jplsbdb/core.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class SBDBClass(BaseQuery):
1818

1919
"""
2020
A class for querying the `JPL Small-Body Database Browser
21-
<https://ssd.jpl.nasa.gov/sbdb.cgi>`_ service.
21+
<https://ssd.jpl.nasa.gov/tools/sbdb_lookup.html>`_ service.
2222
"""
2323

2424
# internal flag whether to return the raw reponse
@@ -46,7 +46,7 @@ def query_async(self, targetid, *, id_type='search',
4646
cache=True):
4747
"""
4848
This method queries the `JPL Small-Body Database Browser
49-
<https://ssd.jpl.nasa.gov/sbdb.cgi>`_ and returns an
49+
<https://ssd.jpl.nasa.gov/tools/sbdb_lookup.html>`_ and returns an
5050
`~collections.OrderedDict` with all queried information.
5151
5252
Parameters
@@ -94,7 +94,7 @@ def query_async(self, targetid, *, id_type='search',
9494
virtual_impactor: boolean, optional
9595
Provide information on a potential virtual impactor nature of the
9696
target from the `JPL Sentry system
97-
<http://cneos.jpl.nasa.gov/sentry/>`_. Default: ``False``
97+
<https://cneos.jpl.nasa.gov/sentry/>`_. Default: ``False``
9898
discovery: boolean, optional
9999
Output discovery circumstances and IAU name citation data.
100100
Default: ``False``

0 commit comments

Comments
 (0)