Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagepy
firstline1
titleAstroquery Example
#To get back all Observations containing TESS Mission light curves from sector 14 

from astroquery.mast import Observations
obs = Observations.query_criteria(obs_collection = 'TESS', sequence_number = [14], dataproduct_type = "timeseries")

#To get back 20-second, fast-cadence TESS Observations from sector 27
obs_fast = Observations.query_criteria(obs_colleciton = 'TESS', sequence_number = [27], t_exptime = [20], dataproduct_type = "timeseries")

Data Products Filter

FilterField NameHow it is used for TESS Data
Minimum Recommended Productmrp_only

When set to True you only get the most common data products. They are:

postage-stamp: light curve files and target pixel files.

FFI: There are no MRPs. 

Product Typeproduct_type

postage-stamp: "timeseries"

FFI: "image"

Descriptiondescription

Choices are":

  • calibrated full frame images
  • uncalibrated full frame images
  • Light curves
  • Target pixel files
Data File TypeproductSubGroupDescription
  • FFIR - raw FFIs
  • FFIC - calibrated FFIs
  • TP - Target pixel files
  • LC - Light curves
  • DVR - Data validation report (includes pdf report and xml file)
  • DVS - Data validation summary
  • DVT - Data validation timeseries
  • DVM - Data validation mini report
  • FAST-TP - fast cadence target pixel files
  • FAST-LC - fast cadence light curve files

...