-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexploreTime.plt
More file actions
67 lines (51 loc) · 1.57 KB
/
exploreTime.plt
File metadata and controls
67 lines (51 loc) · 1.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#LKB(c) 2014
#plots LGO observation file, after processing through python using PlotLGO_obs.bat
#IN cols are: Point Id,Hz,3.V,Height Diff.,5.Slope Dist.,Date/Time (corrected),7.Geometric PPM,Atmospheric PPM
#gnuplot -e "InFilename='AfterBridge.csv'" exploreTime.plt
#clean all
#reset
#set data
set datafile separator ","
set key top left samplen 3 spacing 1.2 font "Arial,12"
set style data points
##########################
#MAIN code
#########################
# print to the file
# with multiplot replot wont work
#pngcairo support dashed, png does not
set terminal pngcairo dashed size 1920,1080 enhanced font 'Arial,20'
#1920,1080 #3840,2160
set output sprintf("%s.png",InFilename)
#set terminal wxt 0 dashed size 1620,900
#for equal axis but it seems not to work
#set size square
set grid
#set ylabel "Time as well?"
set ytics 100
set mytics 10 #minor
set xtics 1
set mxtics 6 #minor
set xdata time
set timefmt "%H:%M:%S"
set format x "%H:%M:%S"
set xtics out rotate by -90
set title sprintf("Nivel220 output using av %s settings",InFilename)
#set xrange ["3/12/2014 15:37:50":"3/12/2014 15:38:10"] #after reestablishing station
#set xrange ["20:12:50":"22:38:10"]
set xrange ["10:08:29":"10:08:41"]
set yrange [3318800:3319800]
set format y "%.0f"
# PLOT DATA
plot InFilename u 2:1 w p notitle
#plot InFilename.csv u 2:($1/100) w p notitle
#t "Compare times"
#,\
#Plot on Screen
#set terminal wxt 0 size 1620,900
#replot
##########################
#END of scipt
#########################
#for non-batch running use pause to see results
#pause -1 "PRESS ENTER TO EXIT PROGRAMME LKB(c)"