Skip to main content

Resample a coarse-resolution series to a finer resolution.

The resampling strategy depends on the unit type:

Rate units (kW, SEK/kWh, etc.) are forward-filled: each sub-period inherits its parent period's value unchanged.

Amount units (SEK, NOK, kWh, hours) are distributed proportionally: each sub-period receives a share of the parent value weighted by the number of quarter-hour periods it contains relative to the parent period.

input
Dataset · object
required

Dataset to resample

Example:
{
"id": "quarter-hourly-energy-offtake",
"resolution": "quarter_hourly",
"unit": "kWh"
}
output
Dataset · object
required

Resulting Dataset after resampling the input to the specified resolution

Example:
{
"id": "quarter-hourly-energy-offtake",
"resolution": "quarter_hourly",
"unit": "kWh"
}
resolution
enum<string>
required

Target resolution to resample into (must be finer than input).

Available options:
quarter_hourly,
hourly,
daily,
weekly,
monthly,
yearly
type
string
default:resample
Allowed value: "resample"