Photometric Extraction#
Extract a light curve from target pixel file (TPF) data via aperture photometry.
Overview#
This plugin is only available if TPF data is loaded into the app.
UI Access#
User API#
User API Example
See the PhotometricExtraction user API documentation for more details.
import jdaviz as jd
import lcviz
from lightkurve import search_targetpixelfile
tpf = search_targetpixelfile("KIC 001429092",
mission="Kepler",
cadence="long",
quarter=10).download()
jd.load(tpf, format="TPF")
jd.show()
ext = jd.plugins['Photometric Extraction']
ext.open_in_tray()
See also
This plugin uses the following lightkurve implementations:
lightkurve.KeplerTargetPixelFile.extract_aperture_photometry()