Sleepcount for 300 seconds added. This is when things got riddiculously complicated...
[mirrors/Programs.git] / c / goertzel / sleepplot.sh
index 09fd050ccab6659a384d199a84569c4e5c528265..fe1c9af740fd739a5a727d3c0f38e9a7fb6284b3 100755 (executable)
@@ -5,31 +5,39 @@ test -z "$1" && {
        exit 23
 }
 
+#Count events:
+seconds='60 300'
+for i in $seconds; do
+       ./sleepcount.sh "$1" "$i" &
+done
+
+#Approximate size of graph
 size="$(tail -n 1 "$1" | cut -d . -f 1)"
 test $size -gt 3600 && size="$(( $size/10 ))" #For prolonged periods
-size="$(( 200 + ($size * 2) ))"
+size="$(( 600 + $size ))"
 
+#Plot it
 gnuplot << EOF
 set output "$1.png"
-set terminal png size $size,200
+set terminal png size $size,300
 
 set title "Sleep motions"
 set xlabel "time"
 set ylabel "motion"
 
-set yrange [-0.5:1.5]
+set yrange [-0.5:3]
 
 set xdata time
 set timefmt "%s"
 #set format x "%H:%M:%S"
 
-#set y2tics 300
-#set ytics 5
-
 set grid
 
 #set pointsize 0.5
-plot "$1" using 2:5 with histeps;
+#"$1.counts.$seconds" using 1:(\$2/5) title "Activations in last $seconds seconds" smooth csplines
+plot "$1" using 2:5 title "Sensor state" with steps,\
+"$1.counts.60" using 1:(\$2/5) title "Activations in last 60 seconds" smooth csplines,\
+"$1.counts.300" using 1:(\$2/10) title "Activations in last 300 seconds" smooth csplines\
 
 EOF
 
This page took 0.133372 seconds and 4 git commands to generate.