tsunami / src /tsuwave /dashboard /__init__.py
Gitdeeper4's picture
رفع جميع ملفات TSU-WAVE مع YAML
12834b7
"""TSU-WAVE Dashboard Module - Streamlit-based monitoring interface"""
from .app import run_dashboard
from .chi_gauge import display_chi_gauge
from .parameter_plots import plot_parameters
from .wave_front_map import display_wave_front_map
from .becf_viewer import view_becf_map
from .alert_panel import display_alerts
__all__ = [
'run_dashboard',
'display_chi_gauge',
'plot_parameters',
'display_wave_front_map',
'view_becf_map',
'display_alerts'
]