Changeset 2504 in ntrip


Ignore:
Timestamp:
Jul 2, 2010, 6:31:05 PM (14 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/ppp.gpt

    r2503 r2504  
     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}"
    118
    219set xdata time
     
    522set format x "%H:%M"
    623
    7 ##set term png
    8 ##set output "ffmj1.png"
    9 
    10 set title "FFMJ1"
     24set title "FFMJ1 (${inpFile})"
    1125
    1226set ylabel "meters"
    13 ###set xlabel "29-Dec-2009"
    1427set yrange [-1.5:1.5]
    1528
    16 plot "neu" u 5:9 t "dH" w l lt 3, \
    17      ""    u 5:7 t "dN" w l lt 1, \
    18      ""    u 5:8 t "dE" w l lt 2
     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
    1932
    20 pause -1
     33EOF
     34
     35rm neu_tmp
Note: See TracChangeset for help on using the changeset viewer.