# Aufbau der Datendatei aus Zeilen wie # >>Tue Jul 31 09:02:03 2001 21 665 387 461<< set terminal postscript eps monochrome #set terminal postscript set output "JANUAR.temp.eps" # Zusammensetzung des Datum-Zeit-Strings (hier ohne Wochentag) set timefmt "%b %d %H:%M:%S %Y" # Verwende Datum-Zeit-Strings als X-Achse set xdata time set grid set autoscale #set key box f(x) = 0.126 * x - 25.462; set yrange [-10:32] plot [ "Jan 1 00:00:00 2003" : "Jan 31 24:00:00 2003" ] 'JANUAR.messung0203.txt' u 2:(f($8)) t 'LDR-Wert' with lines, 'JANUAR.messung0203.txt' using 2:(f($9)) title 'Solarstrahlung [Wm^-2]' with lines #set yrange [20:30] #plot [ "Jan 17 00:00:00 2003" : "Jan 21 24:00:00 2003" ] 'JANUAR.messung0203.txt' u 2:(f($8)) t 'LDR-Wert' with lines, 'JANUAR.messung0203.txt' using 2:(f($9)) title 'Solarstrahlung [Wm^-2]' with lines