Files
cc-backend/89/3a1de325b5/0/context.md
Jan Eitzinger 0851f3f75d Checkpoint: 893a1de325b5
Entire-Session: 260a4a9e-d060-4d86-982b-1bf5959b9b70
Entire-Strategy: manual-commit
Entire-Agent: Claude Code
Ephemeral-branch: entire/10b4fa5-e3b0c4
2026-03-19 21:17:00 +01:00

556 B

Session Context

User Prompts

Prompt 1

Implement the following plan:

Plan: Add RRDTool-style Average Consolidation Function to Resampler

Context

The current downsampler in cc-lib/v2/resampler offers two algorithms:

  • LTTB (LargestTriangleThreeBucket): Perceptually-aware — picks points that preserve visual shape (peaks/valleys). Used at all call sites.
  • SimpleResampler: Decimation — picks every nth point. Fast but lossy.

Neither produces scientifically accurate averages over time intervals. RRDTool's **AVERAGE C...