2626@async_to_sync
2727class hips2fitsClass (BaseQuery ):
2828 """
29- Query the `CDS hips2fits service <http ://alasky.u-strasbg .fr/hips-image-services/hips2fits>`_
29+ Query the `CDS hips2fits service <https ://alasky.cds.unistra .fr/hips-image-services/hips2fits>`_
3030
31- The `CDS hips2fits service <http ://alasky.u-strasbg .fr/hips-image-services/hips2fits>`_ offers a way
31+ The `CDS hips2fits service <https ://alasky.cds.unistra .fr/hips-image-services/hips2fits>`_ offers a way
3232 to extract FITS images from HiPS sky maps. HiPS is an IVOA standard that combines individual images in
3333 order to produce a progressive hierarchical sky map describing the whole survey. Please refer to the
3434 `IVOA paper <http://www.ivoa.net/documents/HiPS/20170519/REC-HIPS-1.0-20170519.pdf>`_ for more info.
3535
3636 Given an astropy user-defined WCS with an HiPS name
37- (see the list of valid HiPS names hosted in CDS `here <http ://aladin.unistra.fr/hips/list>`_),
37+ (see the list of valid HiPS names hosted in CDS `here <https ://aladin.cds .unistra.fr/hips/list>`_),
3838 hips2fits will return you the corresponding FITS image (JPG/PNG output formats are also implemented).
3939
4040 This package implements two methods:
4141
4242 * `~astroquery.hips2fits.hips2fitsClass.query_with_wcs` extracting a FITS image from a HiPS and an
4343 astropy `~astropy.wcs.WCS`.
44- See `here <http ://aladin.unistra.fr/hips/list>`_ all the valid HiPS names hosted in CDS.
44+ See `here <https ://aladin.cds .unistra.fr/hips/list>`_ all the valid HiPS names hosted in CDS.
4545
4646 * `~astroquery.hips2fits.hips2fitsClass.query` extracting a FITS image from a HiPS given the output
4747 image pixel size, the center of projection, the type of projection and the field of view.
48- See `here <http ://aladin.unistra.fr/hips/list>`_ all the valid HiPS names hosted in CDS.
48+ See `here <https ://aladin.cds .unistra.fr/hips/list>`_ all the valid HiPS names hosted in CDS.
4949
5050
5151 """
@@ -58,15 +58,15 @@ def __init__(self, *args):
5858 def query_with_wcs (self , hips , wcs , * , format = "fits" , min_cut = 0.5 , max_cut = 99.5 , stretch = "linear" ,
5959 cmap = "Greys_r" , get_query_payload = False , verbose = False ):
6060 """
61- Query the `CDS hips2fits service <http ://alasky.u-strasbg .fr/hips-image-services/hips2fits>`_ with an
61+ Query the `CDS hips2fits service <https ://alasky.cds.unistra .fr/hips-image-services/hips2fits>`_ with an
6262 astropy WCS.
6363
6464 Parameters
6565 ----------
6666 hips : str
6767 ID or keyword identifying the HiPS to use.
6868 If multiple HiPS surveys match, one is chosen randomly.
69- See the list of valid HiPS ids hosted by the CDS `here <http ://aladin.unistra.fr/hips/list>`_.
69+ See the list of valid HiPS ids hosted by the CDS `here <https ://aladin.cds .unistra.fr/hips/list>`_.
7070 wcs : `~astropy.wcs.WCS`
7171 An astropy WCS defining the astrometry you wish.
7272 Alternatively, you can pass lon, lat, fov, coordsys keywords.
@@ -172,7 +172,7 @@ def query(self, hips, width, height, projection, ra, dec, fov, *,
172172 min_cut = 0.5 , max_cut = 99.5 , stretch = "linear" , cmap = "Greys_r" ,
173173 get_query_payload = False , verbose = False ):
174174 """
175- Query the `CDS hips2fits service <http ://alasky.u-strasbg .fr/hips-image-services/hips2fits>`_.
175+ Query the `CDS hips2fits service <https ://alasky.cds.unistra .fr/hips-image-services/hips2fits>`_.
176176
177177 If you have not any WCS, you can call this method by passing:
178178 * The width/height size of the output pixel image
@@ -188,7 +188,7 @@ def query(self, hips, width, height, projection, ra, dec, fov, *,
188188 hips : str
189189 ID or keyword identifying the HiPS to use.
190190 If multiple HiPS surveys match, one is chosen randomly.
191- See the list of valid HiPS ids hosted by the CDS `here <http ://aladin.unistra.fr/hips/list>`_.
191+ See the list of valid HiPS ids hosted by the CDS `here <https ://aladin.cds .unistra.fr/hips/list>`_.
192192 width : int
193193 Width in pixels of the output image.
194194 height : int
0 commit comments