CONAN.get_files.get_JWST_data#

class CONAN.get_files.get_JWST_data(planet_name)#

Bases: object

Class to download and save JWST light curves from the MAST archive (using astroquery).

Parameters:

planet_name (str) – Name of the planet.

Examples

>>> from CONAN.get_files import get_JWST_data
>>> df = get_JWST_data("WASP-39")
>>> df.search(instrument="NIRSPEC/SLIT", filters="G395H", proposal_id="1366")
>>> df.download()   #download white light curves
>>> df.scatter()
>>> df.save_CONAN_lcfile(bjd_ref = 2450000, folder="data")
lc = []#
planet_name#

Methods#

download([selection_kws, overwrite])

Download JWST white light curves from MAST using the astroquery package.

scatter()

Plot the scatter of the light curves.

search([instrument, filters, proposal_id, search_kws])

Search for JWST light curves on MAST using the astroquery package.