catalogs.load_targets

catalogs.load_targets(database='nea_data.txt', is_confirmed=np.nan)

Unpack star and planet properties from plain text file.

Parameters

Name Type Description Default
databases nea_data.txt or tess_data.txt required

Returns

Name Type Description
targets List of Target

Examples

>>> import gen_tso.catalogs as cat
>>> nea_data = cat.load_nea_targets_table()
Back to top