@@ -910,7 +910,7 @@ Cutouts
910
910
911
911
The `~astroquery.mast.TesscutClass.get_cutouts ` function takes a product type
912
912
("TICA" or "SPOC", but defaults to "SPOC"), coordinate, object name (e.g. "M104" or "TIC 32449963"),
913
- or moving target (e.g. "Eleonora") and cutout size (in pixels or an angular quantity)
913
+ or moving target (e.g. "Eleonora") and cutout size (in pixels or an angular quantity, default is 5 pixels )
914
914
and returns the cutout target pixel file(s) as a list of `~astropy.io.fits.HDUList ` objects.
915
915
916
916
If the given coordinate/object location appears in more than one TESS sector a target pixel
@@ -921,7 +921,7 @@ Requesting a cutout by coordinate or objectname accesses the
921
921
`MAST TESScut API <https://mast.stsci.edu/tesscut/docs/getting_started.html#requesting-a-cutout >`__
922
922
and returns a target pixel file, with format described
923
923
`here <https://astrocut.readthedocs.io/en/latest/astrocut/file_formats.html#target-pixel-files >`__.
924
- Note that the ` product ` argument will default to request for SPOC cutouts when
924
+ Note that the product argument will default to request for SPOC cutouts when
925
925
not explicitly called for TICA.
926
926
927
927
.. doctest-remote-data ::
@@ -930,7 +930,7 @@ not explicitly called for TICA.
930
930
>>> from astropy.coordinates import SkyCoord
931
931
...
932
932
>>> cutout_coord = SkyCoord(107.18696 , - 70.50919 , unit = " deg" )
933
- >>> hdulist = Tesscut.get_cutouts(coordinates = cutout_coord, size = 5 )
933
+ >>> hdulist = Tesscut.get_cutouts(coordinates = cutout_coord)
934
934
>>> hdulist[0 ].info() # doctest: +IGNORE_OUTPUT
935
935
Filename: <class '_io.BytesIO'>
936
936
No. Name Ver Type Cards Dimensions Format
@@ -940,26 +940,26 @@ not explicitly called for TICA.
940
940
941
941
For users with time-sensitive targets who would like cutouts from the latest observations,
942
942
we recommend requesting for the TICA product. Using the same target from the example above,
943
- let's request for the TICA cutouts:
943
+ this example shows a request for TICA cutouts:
944
944
945
945
.. doctest-remote-data ::
946
946
947
947
>>> from astroquery.mast import Tesscut
948
948
>>> from astropy.coordinates import SkyCoord
949
949
...
950
950
>>> cutout_coord = SkyCoord(107.18696 , - 70.50919 , unit = " deg" )
951
- >>> hdulist = Tesscut.get_cutouts(coordinates = cutout_coord, size = 5 , product = ' tica' )
951
+ >>> hdulist = Tesscut.get_cutouts(coordinates = cutout_coord, product = ' tica' )
952
952
>>> hdulist[0 ][0 ].header[' FFI_TYPE' ] # doctest: +IGNORE_OUTPUT
953
953
'TICA'
954
954
955
- The following example will request SPOC cutouts using the ` objectname ` argument, rather
955
+ The following example will request SPOC cutouts using the objectname argument, rather
956
956
than a set of coordinates.
957
957
958
958
.. doctest-remote-data ::
959
959
960
960
>>> from astroquery.mast import Tesscut
961
961
...
962
- >>> hdulist = Tesscut.get_cutouts(objectname = " TIC 32449963" , size = 5 )
962
+ >>> hdulist = Tesscut.get_cutouts(objectname = " TIC 32449963" )
963
963
>>> hdulist[0 ].info() # doctest: +IGNORE_OUTPUT
964
964
Filename: <class '_io.BytesIO'>
965
965
No. Name Ver Type Cards Dimensions Format
@@ -990,7 +990,7 @@ simply with either the objectname or coordinates.
990
990
1 PIXELS 1 BinTableHDU 150 355R x 16C [D, E, J, 25J, 25E, 25E, 25E, 25E, J, E, E, 38A, D, D, D, D]
991
991
2 APERTURE 1 ImageHDU 97 (2136, 2078) int32
992
992
993
- Note that the moving targets functionality does not currently support TICA, so the ` product `
993
+ Note that the moving targets functionality does not currently support TICA, so the product
994
994
parameter will always default to SPOC.
995
995
996
996
.. doctest-remote-data ::
@@ -1025,7 +1025,7 @@ pixel file will be produced for each one.
1025
1025
./tess-s0009-4-1_107.186960_-70.509190_21x15_astrocut.fits
1026
1026
1027
1027
The query from the example above defaults to downloading cutouts from SPOC. The following example is a query for
1028
- the same target from above, but with the ` products ` argument passed as TICA to explicitly request for TICA cutouts,
1028
+ the same target from above, but with the product argument passed as TICA to explicitly request for TICA cutouts,
1029
1029
and because the TICA products are not available for sectors 1-26, we request cutouts from sector 27 rather than sector 9.
1030
1030
1031
1031
.. doctest-remote-data ::
@@ -1080,7 +1080,7 @@ but are now available for sector 61.
1080
1080
tica-s0034-1-2 34 1 2
1081
1081
tica-s0061-1-2 61 1 2
1082
1082
1083
- The following example will request SPOC cutouts using the ` objectname ` argument, rather
1083
+ The following example will request SPOC cutouts using the objectname argument, rather
1084
1084
than a set of coordinates.
1085
1085
1086
1086
.. doctest-remote-data ::
0 commit comments