Reorganize algorithm packages by business responsibility, move orchestration into services, and keep database access behind pooled repositories. Harden analysis API validation, remove unsafe legacy simulation endpoints, and add regression and architecture boundary coverage. BREAKING CHANGE: legacy algorithm module paths and obsolete simulation endpoints are removed.
7 lines
214 B
Python
7 lines
214 B
Python
"""SCADA time-series cleaning algorithms."""
|
|
|
|
from .flow_series import clean_flow_data_df_kf
|
|
from .pressure_series import clean_pressure_data_df_km
|
|
|
|
__all__ = ["clean_flow_data_df_kf", "clean_pressure_data_df_km"]
|