Why normalization matters
Raw interval data is messy. Without cleanup, charts and totals mislead.What goes in and what comes out
Input: Irregular readings from accumulators, sensors, and pulse meters, with different units, gaps, duplicates, and outliers. Output: A uniform dataset with:- One row per meter per 15-minute interval (and a daily consumption row)
- Standardized units by meter type
- Quality labels that show how each value was produced or why it is empty
Virtual points
For each meter, normalization produces three virtual points.Output units by meter type
How the process works
Normalization follows a fixed sequence.- Validate meter configuration — Flag duplicate fields, cooling and heating conflicts, and invalid units before processing.
- Clean raw readings — Drop nulls and duplicates. Remove negative values, zero accumulators, and spike or dip outliers.
- Standardize units — Convert every reading to the target unit for that meter type.
- Align to 15 minutes — Map irregular timestamps to a uniform grid. Accumulators become interval consumption by differencing. Sensors convert rate to consumption.
- Apply physical limits — Nullify values that exceed meter-type limits for a 15-minute window.
- Select the best field — When a meter has multiple fields, prefer total accumulators over differentials and sensors.
- Fill short gaps — Linear interpolation covers gaps up to two hours. Longer gaps stay empty.
- Label every row — Attach configuration, validation, and interpolation labels so you can trust or investigate each value.
Data quality labels
Every normalized row carries alabels dictionary. Empty braces {} mean clean measured data.
Treat configuration and validation labels as signals to fix mapping or sensors. Treat interpolation labels as estimates for short gaps. Full definitions live on Interval normalization labels.
Next steps
Interval normalization labels
Look up virtual point fields, limits, and quality label meanings.
KODE OS data source
Connect interval meters that feed normalization.
Data sources and meters
See how bills and interval reads fit together in EnerG.
Meter comparisons
Compare utility bills against interval totals after data is clean.

