mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-01-31 12:49:34 +00:00
1d8037f8db
git-svn-id: https://svn.fhem.de/fhem/trunk@7682 2b470e98-0d58-463d-a4d8-8e2adae1ed80
23 lines
732 B
Plaintext
23 lines
732 B
Plaintext
# Created by FHEM/98_SVG.pm, 2015-01-24 09:25:23
|
|
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"
|
|
|
|
#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
|
|
#Log.Predicted 4:predicted.*:15:
|
|
|
|
plot "<IN>" using 1:2 axes x1y2 title 'Temperature' ls l0 lw 1 with lines,\
|
|
"<IN>" using 1:2 axes x1y1 title 'Rain/hour' ls l1fill lw 1 with histeps,\
|
|
"<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
|