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

Last change on this file since 2528 was 2504, checked in by mervart, 14 years ago
File size: 456 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
[2504]29plot "neu_tmp" u 5:9 t "dH" w l lt 3, \
30 "" u 5:7 t "dN" w l lt 1, \
31 "" u 5:8 t "dE" w l lt 2
[2072]32
[2504]33EOF
34
35rm neu_tmp
Note: See TracBrowser for help on using the repository browser.