Skip to content

Commit b91e1dc

Browse files
committed
DOC: updating the docs with the new columns
1 parent 2ed5785 commit b91e1dc

File tree

1 file changed

+64
-55
lines changed

1 file changed

+64
-55
lines changed

docs/imcce/imcce.rst

Lines changed: 64 additions & 55 deletions
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,17 @@ looks like this:
3838
>>> field = SkyCoord(0*u.deg, 0*u.deg)
3939
>>> epoch = Time('2019-05-29 21:42', format='iso')
4040
>>> results = Skybot.cone_search(field, 5*u.arcmin, epoch)
41-
>>> results.pprint(max_width=80) # doctest: +IGNORE_OUTPUT
42-
Number Name RA ... vy vz epoch
43-
deg ... AU / d AU / d d
44-
------ ---------- -------------------- ... ----------- ----------- ---------
45-
-- 2012 BO42 0.019414999999999998 ... 0.009345668 0.005003011 2458630.0
46-
516566 2007 DH36 0.005546249999999999 ... 0.00855646 0.002875928 2458630.0
47-
-- 2019 SS82 359.9931945833333 ... 0.009809784 0.004636687 2458630.0
48-
163149 2002 CV106 359.98692374999996 ... 0.009078104 0.00267749 2458630.0
41+
>>> results["Number", "Name", "RA", "DEC", "Type"]
42+
<QTable length=5>
43+
Number Name RA DEC Type
44+
deg deg
45+
int64 str32 float64 float64 str24
46+
------ ---------- -------------------- --------------------- ---------
47+
-- 2012 BO42 0.019139999999999997 -0.01297 MB>Middle
48+
516566 2007 DH36 0.005300833333333333 0.02301111111111111 MB>Inner
49+
659626 2019 SS82 359.99291625 -0.028969444444444443 MB>Inner
50+
-- 2019 SH196 359.96022083333327 -0.030131944444444444 MB>Inner
51+
163149 2002 CV106 359.9866720833333 -0.06932138888888889 MB>Inner
4952

5053
`~astroquery.imcce.SkybotClass.cone_search` produces a
5154
`~astropy.table.QTable` object with the properties of all Solar System
@@ -84,53 +87,59 @@ The resulting `~astropy.table.QTable` contains all available
8487
information provided by SkyBoT with corresponding units. The following
8588
properties are obtained:
8689

87-
+------------------+-----------------------------------------------+
88-
| Column Name | Definition |
89-
+==================+===============================================+
90-
| ``'Number'`` | Target Number (``-1`` if none provided, int) |
91-
+------------------+-----------------------------------------------+
92-
| ``'Name'`` | Target Name (str) |
93-
+------------------+-----------------------------------------------+
94-
| ``'RA'`` | Target RA (J2000, deg, float) |
95-
+------------------+-----------------------------------------------+
96-
| ``'DEC'`` | Target declination (J2000, deg, float) |
97-
+------------------+-----------------------------------------------+
98-
| ``'Type'`` | Target dynamical/physical type (str) |
99-
+------------------+-----------------------------------------------+
100-
| ``'V'`` | Target apparent brightness (V-band, mag, |
101-
| | float) |
102-
+------------------+-----------------------------------------------+
103-
| ``'posunc'`` | Positional uncertainty (arcsec, float) |
104-
+------------------+-----------------------------------------------+
105-
| ``'centerdist'`` | Angular distance of target from cone center |
106-
| | (arcsec, float) |
107-
+------------------+-----------------------------------------------+
108-
| ``'RA_rate'`` | RA rate of motion (arcsec/hr, float) |
109-
+------------------+-----------------------------------------------+
110-
| ``'DEC_rate'`` | Declination rate of motion (arcsec/hr, float) |
111-
+------------------+-----------------------------------------------+
112-
| ``'geodist'`` | Geocentric distance of target (au, float) |
113-
+------------------+-----------------------------------------------+
114-
| ``'heliodist'`` | Heliocentric distance of target (au, float) |
115-
+------------------+-----------------------------------------------+
116-
| ``'alpha'`` | Solar phase angle (deg, float) |
117-
+------------------+-----------------------------------------------+
118-
| ``'elong'`` | Solar elongation angle (deg, float) |
119-
+------------------+-----------------------------------------------+
120-
| ``'x'`` | Target equatorial vector x (au, float) |
121-
+------------------+-----------------------------------------------+
122-
| ``'y'`` | Target equatorial vector y (au, float) |
123-
+------------------+-----------------------------------------------+
124-
| ``'z'`` | Target equatorial vector z (au, float) |
125-
+------------------+-----------------------------------------------+
126-
| ``'vx'`` | Target velocity vector x (au/d, float) |
127-
+------------------+-----------------------------------------------+
128-
| ``'vy'`` | Target velocity vector y (au/d, float) |
129-
+------------------+-----------------------------------------------+
130-
| ``'vz'`` | Target velocity vector z (au/d, float) |
131-
+------------------+-----------------------------------------------+
132-
| ``'epoch'`` | Ephemerides epoch (JD, float) |
133-
+------------------+-----------------------------------------------+
90+
+--------------------+-----------------------------------------------+
91+
| Column Name | Definition |
92+
+====================+===============================================+
93+
| ``'Number'`` | Target Number (``-1`` if none provided, int) |
94+
+--------------------+-----------------------------------------------+
95+
| ``'Name'`` | Target Name (str) |
96+
+--------------------+-----------------------------------------------+
97+
| ``'RA'`` | Target RA (J2000, deg, float) |
98+
+--------------------+-----------------------------------------------+
99+
| ``'DEC'`` | Target declination (J2000, deg, float) |
100+
+--------------------+-----------------------------------------------+
101+
| ``'Type'`` | Target dynamical/physical type (str) |
102+
+--------------------+-----------------------------------------------+
103+
| ``'V'`` | Target apparent brightness (V-band, mag, |
104+
| | float) |
105+
+--------------------+-----------------------------------------------+
106+
| ``'posunc'`` | Positional uncertainty (arcsec, float) |
107+
+--------------------+-----------------------------------------------+
108+
| ``'centerdist'`` | Angular distance of target from cone center |
109+
| | (arcsec, float) |
110+
+--------------------+-----------------------------------------------+
111+
| ``'RA_rate'`` | RA rate of motion (arcsec/hr, float) |
112+
+--------------------+-----------------------------------------------+
113+
| ``'DEC_rate'`` | Declination rate of motion (arcsec/hr, float) |
114+
+--------------------+-----------------------------------------------+
115+
| ``'geodist'`` | Geocentric distance of target (au, float) |
116+
+--------------------+-----------------------------------------------+
117+
| ``'heliodist'`` | Heliocentric distance of target (au, float) |
118+
+--------------------+-----------------------------------------------+
119+
| ``'alpha'`` | Solar phase angle (deg, float) |
120+
+--------------------+-----------------------------------------------+
121+
| ``'elong'`` | Solar elongation angle (deg, float) |
122+
+--------------------+-----------------------------------------------+
123+
| ``'x'`` | Target equatorial vector x (au, float) |
124+
+--------------------+-----------------------------------------------+
125+
| ``'y'`` | Target equatorial vector y (au, float) |
126+
+--------------------+-----------------------------------------------+
127+
| ``'z'`` | Target equatorial vector z (au, float) |
128+
+--------------------+-----------------------------------------------+
129+
| ``'vx'`` | Target velocity vector x (au/d, float) |
130+
+--------------------+-----------------------------------------------+
131+
| ``'vy'`` | Target velocity vector y (au/d, float) |
132+
+--------------------+-----------------------------------------------+
133+
| ``'vz'`` | Target velocity vector z (au/d, float) |
134+
+--------------------+-----------------------------------------------+
135+
| ``'epoch'`` | Ephemerides epoch (JD, float) |
136+
+--------------------+-----------------------------------------------+
137+
| ``'_raj2000'`` | Astrometric J2000 right ascension |
138+
+--------------------+-----------------------------------------------+
139+
| ``'_decj2000'`` | Astrometric J2000 declination |
140+
+--------------------+-----------------------------------------------+
141+
| ``'externallink'`` | External link to the target |
142+
+--------------------+-----------------------------------------------+
134143

135144

136145
Miriade - Ephemeris Service

0 commit comments

Comments
 (0)