39f408b8b0
Signed-off-by: Christina Sørensen <christina@cafkafk.com>
11 lines
169 B
Text
11 lines
169 B
Text
{
|
|
last_week: .[-2],
|
|
|
|
yesterday: .[-1].[-2],
|
|
|
|
total: .[-1]|add,
|
|
|
|
busy_days: .[-1]|map(select(. >= 5))|length,
|
|
|
|
has_day_without_birds: .[-1]|any(. == 0)
|
|
}
|