From fa0d08762aef630c768814dbb340c11da1f5071f Mon Sep 17 00:00:00 2001 From: Kyle Conroy Date: Fri, 12 Jul 2024 15:48:03 -0400 Subject: [PATCH] disable wavelength-dependence and bg export --- .../plugins/photometric_extraction/photometric_extraction.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lcviz/plugins/photometric_extraction/photometric_extraction.py b/lcviz/plugins/photometric_extraction/photometric_extraction.py index 635b85f..5c84936 100644 --- a/lcviz/plugins/photometric_extraction/photometric_extraction.py +++ b/lcviz/plugins/photometric_extraction/photometric_extraction.py @@ -1,5 +1,5 @@ from astropy import units as u -from traitlets import Unicode, observe +from traitlets import Bool, Unicode, observe from lightkurve import LightCurve from jdaviz.core.registries import tray_registry @@ -29,6 +29,8 @@ class PhotometricExtraction(SpectralExtraction): """ resulting_product_name = Unicode("light curve").tag(sync=True) do_auto_extraction = False + wavelength_dependent_available = Bool(False).tag(sync=True) + bg_export_available = Bool(False).tag(sync=True) def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs)