catalogs.load_programs

catalogs.load_programs(grouped=False, csv_file=None)

Get the data from the downloaded JWST programs (xml files) Note that the programs know targets by host star, not by individual planets in a given system.

Parameters

Name Type Description Default
grouped - If False, return a 1D list of all observations - If True, return a nested list of observations grouped by host target. False
csv_file Path to a csv file saved with parse_programs(). If None, load the default csv file of gen_tso (which should contain all known programs). None

Examples

>>> import gen_tso.catalogs as cat
>>> programs = cat.load_programs()
Back to top