File:Einwohnerentwicklung von Leipzig - 1800-.svg

Summary

Description
Deutsch: Einwohnerentwicklung von leipzig
Source Own work
Author Summer ... hier! 13:39, 6 September 2017 (UTC)
Other versions
SVG development
InfoField
 The SVG code is valid.
 This plot was created with gnuplot.
Category:Valid SVG created with Gnuplot#Einwohnerentwicklung%20von%20Leipzig%20-%201800-.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:
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#Einwohnerentwicklung%20von%20Leipzig%20-%201800-.svgCategory:Self-published work

Gnuplot script to generate this plot

Source code

Gnuplot code

#!/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.01.1800':'31.12.2015']
set xtics '01.01.1100', 60 * 60 * 24 * 365.25 * 50
                      #  xtics in Sekunden 
                      # der Beginn der X-Einteilung kann außerhalb xrange
                      # liegen
set mxtics 5
set format x '%Y'     # Beschriftungsformat JJJJ
set xtics nomirror    # Nur unten Skalieren


# Bereiche/Format/etc Y-Achse
set ylabel 'Einwohnerzahl'
set yrange [0:]
set ytics 100000
set decimalsign locale "de_DE.utf8"
set decimal     locale "de_DE.utf8"
set format      y  "%'.0f"  # Ausgabeformat
set mytics      5
set ytics nomirror


# 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 \
  './Einwohnerentwicklung_von_Leipzig.cvs'\
    using 1:($2) axes x1y1 with linespoints lc 'dark-blue'  lt 1 lw 2 pt 7 ps 0.5

#
# In der Dateibeschreibung von [[File:Einwohnerentwicklung_von_Leipzig.svg]] 
# sind die zum Erstellen dieser Grafik notwenigen Daten eingestellt. 
# Bitte aus den Daten die Datei 'Einwohnerentwicklung_von_Leipzig.cvs'
# erzeugen und in gleiche Verz. wie diese GnuPlot-Quelle ablegen.
Category:Temporal population graphs of Leipzig
Category:CC-Zero Category:Created with Gnuplot code Category:Self-published work Category:Temporal population graphs of Leipzig Category:Translation possible - SVG Category:Valid SVG created with Gnuplot