File:Wuppertal population.svg

Summary

Description
English: Wuppertal population statistics, since 1929
Deutsch: Einwohnerentwicklung von Wuppertal seit 1929
Date
Source Own work; data from de:Einwohnerentwicklung_von_Wuppertal
Author Gorgo

Gnuplot script to generate this plot

 
This W3C-unspecified plot was created with Gnuplot.
Category:Unspec SVG created with Gnuplot#00051130Wuppertal%20population.svg
#!/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.08.1929':'31.12.2015']
set xtics '01.01.1900', 60 * 60 * 24 * 365.25 * 10
                      #  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 [300000:]
set ytics 50000
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 
plot '-' using 1:($2) with filledcurves below x1 lt rgb 'dark-blue' lw 2


# Quelle:
# https://de.wikipedia.org/wiki/Einwohnerentwicklung_von_Wuppertal
#
01.08.1929;414951
31.12.1929;416400
31.12.1930;414700
31.12.1931;412700
31.12.1932;411400
16.06.1933;408602
31.12.1933;409270
31.12.1934;413050
31.12.1935;410404
31.12.1936;408023
31.12.1937;406303
31.12.1938;406300
17.05.1939;401672
31.12.1939;405000
31.12.1940;393486
31.12.1945;318209
29.10.1946;325846
31.12.1947;338942
31.12.1948;350600
30.06.1949;354046
13.09.1950;363224
31.12.1951;375493
31.12.1952;382983
31.12.1953;393684
31.12.1954;400635
31.12.1955;405428
25.09.1956;406225
31.12.1956;406653
31.12.1957;411938
31.12.1958;416573
31.12.1959;419638
31.12.1960;421489
06.06.1961;420711
31.12.1961;422035
31.12.1962;423103
31.12.1963;423453
31.12.1964;421167
31.12.1965;422461
31.12.1966;421218
31.12.1967;413252
31.12.1968;413122
31.12.1969;415345
27.05.1970;418454
31.12.1970;417566
31.12.1971;416699
31.12.1972;413819
31.12.1973;409715
31.12.1974;405144
31.12.1975;405369
31.12.1976;401609
31.12.1977;398729
31.12.1978;396125
31.12.1979;394605
31.12.1980;393381
31.12.1981;391758
31.12.1982;387951
31.12.1983;383775
31.12.1984;379393
31.12.1985;376579
31.12.1986;374217
25.05.1987;365662
31.12.1987;366546
31.12.1988;371283
31.12.1989;378312
31.12.1990;383660
31.12.1991;385463
31.12.1992;388102
31.12.1993;386625
31.12.1994;383776
31.12.1995;381884
31.12.1996;379820
31.12.1997;376693
31.12.1998;372218
31.12.1999;368993
31.12.2000;366434
31.12.2001;364784
31.12.2002;363522
31.12.2003;362137
31.12.2004;361077
31.12.2005;359237
31.12.2006;358330
31.12.2007;356420
31.12.2008;353308
31.12.2009;351050
31.12.2010;349721
31.12.2011;342570
31.12.2012;342885
31.12.2013;343488
31.12.2014;345425
31.12.2015;350046 # im Sep. 2017 aus Artikeltab. ergänzt (user:Summer)
e

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#Wuppertal%20population.svg
Category:Self-published work Category:Population statistics in Wuppertal Category:2011 in Wuppertal Category:Images with Gnuplot source code
Category:2011 in Wuppertal Category:CC-Zero Category:Images with Gnuplot source code Category:Pages using deprecated source tags Category:Population statistics in Wuppertal Category:Self-published work Category:Unspec SVG created with Gnuplot