File:Einwohnerentwicklung von Buchholz in der Nordheide.svg
Summary
Description |
Deutsch: Einwohnerentwicklung von Buchholz in der Nordheide |
Source | Own work |
Author | Summer ... hier! (talk) 13:47, 16 October 2017 (UTC) |
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#00070830Einwohnerentwicklung%20von%20Buchholz%20in%20der%20Nordheide.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
set border 3 # Bit 1 (unten) + Bit 2 (links)
# Bereiche/Format/etc X-Achse
set xdata time
set xlabel 'Jahr'
set xrange ['31.12.1821':'31.12.2014']
set xtics '01.01.1500', 60 * 60 * 24 * 365.25 * 25
# xtics in Sekunden
# der Beginn der X-Einteilung kann außerhalb xrange
# liegen
set mxtics 5
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 5000
set ytics nomirror
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 für vier Graphen in vier Farben
plot \
'-' using 1:($2) with linespoints linecolor 'dark-blue' linetype 1 linewidth 1.5 pointtype 7 pointsize 0.30,\
'-' using 1:($2) with linespoints linecolor 'dark-red' linetype 1 linewidth 1.5 pointtype 7 pointsize 0.30
#
# Quelle:
# https://de.wikipedia.org/wiki/Buchholz_in_der_Nordheide#Einwohnerentwicklung
#
#
# Alter Gebietstand
#
31.12.1821;178
31.12.1871;350
31.12.1905;1220
31.12.1925;2138
31.12.1939;3110
31.12.1945;5000
31.12.1946;6003
31.12.1958;7523
06.06.1961;8574
31.12.1963;10364
31.12.1968;13590
27.05.1970;13726
30.06.1972;15273
EOF
#
#
# neuer Gebietsstand ab 1. Juli 1972
#
06.06.1961;13599
27.05.1970;19677
01.07.1972;22620
31.12.1975;26393
31.12.1998;35264
31.12.1999;35603
31.12.2000;35916
31.12.2001;36109
31.12.2002;36483
31.12.2003;36943
31.12.2004;37556
31.12.2005;37987
31.12.2006;38167
31.12.2007;38162
31.12.2010;40234
31.12.2012;40790
31.12.2014;41749
EOF