Rev 2994 Rev 3126
1 set terminal png size 1024,800 1 set terminal png size 1024,800
2 set samples 1000 2 set samples 1000
3 set xlabel "Time [s]" 3 set xlabel "Time [s]"
4 set ylabel "T [deg C]" 4 set ylabel "T [deg C]"
5 set key under 5 set key under
6 #set grid on 6 #set grid on
7   7  
8 #set logscale y 8 #set logscale y
9   9  
10   10  
11 set yrange [-700:500] 11 set yrange [-700:500]
12 set xrange [500:1500] 12 set xrange [500:1500]
13 set output "Anemometer test.png" 13 set output "Anemometer test.png"
14 plot "Anemometr_test2.log" using 0:1 with lines title "X", "" using 0:2 with lines title "Y", "" using 0:3 with lines title "Z" 14 plot "Anemometr_test2.log" using 0:1 with lines title "X", "" using 0:2 with lines title "Y", "" using 0:3 with lines title "Z"
15   15  
16   16  
17 set autoscale x 17 set autoscale x
18 #set autoscale y 18 #set autoscale y
19 set yrange [0:100] 19 set yrange [0:100]
20 set output "day_temp_hum.png" 20 set output "day_temp_hum.png"
21 plot "daylog.txt" using 0:4 with lines title "Temperature", "" using 0:5 with lines title "Humidity" 21 plot "daylog.txt" using 0:4 with lines title "Temperature", "" using 0:5 with lines title "Humidity"
22   22  
23 set ylabel "p [Pa]" 23 set ylabel "p [Pa]"
24 set autoscale x 24 set autoscale x
25 #set autoscale y 25 #set autoscale y
26 set yrange [97000:98000] 26 set yrange [97000:98000]
27 set output "day_pressure.png" 27 set output "day_pressure.png"
28 plot "daylog.txt" using 0:3 with lines title "Barometric pressure" 28 plot "daylog.txt" using 0:3 with lines title "Barometric pressure"