summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2013-04-28 23:14:50 -0700
committerKeith Packard <keithp@keithp.com>2013-04-28 23:14:50 -0700
commitc4c8599eceb47501971c9c095e0eaec3a49aa966 (patch)
tree329e6ebb2f9b92a51eb1c419c2070fac5ae7ffde
parentb5b6471bbfa093039f7c1c1fd5aa6dbc9dbec5dc (diff)
altos/test: Add telemega plot helper script
Signed-off-by: Keith Packard <keithp@keithp.com>
-rwxr-xr-xsrc/test/plotmm11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/test/plotmm b/src/test/plotmm
new file mode 100755
index 00000000..5f5bd2ca
--- /dev/null
+++ b/src/test/plotmm
@@ -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