{
"condition": {
"months": [
1,
2,
3,
11,
12
],
"type": "month"
},
"input": {
"id": "power",
"resolution": "hourly",
"unit": "kW"
},
"output": {
"id": "filtered-power",
"resolution": "hourly",
"unit": "kW"
},
"type": "select"
}Functions
Function: Select
Keep only values matching a condition, removing all others.
The resulting dataset will have "absent" values or "holes". See Datasets for details on absent values.
Works with both temporal conditions (month, day_of_week, time_of_day, exclude_holidays, and, or, not) and value conditions (highest, lowest).
Condition that only applies in the specified months.
- MonthCondition
- DayOfWeekCondition
- TimeOfDayCondition
- ExcludeHolidaysCondition
- AndCondition
- OrCondition
- NotCondition
- HighestCondition
- LowestCondition
Show child attributes
Show child attributes
Example:
{
"months": [1, 2, 3, 11, 12],
"type": "month"
}
Output Dataset produced by this function, a local name used by subsequent functions to reference this result
Show child attributes
Show child attributes
Example:
{
"id": "quarter-hourly-energy-offtake",
"resolution": "quarter_hourly",
"unit": "kWh"
}
Allowed value:
"select"Was this page helpful?