12 lines
169 B
Text
12 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)
|
||
|
}
|