2994 |
kaklik |
1 |
set terminal png size 1024,800 |
|
|
2 |
set samples 1000 |
|
|
3 |
set xlabel "Time [s]" |
|
|
4 |
set ylabel "T [deg C]" |
|
|
5 |
set key under |
|
|
6 |
#set grid on |
|
|
7 |
|
|
|
8 |
#set logscale y |
|
|
9 |
|
|
|
10 |
|
|
|
11 |
set yrange [-700:500] |
|
|
12 |
set xrange [500:1500] |
|
|
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" |
|
|
15 |
|
|
|
16 |
|
|
|
17 |
set autoscale x |
|
|
18 |
#set autoscale y |
|
|
19 |
set yrange [0:100] |
|
|
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" |
|
|
22 |
|
|
|
23 |
set ylabel "p [Pa]" |
|
|
24 |
set autoscale x |
|
|
25 |
#set autoscale y |
|
|
26 |
set yrange [97000:98000] |
|
|
27 |
set output "day_pressure.png" |
|
|
28 |
plot "daylog.txt" using 0:3 with lines title "Barometric pressure" |