Skip to content

Commit

Permalink
last fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ceb8 committed Mar 15, 2022
1 parent 0f8bf20 commit fd49cd8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/mast/mast.rst
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,7 @@ data collection. Currently it provides access to a broad set of Hubble Space
Telescope (HST) metadata, including header keywords, proposal information, and
observational parameters. The available metadata includes all information that
was previously available in the original HST web search form, and are present in
the current `Mission Search interface<https://mast.stsci.edu/search/ui/#/hst>`__.
the current `Mission Search interface <https://mast.stsci.edu/search/ui/#/hst>`__.

**Note:**, this API interface does not yet support data product download, only
metadata earch access.
Expand Down Expand Up @@ -904,7 +904,7 @@ and returns a target pixel file, with format described
...
>>> cutout_coord = SkyCoord(107.18696, -70.50919, unit="deg")
>>> hdulist = Tesscut.get_cutouts(coordinates=cutout_coord, size=5)
>>> hdulist[0].info()
>>> hdulist[0].info() # doctest: +IGNORE_OUTPUT
Filename: <class '_io.BytesIO'>
No. Name Ver Type Cards Dimensions Format
0 PRIMARY 1 PrimaryHDU 56 ()
Expand All @@ -917,7 +917,7 @@ and returns a target pixel file, with format described
>>> from astroquery.mast import Tesscut
...
>>> hdulist = Tesscut.get_cutouts(objectname="TIC 32449963", size=5)
>>> hdulist[0].info()
>>> hdulist[0].info() # doctest: +IGNORE_OUTPUT
Filename: <class '_io.BytesIO'>
No. Name Ver Type Cards Dimensions Format
0 PRIMARY 1 PrimaryHDU 56 ()
Expand All @@ -940,7 +940,7 @@ simply with either the objectname or coordinates.
>>> from astroquery.mast import Tesscut
...
>>> hdulist = Tesscut.get_cutouts(objectname="Eleonora", moving_target=True, size=5, sector=6)
>>> hdulist[0].info()
>>> hdulist[0].info() # doctest: +IGNORE_OUTPUT
Filename: <class '_io.BytesIO'>
No. Name Ver Type Cards Dimensions Format
0 PRIMARY 1 PrimaryHDU 54 ()
Expand Down

0 comments on commit fd49cd8

Please sign in to comment.