Revert "Device/Driver/LX: Add small delay after baud rate change"
[xcsoar.git] / test / plot / plottrace.gnuplot
blob78432785ec7d3d02aa1df8017c672bdf6b7c2c93
1 set size ratio -1
2 set key outside right
4 set style line 1 lt 2 lc rgb "black" lw 2
5 set style line 2 lt 4 lc rgb "purple" lw 1
6 set style line 3 lt 4 lc rgb "orange" lw 1
7 set style line 4 lt 4 lc rgb "blue" lw 2
8 set style line 5 lt 4 lc rgb "grey" lw 2
9 set style line 6 lt 4 lc rgb "green" lw 1
10 set style line 7 lt 4 lc rgb "cyan" lw 1
11 set style line 8 lt 2 lc rgb "red" lw 2
13 set xlabel "Longitude (deg)"
14 set ylabel "Latitude (deg)"
15 plot \
16      'output/results/res-sample.txt' using 2:3 with lines ls 1 title "sample", \
17      'output/results/res-trace.txt' using 2:3 with lines ls 8 title "trace", \
18      'output/results/res-trace-thin.txt' using 2:3 with linespoints ls 3 title "thin trace"
19 pause -1
21 set size noratio
22 set ylabel "vario (m/s)"
23 set xlabel "time (s)"
24 plot \
25      'output/results/res-trace.txt' using 1:6 with lines ls 8 title "trace", \
26      'output/results/res-trace-thin.txt' using 1:6 with lines ls 3 title "thin trace"
27 pause -1