Skip to content

Commit 9472e6a

Browse files
committed
removing python blocks
1 parent b4ce0ff commit 9472e6a

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

docs/sdss/sdss.rst

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,16 @@ arcsecond radius for optical counterparts in SDSS. Note use of the keyword
1313
argument spectro, which requires matches to have spectroscopy, not just
1414
photometry:
1515

16-
.. code-block:: python
1716
.. doctest-remote-data::
1817

1918
>>> from astroquery.sdss import SDSS
2019
>>> from astropy import coordinates as coords
2120
>>> pos = coords.SkyCoord('0h8m05.63s +14d50m23.3s', frame='icrs')
2221
>>> xid = SDSS.query_region(pos, spectro=True)
2322
>>> print(xid)
24-
ra dec objid ... run2d instrument
25-
---------------- ---------------- ------------------- ... ----- ----------
26-
2.02344596573482 14.8398237551311 1237652943176138868 ... 26 SDSS
23+
ra dec ... specobjid run2d
24+
---------------- ---------------- ... ------------------ -----
25+
2.02344596573482 14.8398237551311 ... 845594848269461504 26
2726

2827
The result is an astropy.Table.
2928

@@ -32,7 +31,6 @@ Downloading data
3231
If we'd like to download spectra and/or images for our match, we have all
3332
the information we need in the elements of "xid" from the above example.
3433

35-
.. code-block:: python
3634
.. doctest-remote-data::
3735

3836
>>> sp = SDSS.get_spectra(matches=xid)
@@ -58,7 +56,6 @@ Spectral templates
5856
It is also possible to download spectral templates from SDSS. To see what is
5957
available, do
6058

61-
.. code-block:: python
6259
.. doctest-remote-data::
6360

6461
>>> from astroquery.sdss import SDSS

0 commit comments

Comments
 (0)