Skip to main content

Resample a coarse-resolution series to a finer resolution.

Each value in the input is repeated (or distributed) across the sub-periods of the target resolution. For example, a yearly value is copied to each month when resampling to monthly.

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
function
string
default:resample
Allowed value: "resample"