Skip to content

Commit

Permalink
Document output schema of SkyBotEphemerisQueryTask.
Browse files Browse the repository at this point in the history
  • Loading branch information
kfindeisen committed May 16, 2022
1 parent 7aea17a commit dffc225
Showing 1 changed file with 43 additions and 3 deletions.
46 changes: 43 additions & 3 deletions python/lsst/ap/association/skyBotEphemerisQuery.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,9 +119,49 @@ def run(self, visitInfos, visit):
Results struct with components:
- ``ssObjects``: `pandas.DataFrame`
DataFrame containing name, RA/DEC position, position
uncertainty, and unique Id of on sky of Solar System Objects in
field of view as retrieved by SkyBot.
DataFrame containing Solar System Objects in field of view as
retrieved by SkyBot. The columns are as follows; for more
details see
https://ssp.imcce.fr/webservices/skybot/api/conesearch/#output-results
``"Num"``
object number (`int`, optional)
``"Name"``
object name (`str`)
``"RA(h)"``
RA in HMS (`str`)
``"DE(deg)"``
DEC in DMS (`str`)
``"Class"``
Minor planet classification (`str`)
``"Mv"``
visual magnitude (`float`)
``"Err(arcsec)"``
position error (`float`)
``"d(arcsec)"``
distance from exposure boresight (`float`)?
``"dRA(arcsec/h)"``
proper motion in RA (`float`)
``"dDEC(arcsec/h)"``
proper motion in DEC (`float`)
``"Dg(ua)"``
geocentric distance (`float`)
``"Dh(ua)"``
heliocentric distance (`float`)
``"Phase(deg)"``
phase angle (`float`)
``"SunElong(deg)"``
solar elongation (`float`)
``"ra"``
RA in decimal degrees (`float`)
``"decl"``
DEC in decimal degrees (`float`)
``"ssObjectId"``
unique minor planet ID for internal use (`int`). Shared
across catalogs; the pair ``(ssObjectId, visitId)`` is
globally unique.
``"visitId"``
a copy of ``visit`` (`int`)
"""
# Grab the visitInfo from the raw to get the information needed on the
# full visit.
Expand Down

0 comments on commit dffc225

Please sign in to comment.