Metadata Viewer#
View any metadata associated with the selected data.
Overview#
This plugin allows viewing of any metadata associated with the selected data.
UI Access#
User API#
User API Example
See the MetadataViewer 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()
metadata = jd.plugins['Metadata']
print(f"dataset choices: {metadata.dataset.choices}")
metadata.dataset = metadata.dataset.choices[0]
print(metadata.meta)
See also
- Jdaviz Metadata Viewer
Jdaviz documentation on the Metadata Viewer plugin.