File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -218,6 +218,26 @@ star HIP 12 with just the ra, dec and w1mpro columns would be:
218
218
--------- ----------- ------
219
219
0.0407905 -35.9602605 4.837
220
220
221
+
222
+ You can use the `~astroquery.ipac.irsa.IrsaClass.list_columns ` method to
223
+ list all available columns for a given catalog. This method behaves
224
+ similarly to what we saw above with ``list_catalogs `` and either returns
225
+ pairs of column names and column descriptions; or a full list of information
226
+ available about the columns in a `~astropy.table.Table `.
227
+
228
+ .. doctest-remote-data ::
229
+
230
+ >>> from astroquery.ipac.irsa import Irsa
231
+ >>> Irsa.list_columns(catalog = " allwise_p3as_psd" )
232
+ {'designation': 'WISE source designation',
233
+ 'ra': 'right ascension (J2000)',
234
+ 'dec': 'declination (J2000)',
235
+ 'sigra': 'uncertainty in RA',
236
+ 'sigdec': 'uncertainty in DEC',
237
+ ...
238
+ 'htm20': 'HTM20 spatial index key'}
239
+
240
+
221
241
Async queries
222
242
--------------
223
243
You can’t perform that action at this time.
0 commit comments