File:Einwohnerentwicklung von Kiel bis 1900.svg
Summary
Description |
Deutsch: Einwohnerentwicklung von Kiel |
Source | Own work |
Author | Summer ... hier! (talk) 07:56, 27 September 2017 (UTC) |
Other versions |
This file was derived from: Einwohnerentwicklung von Kiel.svg Category:Derivative versions |
Licensing
I, the copyright holder of this work, hereby publish it under the following license:
![]() ![]() |
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.
|
Gnuplot script to generate this plot
Category:Unspec SVG created with Gnuplot#00070516Einwohnerentwicklung%20von%20Kiel%20bis%201900.svgCategory:Unchecked SVG validity#!/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.1900':'31.12.1944']
set xtics '01.01.1000', 60 * 60 * 24 * 365.25 * 5
# xtics in Sekunden
# der Beginn der X-Einteilung kann außerhalb xrange
# liegen
set mxtics 5 # Unterteilung der Skalierung
set xtics nomirror # Nur unten Skalieren
set format x '%Y' # Beschriftungsformat JJJJ
# Bereiche/Format/etc Y-Achse
set ylabel 'Einwohnerzahl'
set yrange [0:]
set ytics 25000
set mytics 5
set ytics nomirror
set decimalsign locale "de_DE.utf8"
set decimal locale "de_DE.utf8"
set format y "%'.0f" # Ausgabeformat
# 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 (zum Anlegen der Datei 'daten.scv' siehe unten)
plot 'daten.csv' using 1:($2) with filledcurves below x1 lt rgb 'dark-blue' lw 2
Daten
Bitte ein CSV-Datei wie in der Information zu File:Einwohnerentwicklung von Kiel.svg beschrieben anlegen. Korrekturen und Ergänzungen bitte dort vornehmen.
Category:Temporal population graphs of Kiel Category:Kiel in the 14th century Category:Kiel in the 16th century Category:Kiel in the 17th century Category:Kiel in the 18th century Category:Kiel in the 19th century
Category:CC-Zero
Category:Derivative versions
Category:Kiel in the 14th century
Category:Kiel in the 16th century
Category:Kiel in the 17th century
Category:Kiel in the 18th century
Category:Kiel in the 19th century
Category:Pages using deprecated source tags
Category:Self-published work
Category:Temporal population graphs of Kiel
Category:Unchecked SVG validity
Category:Unspec SVG created with Gnuplot