File:Population of Eisenach.svg

Summary

Description
English: Development of Eisenach's population from 1830 to 2010
Date
Source Own work
Author Tkarcher
SVG development
InfoField
 The SVG code is valid.
 This plot was created with gnuplot.
Category:Valid SVG created with Gnuplot#Population%20of%20Eisenach.svg
 Category:Translation possible - SVGThis plot uses embedded text that can be easily translated using a text editor.

Licensing

I, the copyright holder of this work, hereby publish it under the following license:
w:en:Creative Commons
attribution share alike
This file is licensed under the Creative Commons Attribution-Share Alike 3.0 Unported 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.
Category:CC-BY-SA-3.0#Population%20of%20Eisenach.svgCategory:Self-published work

Gnuplot script to generate this graph

#!/usr/bin/gnuplot
# gnuplot 4.4 
 
#input
set timefmt "%d.%m.%Y"
set datafile separator ";"
 
#output
unset key
set style data lines
set style fill transparent solid 0.6
set grid
set encoding iso_8859_1
 
set xdata time
set xlabel 'Jahr'
set xrange ['31.12.1550':'31.12.2030']
set xtics 1576800000
set mxtics 5
set format x '%Y'
 
set ylabel 'Einwohnerzahl'
set yrange [0:55000]
set ytics 10000
set mytics 4
set format y '%.0f'
 
set term svg size 800,400 font "Arial,10"
set output 'esa_population.svg'
 
set object 1 rect at screen 0.31, screen 0.78 size screen 0.4, screen 0.28 \
    fc rgb '#FDFFE4' fs solid 1.0 border rgb '#6E5C49' lw 3
 
set object 2 rect at screen 0.14, screen 0.86 size char 2, char 1 \
    fc rgb '#578D99' fs transparent solid 0.6 border rgb '#578D99'
set label 2 "vor 1791: Geschätzt durch Historiker" at screen 0.16, screen 0.86 left 
 
set object 3 rect at screen 0.14, screen 0.78 size char 2, char 1 \
    fc rgb '#005D70' fs transparent solid 0.6 border rgb '#005D70' 
set label 3 "ab 1791: Belegt durch Volkszählungen" at screen 0.16, screen 0.78 left 
 
set object 4 rect at screen 0.14, screen 0.70 size char 2, char 1 \
    fc rgb '#F25D00' fs transparent solid 0.6 border rgb '#F25D00' 
set label 4 "ab 2011: Prognose der Bertelsmann-Stiftung" at screen 0.16, screen 0.70 left 
 
plot '-' using 1:($2) with filledcurves below x1 lt rgb '#578D99' lw 3, \
     '-' using 1:($2) with filledcurves below x1 lt rgb '#005D70' lw 3, \
     '-' using 1:($2) with filledcurves below x1 lt rgb '#F25D00' lw 3
31.12.1550;4500
31.12.1650;5500
31.12.1700;6500
1.1.1791;8214
e
31.12.1791;8214
31.12.1830;8698
31.12.1840;8521
03.12.1864;12072
01.12.1875;16164
1.12.1880;18624
1.12.1885;19743
1.12.1890;21339
2.12.1895;24346
1.12.1905;35153
1.12.1910;38362
16.06.1925;43385
16.06.1933;44695
17.05.1939;50464
29.10.1946;51834
31.08.1950;51777
31.12.1960;48109
01.01.1971;50918
31.12.1981;50674
31.12.1985;50559
31.12.1988;48361
31.12.1995;45337
31.12.2000;44442
31.12.2005;43727
31.12.2007;43308
31.12.2008;43051
31.12.2009;42847
31.12.2010;42750
e
31.12.2011;42750
31.12.2015;42260
31.12.2020;41560
31.12.2025;40670
31.12.2030;39600
e
Category:History of Eisenach Category:Images with Gnuplot source code Category:Temporal population graphs of Eisenach#Eisenach
Category:CC-BY-SA-3.0 Category:History of Eisenach Category:Images with Gnuplot source code Category:Self-published work Category:Temporal population graphs of Eisenach Category:Translation possible - SVG Category:Valid SVG created with Gnuplot