@@ -23,7 +23,6 @@ All region queries require a ``catalog`` keyword argument, which is the name of
23
23
the catalog in the IRSA database, on which the query must be performed. To take
24
24
a look at all the available catalogs:
25
25
26
- .. code-block :: python
27
26
.. doctest-remote-data ::
28
27
29
28
>>> from astroquery.irsa import Irsa
@@ -41,7 +40,6 @@ a look at all the available catalogs:
41
40
This returns a dictionary of catalog names with their description. If you would
42
41
rather just print out this information:
43
42
44
- .. code-block :: python
45
43
.. doctest-remote-data ::
46
44
47
45
>>> from astroquery.irsa import Irsa
@@ -64,7 +62,6 @@ missing, it defaults to a value of 10 arcsec. The radius may be specified in
64
62
any appropriate unit using a `~astropy.units.Quantity ` object. It may also be
65
63
entered as a string that is parsable by `~astropy.coordinates.Angle `.
66
64
67
- .. code-block :: python
68
65
.. doctest-remote-data ::
69
66
70
67
>>> from astroquery.irsa import Irsa
@@ -89,7 +86,6 @@ name. The coordinates can be specified using the appropriate
89
86
`astropy.coordinates ` object. ICRS coordinates may also be entered directly as
90
87
a string, as specified by `astropy.coordinates `:
91
88
92
- .. code-block :: python
93
89
.. doctest-remote-data ::
94
90
95
91
>>> from astroquery.irsa import Irsa
@@ -120,7 +116,6 @@ region is required. The width may be specified in the same way as the radius
120
116
for cone search queries, above - so it may be set using the appropriate
121
117
`~astropy.units.Quantity ` object or a string parsable by `~astropy.coordinates.Angle `.
122
118
123
- .. code-block :: python
124
119
.. doctest-remote-data ::
125
120
126
121
>>> from astroquery.irsa import Irsa
@@ -152,7 +147,6 @@ the coordinates is also available - Coordinates may also be entered as a list of
152
147
tuples, each tuple containing the ra and dec values in degrees. Each of these
153
148
options is illustrated below:
154
149
155
- .. code-block :: python
156
150
.. doctest-remote-data ::
157
151
158
152
>>> from astroquery.irsa import Irsa
@@ -177,7 +171,6 @@ options is illustrated below:
177
171
Another way to specify the polygon is directly as a list of tuples - each tuple
178
172
is an ra, dec pair expressed in degrees:
179
173
180
- .. code-block :: python
181
174
.. doctest-remote-data ::
182
175
183
176
>>> from astroquery.irsa import Irsa
@@ -209,7 +202,6 @@ An example where the AllWISE Source Catalog needs to be queried around the
209
202
star HIP 12 with just the ra, dec and w1mpro columns would be:
210
203
211
204
212
- .. code-block :: python
213
205
.. doctest-remote-data ::
214
206
215
207
>>> from astroquery.irsa import Irsa
@@ -235,7 +227,6 @@ not only the display of columns, but also the precision that is output when the
235
227
is written in ``ascii.ipac `` or ``ascii.csv `` formats. The ``.format `` attribute of
236
228
individual columns may be set to increase the precision.
237
229
238
- .. code-block :: python
239
230
.. doctest-remote-data ::
240
231
241
232
>>> from astroquery.irsa import Irsa
@@ -256,7 +247,6 @@ By default the maximum number of rows that is fetched is set to 500. However,
256
247
this option may be changed by changing the astroquery configuration file. To
257
248
change the setting only for the ongoing python session, you could also do:
258
249
259
- .. code-block :: python
260
250
261
251
>>> from astroquery.irsa import Irsa
262
252
>>> Irsa.ROW_LIMIT = 1000 # 1000 is the new value for row limit here.
0 commit comments