1
0
Fork 0
This repository has been archived on 2024-06-28. You can view files and clone it, but cannot push or open issues or pull requests.
Umweltdatenmessung/diverses/Einstellungen.plt
2014-05-28 15:57:14 +02:00

44 lines
1.8 KiB
Gnuplot

# x-Achse enthält Zeitinformation
set xdata time
# Zeitformat zur Eingabe
set timefmt x "%Y/%m/%d\ %H:%M:%S"
# Zeitformat zur Beschriftung der x-Achse
set format x "%d.%m %H:%M"
set grid #Gitter anzeigen
set terminal svg size 1200,800
set title "Innentemperaturen"
set ylabel 'Temperatur (°C)'
set output "/var/www/gnuplot/innen.svg"
plot "/home/pi/Temperaturmessung/gnuplot.txt" using 1:3 title 'Innentemperatur' with lines , \
"/home/pi/Temperaturmessung/gnuplot.txt" using 1:4 title 'Gerätetemperatur 1' with lines , \
"/home/pi/Temperaturmessung/gnuplot.txt" using 1:6 title 'Gerätetemperatur 2' with lines
set title "Aussentemperaturen"
set ylabel 'Temperatur (°C)'
set output "/var/www/gnuplot/aussen.svg"
plot "/home/pi/Temperaturmessung/gnuplot.txt" using 1:5 title 'Bodentemperatur' with lines , \
"/home/pi/Temperaturmessung/gnuplot.txt" using 1:7 title 'Luftfeuchtesensor' with lines , \
"/home/pi/Temperaturmessung/gnuplot.txt" using 1:10 title 'Aussentemperatur' with lines
set title "Luftdruck"
set ylabel 'hPa'
set nokey #keine Legende
set output "/var/www/gnuplot/luftdruck.svg"
plot "/home/pi/Temperaturmessung/gnuplot.txt" using 1:9 title 'Luftdruck' with lines
set title "Luftfeuchtigkeit"
set ylabel '% rel. Luftfeuchte'
set output "/var/www/gnuplot/luftfeuchte.svg"
plot "/home/pi/Temperaturmessung/gnuplot.txt" using 1:8 title 'Luftfeuchte' with lines
set title "Luftqualität"
set ylabel 'relativer Wert'
set output "/var/www/gnuplot/luftqualität.svg"
plot "/home/pi/Temperaturmessung/gnuplot.txt" using 1:12 title 'Luftqualität' with lines
set title "Prozessortemperatur"
set ylabel 'Temperatur (°C)'
set output "/var/www/gnuplot/prozessor.svg"
plot "/home/pi/Temperaturmessung/gnuplot.txt" using 1:11 title 'Prozessortemperatur' with lines