altos/test: Add telemega plot helper script
authorKeith Packard <keithp@keithp.com>
Mon, 29 Apr 2013 06:14:50 +0000 (23:14 -0700)
committerKeith Packard <keithp@keithp.com>
Wed, 8 May 2013 03:07:53 +0000 (20:07 -0700)
Signed-off-by: Keith Packard <keithp@keithp.com>
src/test/plotmm [new file with mode: 0755]

diff --git a/src/test/plotmm b/src/test/plotmm
new file mode 100755 (executable)
index 0000000..5f5bd2c
--- /dev/null
@@ -0,0 +1,11 @@
+gnuplot -persist << EOF
+set ylabel "altitude (m)"
+set y2label "angle (d)"
+set xlabel "time (s)"
+set xtics border out nomirror
+set ytics border out nomirror
+set y2tics border out nomirror
+plot "$1" using 1:3 with lines axes x1y1 title "raw height",\
+"$1" using 1:9 with lines axes x1y2 title "angle",\
+"$1" using 1:11 with lines axes x1y2 title "qangle"
+EOF