CONAN.get_files.get_TESS_data#
- class CONAN.get_files.get_TESS_data(planet_name)#
Bases:
objectClass to download and save TESS light curves from MAST (using the lightkurve package).
- Parameters:
planet_name (str) – Name of the planet.
Examples
>>> from CONAN.get_files import get_TESS_data >>> df = get_TESS_data("WASP-121") >>> df.search(author="SPOC", exptime=120) >>> df.download(sectors= [7,33,34,61], author="SPOC", exptime=120) >>> df.scatter() >>> df.save_CONAN_lcfile(bjd_ref = 2450000, folder="data")
- contam#
- lc#
- planet_name#
Methods#
|
find gaps in the data |
|
Discard data at the start/end of the orbits (or large gaps) that typically feature ramps |
|
Download TESS light curves from MAST using the lightkurve package |
|
Mask out points in the light curve based on given time ranges and/or flux ranges. |
|
Save TESS light curves as a CONAN light curve file. |
|
Plot the scatter of the light curves. |
|
Search for TESS light curves on MAST using the lightkurve package. |
|
Split the light curves into sections based on (1)gaps in the data, (2)given time intervals (3)given split time(s). |