@@ -58,20 +58,26 @@ Obtaining pixel coordinates for a specific celestial coordinate:
5858 >> > from astropy.coordinates import SkyCoord
5959 >> > crd = SkyCoord(ra = 60 , dec = 70 , unit = ' deg' )
6060 >> > locate(crd)
61- List of 1 coordinates
62- ↳[TessCoord(sector = 19 , camera = 2 , ccd = 2 , column = 355.3 , row = 1045.9 , time = None )]
61+ List of 4 coordinates
62+ ↳[TessCoord(sector = 19 , camera = 2 , ccd = 2 , column = 355.3 , row = 1045.9 , time = None )
63+ TessCoord(sector = 25 , camera = 4 , ccd = 4 , column = 1107.0 , row = 285.9 , time = None )
64+ TessCoord(sector = 26 , camera = 4 , ccd = 3 , column = 317.7 , row = 395.9 , time = None )
65+ TessCoord(sector = 52 , camera = 4 , ccd = 4 , column = 603.5 , row = 240.2 , time = None )]
6366
6467
6568 You can access the properties of `TessCoord ` objects using standard list and attribute syntax:
6669
6770.. code-block :: python
6871
6972 >> > crdlist = locate(" Alpha Cen" )
70- >> > crdlist[0 ].sector, crdlist[0 ].camera, crdlist[0 ].ccd, crdlist[0 ].column, crdlist[0 ].row
71- (11 , 2 , 2 , 1699.0540739785683 , 1860.2510951146114 )
73+ >> > crdlist[0 ].sector, crdlist[0 ].camera, crdlist[0 ].ccd
74+ (11 , 2 , 2 )
75+ >> > crdlist[0 ].column, crdlist[0 ].row
76+ (1699.0540739785683 , 1860.2510951146114 )
7277
7378
74- When you have obtained a `TessCoord ` object, you can use it to obtain a list of the TESS Full Frame Images (FFIs) which covered the position:
79+ When you have obtained a `TessCoord ` object, you can use it to obtain a list of the TESS Full Frame Images (FFIs) which covered the position.
80+ The objects returned are provided by the `tess-cloud <https://github.com/SSDataLab/tess-cloud >`_ package.
7581
7682.. code-block :: python
7783
0 commit comments