Time Selector#
Define the time indicated in all light curve viewers and image cubes.
Overview#
The time selector plugin allows defining the time indicated in all light curve viewers (time and phase viewers) as well as the time at which all image cubes are displayed.
UI Access#
User API#
User API Example
See the TimeSelector user API documentation for more details.
import jdaviz as jd
import lcviz
from lightkurve import search_lightcurve
lc = search_lightcurve("HAT-P-11", mission="Kepler",
cadence="long", quarter=10).download().flatten()
jd.load(lc, format="Light Curve")
jd.show()
ts = jd.plugins['Time Selector']
ts.open_in_tray()
See also
- Jdaviz Slice Plugin
Jdaviz documentation on the Slice plugin.