From 1d324fd85f2e7db9d5c1068c0aab34a2c27c4bfd Mon Sep 17 00:00:00 2001 From: Josh Poole Date: Tue, 15 Sep 2026 16:20:34 +0100 Subject: [PATCH] 20260915 - Thin the white outline on tracker scope markers blah2 runs a 0.5 s CPI, so a track held across the page's default 15-minute window lays down 1,800 markers. Where a target flies tangentially the range and Doppler barely move, those markers stack, and a 1.2 px white ring is wide enough that each point overpaints the fill of the one before it: the track reads as a white smear rather than a coloured line. 0.5 px still separates neighbouring points where they are sparse, which is what the ring is there for, without bleaching the dense case. Co-Authored-By: Claude Opus 5 (1M context) --- templates/tracker.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/tracker.html b/templates/tracker.html index 692274a..4d0a751 100644 --- a/templates/tracker.html +++ b/templates/tracker.html @@ -523,7 +523,7 @@ type: 'scattergl', mode: 'lines+markers', name: r.id, x: trk.delay, y: trk.doppler, line: { color: 'rgba(0,0,0,0.25)', width: 1 }, - marker: { color: colorFor(r.id), size: 7, line: { color: '#ffffff', width: 1.2 } }, + marker: { color: colorFor(r.id), size: 7, line: { color: '#ffffff', width: 0.5 } }, customdata: trk.snr, hovertemplate: r.id + '
Delay: %{x:.2f}
Doppler: %{y:.2f} Hz
' + 'SNR: %{customdata:.1f} dB',