source: ntrip/trunk/BNC/ppp.gpt@ 2544

Last change on this file since 2544 was 2544, checked in by mervart, 14 years ago
File size: 567 bytes
Line 
1#!/bin/sh
2
3if [ $# -lt 2 ]
4then
5 echo "Usage: $0 <input> <output>"
6 exit 1
7fi
8
9inpFile=$1
10outFile=$2
11
12grep NEU ${inpFile} > neu_tmp
13
14gnuplot << EOF
15
16set term png
17set output "${outFile}"
18
19set xdata time
20set timefmt "%H:%M:%S"
21
22set format x "%H:%M"
23
24set title "FFMJ1 (${inpFile})"
25
26set ylabel "meters"
27set yrange [-1.5:1.5]
28
29set ytics nomirror
30set y2range [0:50]
31set y2tics 0,10,20
32
33plot "neu_tmp" u 5:9 t "dH" w l lt 3, \
34 "" u 5:7 t "dN" w l lt 1, \
35 "" u 5:8 t "dE" w l lt 2, \
36 "" u 5:6 t "# sat" axis x1y2 w l lt 4
37
38EOF
39
40rm neu_tmp
Note: See TracBrowser for help on using the repository browser.