Implement Plotly Dash app with efficient dynamic resampler #6

Merged
eeeck merged 26 commits from dev-dash into main 2026-07-22 20:18:20 +02:00
Showing only changes of commit 5e01c3bb44 - Show all commits
+2
View File
@@ -29,6 +29,8 @@ BUS2_DECODED = "data/parquet/bus2_decoded.parquet"
def run_pipeline():
os.makedirs("data/logs", exist_ok=True)
os.makedirs("data/csv", exist_ok=True)
os.makedirs("data/parquet", exist_ok=True)
if not Path(BUS1_DECODED).exists() or not Path(BUS2_DECODED).exists():
print("Parsing raw log...")
parse_log(RAW_LOG, BUS1_CSV, BUS2_CSV)