File:Einwohnerentwicklung von Lübeck seit 1990.svg

Summary

Description
Deutsch: Einwohnerentwicklung von Lübeck. Zu den zugrundeliegenden Daten siehe File:Einwohnerentwicklung von Lübeck (hochauflösend).svg
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%20von%20Lübeck%20seit%201990.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%20von%20Lübeck%20seit%201990.svg
#!/usr/bin/gnuplot
#
# GnuPlot Quellcode Abgekupfert (veraendert, kommentiert, etc.) von:
# https://commons.wikimedia.org/wiki/File:Berlin_population.svg
#
# Bitte beim Neugenerieren der SVG-Datei auch diesen Qeullcode anpassen.
# (ueber die Versionsgeschickte ist dann ausreichend nachvollziehbar wer
# was geaendert hat)

#input
set timefmt "%d.%m.%Y"      # Datumseingabe im Format dd.mm.jjjj
set datafile separator ";"  # Descriptor zw. Datum und Wert für Bevoelkerung

#output
unset key
set style data lines

# set style fill transparent solid 0.4
set style fill solid 0.4
set grid

set xdata time        # X-Achse bildet Zeit ab
set xlabel 'Jahr'     # Label der X-Achse
set xrange ['01.01.1990':'26.01.2016']  # Dargestellter Bereich der X-Achse
set xtics '01.01.1800', 60 * 60 * 24 * 365.25 * 5
                      # xtics in Sekunden
set mxtics 2          # Unterteilung 
set format x '%Y'     # Beschriftungsformat JJJJ

set ylabel 'Einwohnerzahl' # Label der Y-Achse
set ytics 10000            # Teilstriche
set mytics 5               # Unterteilung
set yrange [175000:275000] # Bereich
# Ein lakale Einstellung von Dezimalzahlen auswählen. 
# Die Optionen können unter Unix mit "locale -a" ermittelt werden. 
set decimalsign locale "de_DE.utf8"
set decimal     locale "de_DE.utf8"
set format y  "%'.0f"  # Ausgabeformat

# Ausgabe:
# 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,10"

# Plot Starten
plot '-' using 1:($2) with filledcurves below x1 lt rgb 'dark-blue' lw 2
#
# Zum Erzeugen einer neuen Version bitte die Daten von 
#   File:Einwohnerentwicklung von Lübeck (hochauflösend).svg
# hier übernehmen und neue Daten dort einpflegen.
Category:Temporal population graphs of Lübeck Category:Lübeck in the 1990s Category:Lübeck in the 21st century
Category:CC-Zero Category:Lübeck in the 1990s Category:Lübeck in the 21st century Category:Pages using deprecated source tags Category:Self-published work Category:Temporal population graphs of Lübeck Category:Valid SVG created with Gnuplot