File:Einwohnerentwicklung des Landkreis Bautzen.svg

Summary

Description
Deutsch: Einwohnerentwicklung des Landkreis Bautzen
Source Own work
Author Summer ... hier! (talk)

Licensing

I, the copyright holder of this work, hereby publish it under the following license:
Creative Commons CC-Zero This file is made available under the Creative Commons CC0 1.0 Universal Public Domain Dedication.
The person who associated a work with this deed has dedicated the work to the public domain by waiving all of their rights to the work worldwide under copyright law, including all related and neighboring rights, to the extent allowed by law. You can copy, modify, distribute and perform the work, even for commercial purposes, all without asking permission.

Category:CC-Zero#Einwohnerentwicklung%20des%20Landkreis%20Bautzen.svg
Category:Self-published work

Gnuplot script to generate this plot

 
This plot was created with Gnuplot by v.
Category:Valid SVG created with Gnuplot#Einwohnerentwicklung%20des%20Landkreis%20Bautzen.svg
#!/usr/bin/gnuplot
# gnuplot 


# Allgemeines zu den Eingabedaten
set timefmt "%d.%m.%Y"     # Zeitangaben in TT.MM.YYYY
set datafile separator ";" # Spaltenseparator 


# Allgemeines zur Ausgabe
unset key
set style data lines
set style fill transparent solid 0.4
set grid


# Bereiche/Format/etc X-Achse 
set xdata time
set xlabel 'Jahr'
set xrange ['01.01.1990':'31.12.2015']
set xtics '01.01.1990', 60 * 60 * 24 * 365.25 * 2
                      #  xtics in Sekunden 
                      # der Beginn der X-Einteilung kann außerhalb xrange
                      # liegen
set mxtics 2
set format x '%Y'     # Beschriftungsformat JJJJ


# Bereiche/Format/etc Y-Achse
set ylabel 'Einwohnerzahl'
set yrange [200000:]
set ytics 50000
set decimalsign locale "de_DE.utf8"
set decimal     locale "de_DE.utf8"
set format y  "%'.0f"  # Ausgabeformat
set mytics 5


# Ausgabeformat: Wir erzeugen SVG
# Die Ausgabedaten leiten wir in eine Pipe und sind so bei Namen der
# Ausgabedatei flexibel (Aufruf: Progname.plt > Ausgabe-svg)
set term svg size 800,400 font "Arial,14"
# keine "set output '<Dateiname>'" Angabe


# Erzeugen der Ausgabe 
plot '-' using 1:($2) with filledcurves below x1 lt rgb 'dark-blue' lw 2,\


# Quelle:
# https://de.wikipedia.org/wiki/Landkreis_Bautzen#Einwohnerentwicklung

03.10.1990;392132
31.12.1995;374309
31.12.2000;363677
31.12.2003;350077
31.12.2005;342712
31.12.2007;333470
31.12.2009;325032
31.12.2010;321511
09.05.2011;315174
31.12.2011;313618
31.12.2012;310898
30.09.2013;309058
31.12.2014;306570
31.12.2015;303273
EOF
Category:Landkreis Bautzen
Category:CC-Zero Category:Landkreis Bautzen Category:Pages using deprecated source tags Category:Self-published work Category:Valid SVG created with Gnuplot