@@ -39,12 +39,14 @@ class hips2fitsClass(BaseQuery):
39
39
40
40
This package implements two methods:
41
41
42
- * :meth:`~astroquery.hips2fits.hips2fitsClass.query_with_wcs` extracting a FITS image from a HiPS and an astropy
43
- ``wcs.WCS``.
44
- See `here <http://aladin.unistra.fr/hips/list>`_ all the valid HiPS names hosted in CDS.
45
- * :meth:`~astroquery.hips2fits.hips2fitsClass.query` extracting a FITS image from a HiPS given the output image
46
- pixel size, the center of projection, the type of projection and the field of view.
47
- See `here <http://aladin.unistra.fr/hips/list>`_ all the valid HiPS names hosted in CDS.
42
+ * `~astroquery.hips2fits.hips2fitsClass.query_with_wcs` extracting a FITS image from a HiPS and an
43
+ astropy `~astropy.wcs.WCS`.
44
+ See `here <http://aladin.unistra.fr/hips/list>`_ all the valid HiPS names hosted in CDS.
45
+
46
+ * `~astroquery.hips2fits.hips2fitsClass.query` extracting a FITS image from a HiPS given the output
47
+ 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.
49
+
48
50
49
51
"""
50
52
server = conf .server
@@ -88,7 +90,7 @@ def query_with_wcs(self, hips, wcs, format="fits", min_cut=0.5, max_cut=99.5, st
88
90
cmap : `~matplotlib.colors.Colormap` or str, optional
89
91
Name of the color map.
90
92
Only applicable to jpg/png output formats.
91
- Any ` colormap supported by Matplotlib can be specified.
93
+ Any colormap supported by Matplotlib can be specified.
92
94
Default value is Greys_r (grayscale)
93
95
get_query_payload : bool, optional
94
96
If True, returns a dictionary of the query payload instead of the parsed response.
@@ -134,6 +136,7 @@ def query_with_wcs(self, hips, wcs, format="fits", min_cut=0.5, max_cut=99.5, st
134
136
... )
135
137
>>> im = plt.imshow(result)
136
138
>>> plt.show(im)
139
+
137
140
"""
138
141
response = self .query_with_wcs_async (get_query_payload , hips = hips , wcs = wcs , format = format ,
139
142
min_cut = min_cut , max_cut = max_cut , stretch = stretch , cmap = cmap )
@@ -227,7 +230,7 @@ def query(self, hips, width, height, projection, ra, dec, fov, coordsys="icrs",
227
230
cmap : `~matplotlib.colors.Colormap` or str, optional
228
231
Name of the color map.
229
232
Only applicable to jpg/png output formats.
230
- Any ` colormap supported by Matplotlib can be specified.
233
+ Any colormap supported by Matplotlib can be specified.
231
234
Default value is Greys_r (grayscale)
232
235
get_query_payload : bool, optional
233
236
If True, returns a dictionary of the query payload instead of the parsed response.
0 commit comments