File:Temperatur-Wülfrath.svg
Summary
Description |
English: A climate diagram of Wülfrath, Germany
Deutsch: Ein Klimadiagramm von Wülfrath, Deutschland |
Date | |
Source | Eigenes Werk (own work), Daten von |
Author | DickHuuhn |
Licensing
I, the copyright holder of this work, hereby publish it under the following licenses:
![]() |
Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. |
This file is licensed under the Creative Commons Attribution-Share Alike 3.0 Unported, 2.5 Generic, 2.0 Generic and 1.0 Generic license.
- You are free:
- to share – to copy, distribute and transmit the work
- to remix – to adapt the work
- Under the following conditions:
- attribution – You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
- share alike – If you remix, transform, or build upon the material, you must distribute your contributions under the same or compatible license as the original.
You may select the license of your choice.
Quelltext/Sourcecode
Category:Unspec SVG created with Gnuplot#00100321Temperatur-Wülfrath.svg# Ausgabedatei und Ausgabeformat set output 'Temperatur-Wülfrath.svg' set terminal svg set locale 'de_DE.UTF-8' # Formate für Datum set xdata time set timefmt "%d.%m" set format x "%b" # Titel set title 'Temperatur in Wülfrath, Deutschland' # Achsen und Gitter set xlabel 'Monat' set xtics out nomirror rotate autofreq scale 0.5,0 set ylabel 'Temperatur in °C' set ytics out nomirror scale 0.5,0 set grid ytics # Spannweite der Achsen set xrange ["01.01":"02.12"] # Hack, ohne den 02.12 würde Dez nicht angezeigt set yrange [-5:30] # Rahmen nur unten und links zeichnen set border 3 # Plotten, Linie ist orange, 3px breit plot 'wulfrath-temp.dat' using 1:2 with line lt 1 lw 1 title "Durchschn. Höchstwerte", \ 'wulfrath-temp.dat' using 1:3 with line lt 7 lw 1 title "Durchschn. Mittelwerte", \ 'wulfrath-temp.dat' using 1:4 with line lt 3 lw 1 title "Durchschn. Tiefstwerte"
wulfrath-temp.dat contains the following:
# Der Monat ist angegeben im Format %d.%m # Das ist ein Hack, um die X-Achse fein genug anpassen zu können. # Auf keinen Fall soll das Datum ein Hinweis sein, dass die Daten # am Ersten des Monats erhoben wurden. #Monat Höchst Mittel Tiefst 01.01 4 2 0 01.02 5 3 0 01.03 8 5 2 01.04 12 8 5 01.05 17 13 9 01.06 20 16 12 01.07 22 17 13 01.08 22 17 13 01.09 18 14 11 01.10 14 11 8 01.11 8 6 3 01.12 5 3 1Category:Wülfrath Category:Images with Gnuplot source code