Skip to content
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
2 changes: 1 addition & 1 deletion astroquery/imcce/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class Conf(_config.ConfigNamespace):
'http://vo.imcce.fr/webservices/miriade/ephemcc_query.php',
'IMCCE/Miriade.ephemcc base server')
skybot_server = _config.ConfigItem(
['http://vo.imcce.fr/webservices/skybot/skybotconesearch_query.php'],
['https://ssp.imcce.fr/webservices/skybot/api/conesearch.php'],
'SkyBoT')

timeout = _config.ConfigItem(
Expand Down
4 changes: 2 additions & 2 deletions astroquery/imcce/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ def uri(self):
>>> skybot = Skybot()
>>> obj = skybot.cone_search(field, 0.1*u.deg, epoch) # doctest: +SKIP
>>> skybot.uri # doctest: +SKIP
'http://vo.imcce.fr/webservices/skybot/skybotconesearch_query.php?-ra=1.0&-dec=1.0&-rd=0.1&-ep=2458633.404166667&-loc=500&-filter=120.0&-objFilter=111&-refsys=EQJ2000&-output=all&-mime=text'
'https://ssp.imcce.fr/webservices/skybot/skybotconesearch_query.php?-ra=1.0&-dec=1.0&-rd=0.1&-ep=2458633.404166667&-loc=500&-filter=120.0&-objFilter=111&-refsys=EQJ2000&-output=all&-mime=text'
"""
return self._uri

Expand All @@ -437,7 +437,7 @@ def cone_search_async(self,
cache=True):
"""
This method queries the IMCCE
`SkyBoT <http://vo.imcce.fr/webservices/skybot/?conesearch>`_
`SkyBoT <https://ssp.imcce.fr/webservices/skybot/api/conesearch>`_
cone search service and produces a `~astropy.table.QTable` object
containing all Solar System bodies that might be in the cone
defined by the cone center coordinates and epoch provided.
Expand Down
Loading