source: ntrip/trunk/BNC/src/ppp.gpt@ 5716

Last change on this file since 5716 was 4282, checked in by mervart, 12 years ago
File size: 583 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
[2698]12grep " NEU " ${inpFile} > neu_tmp
[2504]13
14gnuplot << EOF
15
16set term png
17set output "${outFile}"
18
[2072]19set xdata time
[3467]20set timefmt "%y-%m-%d %H:%M:%S"
[2072]21
22set format x "%H:%M"
23
[2504]24set title "FFMJ1 (${inpFile})"
[2278]25
[2072]26set ylabel "meters"
[3446]27set yrange [-0.5:0.5]
[2072]28
[2544]29set ytics nomirror
30set y2range [0:50]
31set y2tics 0,10,20
32
[3467]33plot "neu_tmp" u 1:19 t "dH" w l lt 3, \
34 "" u 1:17 t "dN" w l lt 1, \
35 "" u 1:18 t "dE" w l lt 2, \
36 "" u 1: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.