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

Last change on this file since 2552 was 2552, checked in by mervart, 14 years ago
File size: 570 bytes
RevLine 
[2504]1#!/bin/sh
[2072]2
[2504]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
[2072]19set xdata time
20set timefmt "%H:%M:%S"
21
22set format x "%H:%M"
23
[2504]24set title "FFMJ1 (${inpFile})"
[2278]25
[2072]26set ylabel "meters"
[2283]27set yrange [-1.5:1.5]
[2072]28
[2544]29set ytics nomirror
30set y2range [0:50]
31set y2tics 0,10,20
32
[2552]33plot "neu_tmp" u 5:17 t "dH" w l lt 3, \
34 "" u 5:18 t "dN" w l lt 1, \
35 "" u 5:19 t "dE" w l lt 2, \
[2544]36 "" u 5:6 t "# sat" axis x1y2 w l lt 4
[2072]37
[2504]38EOF
39
40rm neu_tmp
Note: See TracBrowser for help on using the repository browser.