@@ -469,7 +469,7 @@ data collection. Currently it provides access to a broad set of Hubble Space
469
469
Telescope (HST) metadata, including header keywords, proposal information, and
470
470
observational parameters. The available metadata includes all information that
471
471
was previously available in the original HST web search form, and are present in
472
- the current `Mission Search interface<https://mast.stsci.edu/search/ui/#/hst> `__.
472
+ the current `Mission Search interface <https://mast.stsci.edu/search/ui/#/hst >`__.
473
473
474
474
**Note: **, this API interface does not yet support data product download, only
475
475
metadata earch access.
@@ -904,7 +904,7 @@ and returns a target pixel file, with format described
904
904
...
905
905
>>> cutout_coord = SkyCoord(107.18696 , - 70.50919 , unit = " deg" )
906
906
>>> hdulist = Tesscut.get_cutouts(coordinates = cutout_coord, size = 5 )
907
- >>> hdulist[0 ].info()
907
+ >>> hdulist[0 ].info() # doctest: +IGNORE_OUTPUT
908
908
Filename: <class '_io.BytesIO'>
909
909
No. Name Ver Type Cards Dimensions Format
910
910
0 PRIMARY 1 PrimaryHDU 56 ()
@@ -917,7 +917,7 @@ and returns a target pixel file, with format described
917
917
>>> from astroquery.mast import Tesscut
918
918
...
919
919
>>> hdulist = Tesscut.get_cutouts(objectname = " TIC 32449963" , size = 5 )
920
- >>> hdulist[0 ].info()
920
+ >>> hdulist[0 ].info() # doctest: +IGNORE_OUTPUT
921
921
Filename: <class '_io.BytesIO'>
922
922
No. Name Ver Type Cards Dimensions Format
923
923
0 PRIMARY 1 PrimaryHDU 56 ()
@@ -940,7 +940,7 @@ simply with either the objectname or coordinates.
940
940
>>> from astroquery.mast import Tesscut
941
941
...
942
942
>>> hdulist = Tesscut.get_cutouts(objectname = " Eleonora" , moving_target = True , size = 5 , sector = 6 )
943
- >>> hdulist[0 ].info()
943
+ >>> hdulist[0 ].info() # doctest: +IGNORE_OUTPUT
944
944
Filename: <class '_io.BytesIO'>
945
945
No. Name Ver Type Cards Dimensions Format
946
946
0 PRIMARY 1 PrimaryHDU 54 ()
0 commit comments