DD2-monitor/viz/gnuplot/av4v-h.awk

35 lines
426 B
Awk
Raw Normal View History

2019-01-17 10:57:12 +01:00
#!/usr/bin/awk -f
BEGIN {
flag_debut = 1;
lasthour = 0;
cumul = 0.0;
compte = 0;
}
# iterate over all the input lines
{
if (flag_debut) {
debut = $1
flag_debut = 0
}
heures = int(($1-debut) / 3600);
if (heures == lasthour) {
val = ($2 + $3 + $4 + $5);
cumul += val;
compte += 4;
}
else {
val = cumul /compte;
2019-02-09 04:06:09 +01:00
print $1, val;
2019-01-17 10:57:12 +01:00
lasthour = heures;
cumul = 0;
compte = 0;
}
}