Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Example function to convert the 'QUALITY' column in Kepler/K2 target pixel | |
and lightcurve files into a list of meaningful strings. | |
""" | |
# The meaning of the various flags are described in the Kepler Archive Manual | |
KEPLER_QUALITY_FLAGS = { | |
"1": "Attitude tweak", | |
"2": "Safe mode", | |
"4": "Coarse point", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CB_color_cycle = ['#377eb8', '#ff7f00', '#4daf4a', | |
'#f781bf', '#a65628', '#984ea3', | |
'#999999', '#e41a1c', '#dede00'] |