2015-01-24 08:53:38 +00:00
|
|
|
# Created by FHEM/98_SVG.pm, 2015-01-24 09:25:23
|
2022-03-07 08:45:37 +00:00
|
|
|
set readonly
|
2013-09-22 12:33:25 +00:00
|
|
|
set terminal png transparent size <SIZE> crop
|
|
|
|
set output '<OUT>.png'
|
|
|
|
set xdata time
|
|
|
|
set timefmt "%Y-%m-%d_%H:%M:%S"
|
|
|
|
set xlabel " "
|
|
|
|
set title '<L1>'
|
|
|
|
set ytics
|
|
|
|
set y2tics
|
|
|
|
set grid
|
|
|
|
set ylabel "Rain (mm)"
|
|
|
|
set y2label "Temperature"
|
2018-06-07 10:18:21 +00:00
|
|
|
set ysprintf %.2f
|
2013-09-22 12:33:25 +00:00
|
|
|
|
2015-01-23 09:17:21 +00:00
|
|
|
#Log.Garden 4:Garden.T\x3a:15:
|
|
|
|
#Log.Garden 10:Garden.T\x3a:0:delta-h
|
|
|
|
#Log.Garden 10:Garden.T\x3a:0:delta-d
|
2015-01-24 08:53:38 +00:00
|
|
|
#Log.Predicted 4:predicted.*:15:
|
2013-09-22 12:33:25 +00:00
|
|
|
|
2015-01-23 09:17:21 +00:00
|
|
|
plot "<IN>" using 1:2 axes x1y2 title 'Temperature' ls l0 lw 1 with lines,\
|
2013-09-22 12:33:25 +00:00
|
|
|
"<IN>" using 1:2 axes x1y1 title 'Rain/hour' ls l1fill lw 1 with histeps,\
|
2015-01-24 08:53:38 +00:00
|
|
|
"<IN>" using 1:2 axes x1y1 title 'Rain/day' ls l2 lw 1 with histeps,\
|
|
|
|
"<IN>" using 1:2 axes x1y2 title 'Predicted Temp' ls l3 lw 1 with quadratic
|