File:Hamburg population.svg

Original file(SVG file, nominally 800 × 400 pixels, file size: 43 KB)

Captions

Captions

Add a one-line explanation of what this file represents

Summary edit

Description
Deutsch: Einwohnerentwicklung von Hamburg
Source Own work
Author Summer ... hier! (talk) 15:08, 23 October 2017 (UTC)

Licensing edit

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.

Gnuplot script to generate this plot edit

 
This W3C-unspecified plot was created with Gnuplot.
 
W3C-validity not checked.
#!/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                  # als Standard keine Legende
set style data lines       # wird bei 'plot' überschrieben 
set style fill transparent solid 0.4 # ebenfalls bei 'plot' überschrieben
set grid                   # 
set border 3               # Bit 1 (unten) + Bit 2 (links)


# Bereiche/Format/etc X-Achse 
set xdata time             # X-Achse als Zeitachse
set xlabel 'Jahr'          # Beschriftung X-Achse
set xlabel offset 0, 0.75  # Schrift etwas höher
set xrange ['01.01.950':'31.12.2016']
set xtics '01.01.100', 60 * 60 * 24 * 365.25 * 100
                           # xtics in Sekunden 
                           # der Beginn der X-Einteilung kann außerhalb xrange
                           # liegen
set xtics offset  0, 0.5   # Beschritung näher an die X-Achse
set mxtics 5               # Skalenstriche 
set xtics nomirror         # Nur unten Skalieren
set format x '%Y'          # Beschriftungsformat JJJJ
set xtics  out             # Skal. aussen damit sich nicht von Grafik 
                           # überschr. wird


# Bereiche/Format/etc Y-Achse
set ylabel 'Einwohnerzahl' offset 2 # Abstand Achse/Label 
set yrange [0:]
set ytics 250000
set ytics offset 0.5       # Schrift etwas nach rechts
set ytics nomirror
set decimalsign locale "de_DE.utf8" # Stelle Input und Output auf "," um 
                           # set decimalsign ',' würde nur Output umstellen, 
set format y  "%'.0f"      # Ausgabeformat
set mytics 5
set ytics  out             # Skal. aussen da sie sonst von Grafik 
                           # überschr. wird


#### Markierungsbalken für die beiden Weltkriege etc.
# Die set-Befehle ggf. auskommentieren
# Attribute für Markierungsbalken
set style rect fillcolor lt -1 fillstyle solid 0.1 noborder
#
# == Dreißigjähriger Krieg
 set obj rect from '23.05.1618', graph 0 to '24.10.1648' , graph 1
 set label "Dreißigjähriger Krieg" at '30.06.1633', graph 0.8 rotate by +60 center
# == Siebenjähriger Krieg
#set obj rect from '29.08.1756', graph 0 to '21.09.1762' , graph 1
#set label "Siebenjähriger Krieg"  at '30.06.1759', graph 0.8 rotate by +60 center
# == Hamburger Franzosenzeit
 set obj rect from '30.06.1806', graph 0 to '30.06.1814' , graph 1
 set label "Hamburger"     at '01.01.1810', graph 0.62 rotate by +60 center
 set label "Franzosenzeit" at '01.01.1810', graph 0.5  rotate by +60 center
# == Befreiungskriege
#set obj rect from '26.02.1813', graph 0 to '20.11.1815' , graph 1
#set label "Befreiungskriege"      at '30.06.1814', graph 0.8 rotate by +60 center
# == 1. Weltkrieg
 set obj rect from '28.07.1914', graph 0 to '11.11.1918' , graph 1
 set label "1. Weltkrieg"          at '30.06.1916', graph 0.9 rotate by +60 center
# ==  2. Weltkrieg
 set obj rect from '01.09.1939', graph 0 to '04.05.1945' , graph 1
 set label "2. Weltkrieg"          at '30.06.1942', graph 0.3 rotate by +60 center
# == Dädärä
#set obj rect from '07.10.1949', graph 0 to '03.10.1990' , graph 1
#set label "DDR"                   at '01.01.1970', graph 0.9 rotate by +60 center


# Ausgabeformat: Wir erzeugen SVG
# Die Ausgabedaten leiten wir bei UNIX in eine Pipe und sind so bei Namen der
# Ausgabedatei flexibel (Aufruf: Progname.plt > Ausgabe-svg) 
# Windowsbenutzer, die mit Pipes nicht umgehen könnten, sollten hier hier das 
# folgende 'set output ...' auskommentieren und den Dateinamen ggf. ersetzen. 
# set output 'Hamburg_population.svg' 
set term svg size 800,400 font "Arial,16"
# Die Parameter von 'set term' sind so gewählt, das man in Wikipedia bei einer 
# Einbindung [[Datei:Meine_Grafik.svg|mini|400px|Text]] noch Schrift/Details 
# erkennen kann. 


# Erzeugen der Ausgabe 
plot \
  'Hamburg_population.dat' using 1:2 with linespoints linecolor 'dark-blue'   linetype 1 linewidth 1.5 pointtype 7 pointsize 0.30,\

Daten edit

Die folgenden Daten bitte in eine Textdatei unter dem Namen "Hamburg_population.dat" abspeichern und ins gleiche Verzeichnis wie das GnuPlot-Script ablegen.

Update der Daten und Überschreiben der Grafik ausdrücklich erwünscht.

#
#
#
#
# Im Aug. 2017 die Datenz zw. 950 und 1787 aus 
# https://de.wikipedia.org/wiki/Einwohnerentwicklung_von_Hamburg#Von_950_bis_1870
# hinzu gefügt. In der Grafik waren die Daten - im Quellcode fehlten sie.
# user:summer
30.06.950;500
30.06.1050;900
30.06.1200;1500
30.06.1300;5000
30.06.1430;16000
30.06.1560;20000
30.06.1600;40000
30.06.1650;60000
30.06.1750;75000
30.06.1787;100000
# Ende Einfügung Aug. 2017
#
30.06.1800;130000
30.06.1811;106983
30.06.1814;55000
30.06.1826;122861
03.12.1834;130385
03.12.1837;135375
03.12.1840;136956
03.12.1846;148754
03.12.1852;161390
03.12.1855;166148
03.12.1858;171696
03.12.1861;178841
03.12.1864;175700
03.12.1867;225074
01.12.1871;240251
01.12.1875;264675
01.12.1880;289859
01.12.1885;305690
01.12.1890;323923
02.12.1895;625552
01.12.1900;705738
31.12.1901;725971
31.12.1902;739747
31.12.1903;754261
31.12.1904;776354
01.12.1905;802793
31.12.1906;830578
31.12.1907;856226
31.12.1908;881874
31.12.1909;907522
01.12.1910;931035
31.12.1911;946236
31.12.1912;1000903
31.12.1913;1031480
01.12.1916;876833
05.12.1917;846055
08.10.1919;985779
31.12.1919;1004427
31.12.1920;1026989
31.12.1921;1041057
31.12.1922;1071924
31.12.1923;1066991
31.12.1924;1089091
16.06.1925;1079126
31.12.1925;1087049
31.12.1926;1101132
31.12.1927;1115511
31.12.1928;1131599
31.12.1929;1145014
31.12.1930;1145124
31.12.1931;1135317
31.12.1932;1123500
16.06.1933;1129307
31.12.1933;1127917
31.12.1934;1112195
31.12.1935;1101105
31.12.1936;1096796
31.12.1937;1094715
31.12.1938;1689100
17.05.1939;1711877
31.12.1940;1725500
31.12.1944;958247
01.05.1945;1004325
31.12.1945;1350278
29.10.1946;1403300
31.12.1947;1482639
31.12.1948;1518900
13.09.1950;1605606
31.12.1951;1658038
31.12.1952;1687190
31.12.1953;1722819
25.09.1956;1751289
06.06.1961;1832346
31.12.1961;1840543
31.12.1962;1847523
31.12.1963;1854637
31.12.1964;1857431
31.12.1965;1854361
31.12.1966;1847267
31.12.1967;1832560
31.12.1968;1822837
31.12.1969;1817122
27.05.1970;1793823
31.12.1970;1793640
31.12.1971;1781621
31.12.1972;1766214
31.12.1973;1751621
31.12.1974;1733802
31.12.1975;1717383
31.12.1976;1698615
31.12.1977;1680340
31.12.1978;1664305
31.12.1979;1653043
31.12.1980;1645095
31.12.1981;1637132
31.12.1982;1623848
31.12.1983;1609531
31.12.1984;1592447
31.12.1985;1579884
31.12.1986;1571267
25.05.1987;1592770
31.12.1987;1594190
31.12.1988;1603070
31.12.1989;1626220
31.12.1990;1652363
31.12.1991;1668757
31.12.1992;1688785
31.12.1993;1702887
31.12.1994;1705872
31.12.1995;1707901
31.12.1996;1707986
31.12.1997;1704731
31.12.1998;1700089
31.12.1999;1704735
31.12.2000;1715392
31.12.2001;1726363
31.12.2002;1728806
31.12.2003;1734083
31.12.2004;1734830
31.12.2005;1743627
31.12.2006;1754182
31.12.2007;1770629
31.12.2008;1772100
31.12.2009;1774224
31.12.2010;1786448
# Im Aug. 2017 Daten aus 
# https://de.wikipedia.org/wiki/Einwohnerentwicklung_von_Hamburg#Ab_2011
# ergänzt. Dabei Daten aus der Spalte "Fortschreibung" den Vorzug gegeben.
09.05.2011;1706696
31.12.2011;1718187
31.12.2012;1734272
31.12.2013;1746342
31.12.2014;1762791
31.12.2015;1787408
31.12.2016;1810438 # nach Erg. vom 17.01.2018 in [[Einwohnerentwicklung von Hamburg]]
EOF

File history

Click on a date/time to view the file as it appeared at that time.

Date/TimeThumbnailDimensionsUserComment
current15:10, 19 January 2018Thumbnail for version as of 15:10, 19 January 2018800 × 400 (43 KB)Summer ... hier! (talk | contribs)Marker Hamburger Franzosenzeit
11:05, 19 January 2018Thumbnail for version as of 11:05, 19 January 2018800 × 400 (43 KB)Summer ... hier! (talk | contribs)Daten für 2016; auf normalbreite redziert (Grafik in breiter Version unter "Hamburg_population (w1600px).svg"
15:11, 23 October 2017Thumbnail for version as of 15:11, 23 October 20171,600 × 400 (35 KB)Summer ... hier! (talk | contribs)Doppelte Breite (beim Einbinden sollte <nowiki> thumb|800px|comment</nowiki> verwendet werden
12:34, 27 August 2017Thumbnail for version as of 12:34, 27 August 2017800 × 400 (29 KB)Summer ... hier! (talk | contribs)Daten Aktualisiert
16:08, 6 March 2011Thumbnail for version as of 16:08, 6 March 2011800 × 400 (24 KB)Gorgo (talk | contribs)changed start
16:02, 6 March 2011Thumbnail for version as of 16:02, 6 March 2011800 × 400 (28 KB)Gorgo (talk | contribs)== Summary == {{Information |Description={{en|1=Hamburg population statistics, since 950}} {{de|1=Einwohnerentwicklung von Hamburg seit 950}} |Source={{own}}; data from de:Einwohnerentwicklung_von_Hamburg |Author=Gorgo |Date=2011-03-06

There are no pages that use this file.

Metadata