Fix coverage: remove stray gather code, add /api/coverage route

This commit is contained in:
Floppyrj45
2026-02-19 14:50:55 +01:00
parent 16a84856e5
commit 61b25ab734
3 changed files with 3 additions and 5 deletions

View File

@@ -2098,11 +2098,6 @@ async function loadCoverage() {
} catch (e) {
document.getElementById('coverageEmpty').textContent = 'Error: ' + e.message;
}
// Draw shot time dots on gather
drawShotDots(canvas, ctx, ml, mr, mb, pw, gatherData);
// Shot position overlay
if (gatherData && gatherData.epoch_start) drawGatherShots(canvas, ctx, traces, gatherData.time_axis, parseFloat(document.getElementById("gatherStart").value), parseFloat(document.getElementById("gatherDuration").value), gatherData.epoch_start);
}
function renderCoverage() {