@@ -329,8 +329,8 @@ As we have seen before, we can display a truncated version of table
329329.. code-block :: python
330330
331331 >> > print (eph)
332- targetname datetime_str ... PABLon PABLat
333- -- - -- - ... deg deg
332+ targetname datetime_str ... PABLon PABLat
333+ -- - -- - ... deg deg
334334 -------------------------- ---------------- - ... -------- --------
335335 3552 Don Quixote (1983 SA ) 2010 - Jan- 01 00 :00 ... 8.0371 18.9349
336336 3552 Don Quixote (1983 SA ) 2011 - Jan- 01 00 :00 ... 85.4082 34.5611
@@ -354,6 +354,7 @@ Columns
354354-------
355355
356356We can get at list of all the columns in this table with:
357+
357358.. code-block :: python
358359
359360 >> > print (eph.columns)
@@ -362,12 +363,11 @@ We can get at list of all the columns in this table with:
362363 We can address each column individually by indexing it using its name as
363364provided in this list. For instance, we can get all RAs for Don Quixote by using
364365
365-
366366.. code-block :: python
367367
368368 >> > print (eph[' RA' ])
369- RA
370- deg
369+ RA
370+ deg
371371 -------- -
372372 345.50204
373373 78.77158
@@ -385,9 +385,10 @@ This column is formatted like the entire table; it has a column name and a unit.
385385We can select several columns at a time, for instance RA and DEC for each epoch
386386
387387.. code-block :: python
388+
388389 >> > print (eph[' datetime_str' , ' RA' , ' DEC' ])
389- datetime_str RA DEC
390- -- - deg deg
390+ datetime_str RA DEC
391+ -- - deg deg
391392 ---------------- - -------- - --------
392393 2010 - Jan- 01 00 :00 345.50204 13.43621
393394 2011 - Jan- 01 00 :00 78.77158 61.48831
@@ -409,7 +410,7 @@ in quadrature:
409410
410411 >> > import numpy as np
411412 >> > print (np.sqrt(eph[' RA_rate' ]** 2 + eph[' DEC_rate' ]** 2 ))
412- dRA* cosD
413+ dRA* cosD
413414 ------------------
414415 86.18728612153883
415416 26.337249029653798
@@ -437,7 +438,7 @@ h`` - arcseconds per hour:
437438.. code-block :: python
438439
439440 >> > print (eph[' RA_rate' ])
440- RA_rate
441+ RA_rate
441442 arcsec / h
442443 ----------
443444 72.35438
@@ -459,8 +460,8 @@ same dimensions. For instance, we can turn ``RA_rate`` into ``arcsec / s``:
459460
460461 >> > eph[' RA_rate' ].convert_unit_to(' arcsec/s' )
461462 >> > print (eph[' RA_rate' ])
462- RA_rate
463- arcsec / s
463+ RA_rate
464+ arcsec / s
464465 ----------------------
465466 0.02009843888888889
466467 - 0.0066177499999999995
0 commit comments