File:Einwohnerentwicklung von Hirschfeld (Brandenburg).svg

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

Captions

Captions

Add a one-line explanation of what this file represents

Summary

edit
Description
Deutsch: Einwohnerentwicklung von Hirschfeld_(Brandenburg)
Source Own work
Author Summer ... hier! (talk) 00:24, 20 January 2018 (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.1875':'30.06.2015']
set xtics '01.01.1000', 60 * 60 * 24 * 365.25 * 25
                           # 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 250
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
# == 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.9 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.6 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 'Einwohnerentwicklung_von_Hirschfeld_(Brandenburg).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 \
  'Einwohnerentwicklung_von_Hirschfeld_(Brandenburg).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 "Einwohnerentwicklung_von_Hirschfeld_(Brandenburg).dat" abspeichern und ins gleiche Verzeichnis wie das GnuPlot-Script ablegen.

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

#
# Quelle:
# https://de.wikipedia.org/wiki/Hirschfeld_(Brandenburg)#Bev%C3%B6lkerungsentwicklung
#
30.06.1875;1000
30.06.1890;1000
30.06.1910;1100
30.06.1925;1142
30.06.1933;1211
30.06.1939;1185
30.06.1946;1588
30.06.1950;1571
#
30.06.1964;1501
30.06.1971;1547
30.06.1981;1613
30.06.1985;1603
30.06.1989;1613
30.06.1990;1578
30.06.1991;1588
30.06.1992;1568
30.06.1993;1555
30.06.1994;1548
#
30.06.1995;1561
30.06.1996;1562
30.06.1997;1540
30.06.1998;1544
30.06.1999;1539
30.06.2000;1520
30.06.2001;1510
30.06.2002;1484
30.06.2003;1460
30.06.2004;1471
#
30.06.2005;1456
30.06.2006;1435
30.06.2007;1433
30.06.2008;1410
30.06.2009;1394
30.06.2010;1367
30.06.2011;1344
30.06.2012;1351
30.06.2013;1321
30.06.2014;1298
#
30.06.2015;1279
30.06.2016;1254 
EOF

File history

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

Date/TimeThumbnailDimensionsUserComment
current00:24, 20 January 2018Thumbnail for version as of 00:24, 20 January 2018800 × 400 (25 KB)Summer ... hier! (talk | contribs){{Information |Description = {{de|Einwohnerentwicklung von Hirschfeld_(Brandenburg)}} |Source = {{own}} |Author = ~~~~ |Date = }} == {{int:license-header}} == {{self|Cc-zero}} == Gnuplot script to generate this plot == {...

There are no pages that use this file.

Metadata