2007-03-27 14:50:04 +00:00
|
|
|
#
|
|
|
|
# Display the Wind and the Rain values of a KS300.
|
|
|
|
# FileLog definition:
|
|
|
|
# define FileLog ks300log ks300:.*H:.* /var/log/ks300-%Y-%U.log
|
|
|
|
#
|
2008-05-09 13:58:10 +00:00
|
|
|
set terminal png transparent size 800,200 crop
|
2007-03-27 14:50:04 +00:00
|
|
|
set output '<OUT>.png'
|
|
|
|
set xdata time
|
|
|
|
set timefmt "%Y-%m-%d_%H:%M:%S"
|
|
|
|
set xlabel " "
|
|
|
|
set ytics nomirror
|
|
|
|
set y2tics
|
2007-10-03 16:35:37 +00:00
|
|
|
set title '<TL>'
|
2007-03-27 14:50:04 +00:00
|
|
|
set grid
|
|
|
|
|
|
|
|
set ylabel "Wind (Km/h)"
|
2007-07-01 07:30:48 +00:00
|
|
|
set y2label "Humidity (%)"
|
2007-03-27 14:50:04 +00:00
|
|
|
plot "<IN>" using 1:8 axes x1y1 title 'Wind' with lines,\
|
2007-07-01 07:30:48 +00:00
|
|
|
"<IN>" using 1:6 axes x1y2 title 'Rel. Humidity (%)' with lines
|