Source code for jdaviz.configs.imviz.plugins.compass.compass

from traitlets import Bool, Unicode, observe

from jdaviz.core.events import AddDataMessage, RemoveDataMessage
from jdaviz.core.registries import tray_registry
from jdaviz.core.template_mixin import (PluginTemplateMixin, ViewerSelectMixin,
                                        skip_if_no_updates_since_last_active)
from jdaviz.core.user_api import PluginUserApi

__all__ = ['Compass']


[docs] @tray_registry('imviz-compass', label="Compass", category="data:reduction") class Compass(PluginTemplateMixin, ViewerSelectMixin): """ See the :ref:`Compass Plugin Documentation <imviz-compass>` for more details. Only the following attributes and methods are available through the :ref:`public plugin API <plugin-apis>`: * :meth:`~jdaviz.core.template_mixin.PluginTemplateMixin.show` * :meth:`~jdaviz.core.template_mixin.PluginTemplateMixin.open_in_tray` * :meth:`~jdaviz.core.template_mixin.PluginTemplateMixin.close_in_tray` * ``viewer`` (:class:`~jdaviz.core.template_mixin.ViewerSelect`): Viewer to show orientation/compass information. * ``data_label``: label of the top-layer shown in the compass (read-only) """ template_file = __file__, "compass.vue" uses_active_status = Bool(True).tag(sync=True) icon = Unicode("").tag(sync=True) data_label = Unicode("").tag(sync=True) img_data = Unicode("").tag(sync=True) flip_horizontal = Bool(False).tag(sync=True) # set by canvas rotation plugin def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self.viewer.add_filter('is_imviz_image_viewer') # description displayed under plugin title in tray self._plugin_description = 'Show active data label, compass, and zoom box.' self.hub.subscribe(self, AddDataMessage, handler=self._on_viewer_data_changed) self.hub.subscribe(self, RemoveDataMessage, handler=self._on_viewer_data_changed) self.observe_traitlets_for_relevancy(traitlets_to_observe=['viewer_items']) @property def user_api(self): return PluginUserApi(self, expose=('viewer',), readonly=('data_label',)) def _on_viewer_data_changed(self, msg=None): if self.viewer_selected: viewer = self.viewer.selected_obj viewer.on_limits_change() # Force redraw @observe("viewer_selected", "is_active") @skip_if_no_updates_since_last_active() def _compass_with_new_viewer(self, msg={}): if not hasattr(self, 'viewer'): # mixin object not yet initialized return if not self.is_active: return # There can be only one! for vid, viewer in self.app._viewer_store.items(): if vid == self.viewer.selected_id: viewer.compass = self viewer.on_limits_change() # Force redraw else: viewer.compass = None
[docs] def clear_compass(self): """Clear the content of the plugin.""" self.icon = '' self.data_label = '' self.img_data = ''
[docs] def draw_compass(self, data_label, img_data): """Draw compass in the plugin. Input is rendered buffer from Matplotlib. """ if self.app.loading or (icn := self.app.state.layer_icons.get(data_label)) is None: return self.icon = icn self.data_label = data_label self.img_data = img_data