Datei:COVID-19-Pandemie - NP (Nepal) - Tote (800px).svg

Originaldatei(SVG-Datei, Basisgröße: 800 × 450 Pixel, Dateigröße: 471 KB)

Diese Datei und die Informationen unter dem roten Trennstrich werden aus dem zentralen Medienarchiv Wikimedia Commons eingebunden.

Zur Beschreibungsseite auf Commons


Beschreibung

Beschreibung
Deutsch: COVID-19-Pandemie - NP (Nepal) - Tote (800px)
Datum laufende Aktualisierungen
Quelle Daten von der WHO - https://covid19.who.int/WHO-COVID-19-global-data.csv - durch Klicken auffindbar über https://covid19.who.int/table
Urheber Summer ... hier!
SVG‑Erstellung
InfoField
 
Der SVG-Code ist valide.
 
Diese Vektorgrafik wurde mit Gnuplot erstellt.
 
 Dieser Plot verwendet Text-Einbettung, die mit einem Texteditor leicht übersetzbar ist.
Quelltext
InfoField
Gnuplot code
# input (Zeitformat und Separator definieren)
#
set timefmt "%Y-%m-%d"
set datafile separator ';'


# Variablen zeile_X_stat setzten
# (every ::0 steht für 'ab erster Zeile' und kann weggelassen werden)
stats $WHO_data every ::0 using 5 name "zeile_5_stat" nooutput
stats $WHO_data every ::0 using 6 name "zeile_6_stat" nooutput
stats $WHO_data every ::0 using 7 name "zeile_7_stat" nooutput
stats $WHO_data every ::0 using 8 name "zeile_8_stat" nooutput


# Start und Ende ermitteln und Label setzen (incl. Konsolenausgabe)
stats $WHO_data every ::0   u (strptime("%Y-%m-%d",strcol(1))) name "datum" nooutput
print '     -----Stats-(Timestamp)----'
print '     Start:          ', strftime("%d. %B %Y",datum_min)
print '     Ende:           ', strftime("%d. %B %Y",datum_max)
print '     --------------------------'
# label fuer Grafikueberschrtft oben links mit den ermittelten Werten setzen
set label 'Daten vom '.strftime("%d.%m.%y",datum_min).' bis '.strftime("%d.%m.%y",datum_max) at graph 0.03, graph 0.93


# als Workaround nehmen wir statt zweimal 'ylabel' hier zweimal 'label'
# (bei multiplot ist es schwierig fuer alle Plots ein ylabel mit gleichen seitl. Einzug zu finden)
set label "Tote (kumuliert)" at screen 0.017, 0.700 rotate by +90 center
set label "Tote" at screen 0.017, 0.300 rotate by +90 center


# output
# 
# Name der SVG-Datei
set    output   'COVID-19-Pandemie_-_NP_(Nepal)_-_Tote_(800px).svg'
unset  key                     # keine Box fuer Legende
set    border   3              # Rahmen unten (Bit 1) und links (+ Bit 2)
set    xtics scale  0.7, 0.4   # Skalenstriche x-Achse etwas kleiner 
set    ytics scale  0.7, 0.4   # Skalenstriche y-Achse etwas kleiner 
set    ytics offset 0.4, 0.0   # Zahlen eine Idee nach rechts (mehr Abstand vom Label)


# 'Wasserzeichen' für commonsprüfung
set label 'NP' at screen 0.01, 0.02 textcolor rgb '#ffffff'  font 'Arial,8'


# Gitterlinienen per Hand setzen 
set style line 1 linetype rgb '#4f4f4f' linewidth 0.25 # Def. Major-grid
set style line 2 linetype rgb '#9f9f9f' linewidth 0.20 # def. Minor-grid
unset grid
set grid noxtics nomxtics  # Keine Gitterlinen an der 1. X-Achse (Monate)
set grid x2tics  nomx2tics # Gitterliniene an der 2. X-Achse (Kalenderwochen)
set grid ytics mytics      # Gitterl. an der Y-Achse
set grid back              # Gitter im Hintergrund
set grid linestyle 1, linestyle 2 # Setzen des linestyle fuer Major u. Minor


# X-Achsenbeschriftung:
# ueber x1 machen wir die Monatsbschriftung, ueber x2 die Kalenderwochenbeschriftung 
#
# beide X-Achsen, also x1 und x2, als Zeitachse definieren
set  xdata time
set x2data time
# Bereich (von - bis) der X-Achse definieren
# Beginnt am 1. Jan. 2020 und Edit heute plus 6 Tage
xrange_max=strftime("%Y-%m-%d", time(0) + (60*60*24*6)) 
# zuvor Berechnetes xrange_max setzten
set  xrange  ['2020-01-01': xrange_max]
set x2range  ['2020-01-01': xrange_max]
# die Maker fuer Monat setzen wir per Hand. Als 'format' geben wir einen leeren String an damit 
# kein Text generiert wird (fuer die untere Grafik setzen wir den Text spaeter)
set  xtics format ""        # Format auf Nichts damit gnuplot die folgenden Daten nicht aufloest
set  xtics ( "2020-01-01" \
           , "2020-02-01" \
           , "2020-03-01" \
           , "2020-04-01" \
           , "2020-05-01" \
           , "2020-06-01" \
           , "2020-07-01" \
           , "2020-08-01" \
           , "2020-09-01" \
           , "2020-10-01" \
           , "2020-11-01" \
           , "2020-12-01" \
           , "2021-01-01" \
           , "2021-02-01" \
           , "2021-03-01" \
           )
#            
# Kalenderwochen-Striche
#
# fuer x2 (KW) ebendalls keine Beschriftung
set format x2 ''
# der 6. Jan. 2020 war ein Montag - da setzen wir den ersten Strich und die 
# folgenden Striche alle 7 Tage (hier in 60 * 60 * 24 * 7 Sekunden)
set  x2tics   '2020-01-06', 60 * 60 * 24 * 7
set  x2tics scale 0
set   xtics nomirror
unset mxtics


# Format Y-Achse
set  decimalsign locale "de_DE.utf8"
set  format y "%'.0f"
set  yrange [-100:*]
set   ytics  500
set  mytics  5
set   ytics  nomirror


# Zebramuster
set style rect fillcolor lt -1 fillstyle solid 0.06 noborder
do for [i=1:12:2] {
  marker_start=sprintf("2020-%1.2d-01",i)
  marker_stop =sprintf("2020-%1.2d-01",i+1)
  set object rectangle from marker_start,graph 0 to marker_stop, graph 1
  marker_start=sprintf("2021-%1.2d-01",i)
  marker_stop =sprintf("2021-%1.2d-01",i+1)
  set object rectangle from marker_start,graph 0 to marker_stop, graph 1
}


# Groesse und Schrift definieren
# 
# Zur Variablen 'datum_max' siehe oben
my_svg_name=strftime("COVID_%d_%m_%Y_NP",datum_max)
set  term svg size 800,450 font "Arial,16" name my_svg_name



###########################################################################################

set lmargin  10.0 # linker Rand fuer Beschriftung Y-Achse sollte nicht auf Auto stehen
set rmargin   1.0 # rechter Rand 
set tmargin   1.0 # top margin
set bmargin   0.0 # bottom margin
set multiplot

  # Ausgabe oberer Graph
  set size              1.000, 0.550 # Groesse der Grafik
  set origin            0.000, 0.450 # def. der linken unteren Ecke
  unset xlabel
  plot $WHO_data usi 1:8 axis x1y1 tit 'Infizierte' lt rgb '#700070' lw 1.75 with lines
  
  # Ausgabe unterer Graph
  set   tmargin 0.4 # Wert von oben ueberschreiben damit Grafiken enger zusammen
  unset bmargin     # oben wurde bottommargin auf null gesetzt - jetzt wieder auto damit Platz fuer Skala
  unset label       # 
  set size              1.000, 0.450
  set origin            0.000, 0.000
  # Wenn das Datumsintervall so gross wird das die Labels zu eng gesetzt sind 
  # hier jeden zweiten Eintrag loeschen!
  set xtics rotate by +30 center offset -1.5,-0.6
  set xtics add ( "   2020"    "2020-01-01" \
                , "1. Feb."    "2020-02-01" \
                , "1. März"    "2020-03-01" \
                , "1. Apr."    "2020-04-01" \
                , "1. Mai"     "2020-05-01" \
                , "1. Jun."    "2020-06-01" \
                , "1. Jul."    "2020-07-01" \
                , "1. Aug."    "2020-08-01" \
                , "1. Sep."    "2020-09-01" \
                , "1. Okt."    "2020-10-01" \
                , "1. Nov."    "2020-11-01" \
                , "1. Dez."    "2020-12-01" \
                , "   2021"    "2021-01-01" \
                , "1. Feb."    "2021-02-01" \
                , "1. März"    "2021-03-01" \
                )
  set  xlabel "Datum (Monats- und KW-Skala)"
  set  yrange [-2:*]
  set   ytics  10
  set  mytics  5
  
  # Ueber den Wert von lw kann man die Sichtbarkeit bei kl. Aufl. regulieren
  plot $WHO_data usi 1:7 axis x1y1 tit '' lt rgb '#700070' lw 0.75 with impulses

unset multiplot
WHO data
WHO data
== Gnuplot script to generate this plot ==

#!/usr/bin/env gnuplot

# Der folgende Quellcode ist Gemeinfrei bzw. steht unter Liz. „CC0 1.0 Verzicht auf das Copyright“
# (gegen freundliche Nennung des Verbreitungsweges habe ich nat. keine einwände)

# Auszug der WHO Daten von https://covid19.who.int/WHO-COVID-19-global-data.csv als HereDoc
# (als Separator wurde Komma durch Semikolon getauscht um Verwechslung zum deut. Dezimaltrenner zu vermeiden)
#
# 1. Spalte: Date_reported 
# 2. Spalte: Country_code 
# 3. Spalte: Country 
# 4. Spalte: WHO_region 
# 5. Spalte: New_cases 
# 6. Spalte: Cumulative_cases 
# 7. Spalte: New_deaths 
# 8. Spalte: Cumulative_deaths
$WHO_data << EndOfData
2020-01-03;NP;Nepal;SEARO;0;0;0;0
2020-01-04;NP;Nepal;SEARO;0;0;0;0
2020-01-05;NP;Nepal;SEARO;0;0;0;0
2020-01-06;NP;Nepal;SEARO;0;0;0;0
2020-01-07;NP;Nepal;SEARO;0;0;0;0
2020-01-08;NP;Nepal;SEARO;0;0;0;0
2020-01-09;NP;Nepal;SEARO;0;0;0;0
2020-01-10;NP;Nepal;SEARO;0;0;0;0
2020-01-11;NP;Nepal;SEARO;0;0;0;0
2020-01-12;NP;Nepal;SEARO;0;0;0;0
2020-01-13;NP;Nepal;SEARO;0;0;0;0
2020-01-14;NP;Nepal;SEARO;0;0;0;0
2020-01-15;NP;Nepal;SEARO;0;0;0;0
2020-01-16;NP;Nepal;SEARO;0;0;0;0
2020-01-17;NP;Nepal;SEARO;0;0;0;0
2020-01-18;NP;Nepal;SEARO;0;0;0;0
2020-01-19;NP;Nepal;SEARO;0;0;0;0
2020-01-20;NP;Nepal;SEARO;0;0;0;0
2020-01-21;NP;Nepal;SEARO;0;0;0;0
2020-01-22;NP;Nepal;SEARO;0;0;0;0
2020-01-23;NP;Nepal;SEARO;5;5;0;0
2020-01-24;NP;Nepal;SEARO;0;5;0;0
2020-01-25;NP;Nepal;SEARO;0;5;0;0
2020-01-26;NP;Nepal;SEARO;0;5;0;0
2020-01-27;NP;Nepal;SEARO;0;5;0;0
2020-01-28;NP;Nepal;SEARO;0;5;0;0
2020-01-29;NP;Nepal;SEARO;0;5;0;0
2020-01-30;NP;Nepal;SEARO;0;5;0;0
2020-01-31;NP;Nepal;SEARO;0;5;0;0
2020-02-01;NP;Nepal;SEARO;0;5;0;0
2020-02-02;NP;Nepal;SEARO;0;5;0;0
2020-02-03;NP;Nepal;SEARO;0;5;0;0
2020-02-04;NP;Nepal;SEARO;0;5;0;0
2020-02-05;NP;Nepal;SEARO;0;5;0;0
2020-02-06;NP;Nepal;SEARO;0;5;0;0
2020-02-07;NP;Nepal;SEARO;0;5;0;0
2020-02-08;NP;Nepal;SEARO;0;5;0;0
2020-02-09;NP;Nepal;SEARO;0;5;0;0
2020-02-10;NP;Nepal;SEARO;0;5;0;0
2020-02-11;NP;Nepal;SEARO;0;5;0;0
2020-02-12;NP;Nepal;SEARO;0;5;0;0
2020-02-13;NP;Nepal;SEARO;0;5;0;0
2020-02-14;NP;Nepal;SEARO;0;5;0;0
2020-02-15;NP;Nepal;SEARO;0;5;0;0
2020-02-16;NP;Nepal;SEARO;0;5;0;0
2020-02-17;NP;Nepal;SEARO;0;5;0;0
2020-02-18;NP;Nepal;SEARO;0;5;0;0
2020-02-19;NP;Nepal;SEARO;0;5;0;0
2020-02-20;NP;Nepal;SEARO;0;5;0;0
2020-02-21;NP;Nepal;SEARO;0;5;0;0
2020-02-22;NP;Nepal;SEARO;0;5;0;0
2020-02-23;NP;Nepal;SEARO;0;5;0;0
2020-02-24;NP;Nepal;SEARO;0;5;0;0
2020-02-25;NP;Nepal;SEARO;0;5;0;0
2020-02-26;NP;Nepal;SEARO;0;5;0;0
2020-02-27;NP;Nepal;SEARO;0;5;0;0
2020-02-28;NP;Nepal;SEARO;0;5;0;0
2020-02-29;NP;Nepal;SEARO;0;5;0;0
2020-03-01;NP;Nepal;SEARO;0;5;0;0
2020-03-02;NP;Nepal;SEARO;0;5;0;0
2020-03-03;NP;Nepal;SEARO;0;5;0;0
2020-03-04;NP;Nepal;SEARO;0;5;0;0
2020-03-05;NP;Nepal;SEARO;0;5;0;0
2020-03-06;NP;Nepal;SEARO;0;5;0;0
2020-03-07;NP;Nepal;SEARO;0;5;0;0
2020-03-08;NP;Nepal;SEARO;0;5;0;0
2020-03-09;NP;Nepal;SEARO;0;5;0;0
2020-03-10;NP;Nepal;SEARO;0;5;0;0
2020-03-11;NP;Nepal;SEARO;0;5;0;0
2020-03-12;NP;Nepal;SEARO;0;5;0;0
2020-03-13;NP;Nepal;SEARO;0;5;0;0
2020-03-14;NP;Nepal;SEARO;0;5;0;0
2020-03-15;NP;Nepal;SEARO;0;5;0;0
2020-03-16;NP;Nepal;SEARO;0;5;0;0
2020-03-17;NP;Nepal;SEARO;0;5;0;0
2020-03-18;NP;Nepal;SEARO;0;5;0;0
2020-03-19;NP;Nepal;SEARO;0;5;0;0
2020-03-20;NP;Nepal;SEARO;0;5;0;0
2020-03-21;NP;Nepal;SEARO;0;5;0;0
2020-03-22;NP;Nepal;SEARO;0;5;0;0
2020-03-23;NP;Nepal;SEARO;0;5;0;0
2020-03-24;NP;Nepal;SEARO;-3;2;0;0
2020-03-25;NP;Nepal;SEARO;0;2;0;0
2020-03-26;NP;Nepal;SEARO;1;3;0;0
2020-03-27;NP;Nepal;SEARO;0;3;0;0
2020-03-28;NP;Nepal;SEARO;0;3;0;0
2020-03-29;NP;Nepal;SEARO;2;5;0;0
2020-03-30;NP;Nepal;SEARO;0;5;0;0
2020-03-31;NP;Nepal;SEARO;0;5;0;0
2020-04-01;NP;Nepal;SEARO;0;5;0;0
2020-04-02;NP;Nepal;SEARO;0;5;0;0
2020-04-03;NP;Nepal;SEARO;1;6;0;0
2020-04-04;NP;Nepal;SEARO;0;6;0;0
2020-04-05;NP;Nepal;SEARO;3;9;0;0
2020-04-06;NP;Nepal;SEARO;0;9;0;0
2020-04-07;NP;Nepal;SEARO;0;9;0;0
2020-04-08;NP;Nepal;SEARO;0;9;0;0
2020-04-09;NP;Nepal;SEARO;0;9;0;0
2020-04-10;NP;Nepal;SEARO;0;9;0;0
2020-04-11;NP;Nepal;SEARO;0;9;0;0
2020-04-12;NP;Nepal;SEARO;3;12;0;0
2020-04-13;NP;Nepal;SEARO;2;14;0;0
2020-04-14;NP;Nepal;SEARO;2;16;0;0
2020-04-15;NP;Nepal;SEARO;0;16;0;0
2020-04-16;NP;Nepal;SEARO;0;16;0;0
2020-04-17;NP;Nepal;SEARO;0;16;0;0
2020-04-18;NP;Nepal;SEARO;14;30;0;0
2020-04-19;NP;Nepal;SEARO;1;31;0;0
2020-04-20;NP;Nepal;SEARO;0;31;0;0
2020-04-21;NP;Nepal;SEARO;1;32;0;0
2020-04-22;NP;Nepal;SEARO;10;42;0;0
2020-04-23;NP;Nepal;SEARO;3;45;0;0
2020-04-24;NP;Nepal;SEARO;3;48;0;0
2020-04-25;NP;Nepal;SEARO;1;49;0;0
2020-04-26;NP;Nepal;SEARO;2;51;0;0
2020-04-27;NP;Nepal;SEARO;1;52;0;0
2020-04-28;NP;Nepal;SEARO;0;52;0;0
2020-04-29;NP;Nepal;SEARO;5;57;0;0
2020-04-30;NP;Nepal;SEARO;0;57;0;0
2020-05-01;NP;Nepal;SEARO;2;59;0;0
2020-05-02;NP;Nepal;SEARO;0;59;0;0
2020-05-03;NP;Nepal;SEARO;10;69;0;0
2020-05-04;NP;Nepal;SEARO;6;75;0;0
2020-05-05;NP;Nepal;SEARO;7;82;0;0
2020-05-06;NP;Nepal;SEARO;17;99;0;0
2020-05-07;NP;Nepal;SEARO;0;99;0;0
2020-05-08;NP;Nepal;SEARO;3;102;0;0
2020-05-09;NP;Nepal;SEARO;7;109;0;0
2020-05-10;NP;Nepal;SEARO;1;110;0;0
2020-05-11;NP;Nepal;SEARO;11;121;0;0
2020-05-12;NP;Nepal;SEARO;70;191;0;0
2020-05-13;NP;Nepal;SEARO;52;243;0;0
2020-05-14;NP;Nepal;SEARO;6;249;0;0
2020-05-15;NP;Nepal;SEARO;9;258;0;0
2020-05-16;NP;Nepal;SEARO;23;281;1;1
2020-05-17;NP;Nepal;SEARO;14;295;1;2
2020-05-18;NP;Nepal;SEARO;62;357;0;2
2020-05-19;NP;Nepal;SEARO;45;402;0;2
2020-05-20;NP;Nepal;SEARO;25;427;0;2
2020-05-21;NP;Nepal;SEARO;27;454;1;3
2020-05-22;NP;Nepal;SEARO;62;516;0;3
2020-05-23;NP;Nepal;SEARO;68;584;0;3
2020-05-24;NP;Nepal;SEARO;19;603;0;3
2020-05-25;NP;Nepal;SEARO;79;682;1;4
2020-05-26;NP;Nepal;SEARO;90;772;0;4
2020-05-27;NP;Nepal;SEARO;114;886;0;4
2020-05-28;NP;Nepal;SEARO;156;1042;1;5
2020-05-29;NP;Nepal;SEARO;170;1212;1;6
2020-05-30;NP;Nepal;SEARO;189;1401;0;6
2020-05-31;NP;Nepal;SEARO;171;1572;2;8
2020-06-01;NP;Nepal;SEARO;0;1572;0;8
2020-06-02;NP;Nepal;SEARO;239;1811;0;8
2020-06-03;NP;Nepal;SEARO;288;2099;0;8
2020-06-04;NP;Nepal;SEARO;201;2300;1;9
2020-06-05;NP;Nepal;SEARO;334;2634;1;10
2020-06-06;NP;Nepal;SEARO;278;2912;1;11
2020-06-07;NP;Nepal;SEARO;323;3235;2;13
2020-06-08;NP;Nepal;SEARO;213;3448;0;13
2020-06-09;NP;Nepal;SEARO;314;3762;1;14
2020-06-10;NP;Nepal;SEARO;323;4085;1;15
2020-06-11;NP;Nepal;SEARO;279;4364;0;15
2020-06-12;NP;Nepal;SEARO;250;4614;0;15
2020-06-13;NP;Nepal;SEARO;448;5062;1;16
2020-06-14;NP;Nepal;SEARO;273;5335;2;18
2020-06-15;NP;Nepal;SEARO;425;5760;1;19
2020-06-16;NP;Nepal;SEARO;451;6211;0;19
2020-06-17;NP;Nepal;SEARO;380;6591;0;19
2020-06-18;NP;Nepal;SEARO;586;7177;1;20
2020-06-19;NP;Nepal;SEARO;671;7848;2;22
2020-06-20;NP;Nepal;SEARO;426;8274;0;22
2020-06-21;NP;Nepal;SEARO;331;8605;0;22
2020-06-22;NP;Nepal;SEARO;421;9026;1;23
2020-06-23;NP;Nepal;SEARO;535;9561;0;23
2020-06-24;NP;Nepal;SEARO;538;10099;1;24
2020-06-25;NP;Nepal;SEARO;629;10728;0;24
2020-06-26;NP;Nepal;SEARO;434;11162;2;26
2020-06-27;NP;Nepal;SEARO;593;11755;1;27
2020-06-28;NP;Nepal;SEARO;554;12309;1;28
2020-06-29;NP;Nepal;SEARO;463;12772;0;28
2020-06-30;NP;Nepal;SEARO;476;13248;1;29
2020-07-01;NP;Nepal;SEARO;316;13564;0;29
2020-07-02;NP;Nepal;SEARO;482;14046;1;30
2020-07-03;NP;Nepal;SEARO;473;14519;1;31
2020-07-04;NP;Nepal;SEARO;740;15259;1;32
2020-07-05;NP;Nepal;SEARO;232;15491;2;34
2020-07-06;NP;Nepal;SEARO;293;15784;0;34
2020-07-07;NP;Nepal;SEARO;180;15964;1;35
2020-07-08;NP;Nepal;SEARO;204;16168;0;35
2020-07-09;NP;Nepal;SEARO;255;16423;0;35
2020-07-10;NP;Nepal;SEARO;108;16531;0;35
2020-07-11;NP;Nepal;SEARO;118;16649;0;35
2020-07-12;NP;Nepal;SEARO;70;16719;3;38
2020-07-13;NP;Nepal;SEARO;82;16801;0;38
2020-07-14;NP;Nepal;SEARO;144;16945;0;38
2020-07-15;NP;Nepal;SEARO;116;17061;0;38
2020-07-16;NP;Nepal;SEARO;116;17177;1;39
2020-07-17;NP;Nepal;SEARO;167;17344;0;39
2020-07-18;NP;Nepal;SEARO;101;17445;1;40
2020-07-19;NP;Nepal;SEARO;57;17502;0;40
2020-07-20;NP;Nepal;SEARO;156;17658;0;40
2020-07-21;NP;Nepal;SEARO;186;17844;0;40
2020-07-22;NP;Nepal;SEARO;150;17994;0;40
2020-07-23;NP;Nepal;SEARO;100;18094;2;42
2020-07-24;NP;Nepal;SEARO;147;18241;1;43
2020-07-25;NP;Nepal;SEARO;133;18374;1;44
2020-07-26;NP;Nepal;SEARO;109;18483;1;45
2020-07-27;NP;Nepal;SEARO;130;18613;0;45
2020-07-28;NP;Nepal;SEARO;139;18752;3;48
2020-07-29;NP;Nepal;SEARO;311;19063;1;49
2020-07-30;NP;Nepal;SEARO;210;19273;0;49
2020-07-31;NP;Nepal;SEARO;274;19547;3;52
2020-08-01;NP;Nepal;SEARO;224;19771;4;56
2020-08-02;NP;Nepal;SEARO;315;20086;0;56
2020-08-03;NP;Nepal;SEARO;246;20332;1;57
2020-08-04;NP;Nepal;SEARO;418;20750;0;57
2020-08-05;NP;Nepal;SEARO;259;21009;1;58
2020-08-06;NP;Nepal;SEARO;381;21390;2;60
2020-08-07;NP;Nepal;SEARO;360;21750;5;65
2020-08-08;NP;Nepal;SEARO;464;22214;5;70
2020-08-09;NP;Nepal;SEARO;378;22592;3;73
2020-08-10;NP;Nepal;SEARO;380;22972;2;75
2020-08-11;NP;Nepal;SEARO;338;23310;4;79
2020-08-12;NP;Nepal;SEARO;638;23948;4;83
2020-08-13;NP;Nepal;SEARO;484;24432;8;91
2020-08-14;NP;Nepal;SEARO;525;24957;4;95
2020-08-15;NP;Nepal;SEARO;594;25551;4;99
2020-08-16;NP;Nepal;SEARO;468;26019;3;102
2020-08-17;NP;Nepal;SEARO;641;26660;2;104
2020-08-18;NP;Nepal;SEARO;581;27241;3;107
2020-08-19;NP;Nepal;SEARO;1016;28257;7;114
2020-08-20;NP;Nepal;SEARO;681;28938;6;120
2020-08-21;NP;Nepal;SEARO;707;29645;6;126
2020-08-22;NP;Nepal;SEARO;838;30483;11;137
2020-08-23;NP;Nepal;SEARO;634;31117;9;146
2020-08-24;NP;Nepal;SEARO;818;31935;3;149
2020-08-25;NP;Nepal;SEARO;743;32678;8;157
2020-08-26;NP;Nepal;SEARO;855;33533;7;164
2020-08-27;NP;Nepal;SEARO;885;34418;11;175
2020-08-28;NP;Nepal;SEARO;1111;35529;8;183
2020-08-29;NP;Nepal;SEARO;927;36456;12;195
2020-08-30;NP;Nepal;SEARO;884;37340;12;207
2020-08-31;NP;Nepal;SEARO;1221;38561;14;221
2020-09-01;NP;Nepal;SEARO;899;39460;7;228
2020-09-02;NP;Nepal;SEARO;1069;40529;11;239
2020-09-03;NP;Nepal;SEARO;1120;41649;12;251
2020-09-04;NP;Nepal;SEARO;1228;42877;6;257
2020-09-05;NP;Nepal;SEARO;1359;44236;14;271
2020-09-06;NP;Nepal;SEARO;1041;45277;9;280
2020-09-07;NP;Nepal;SEARO;980;46257;9;289
2020-09-08;NP;Nepal;SEARO;979;47236;11;300
2020-09-09;NP;Nepal;SEARO;902;48138;6;306
2020-09-10;NP;Nepal;SEARO;1081;49219;6;312
2020-09-11;NP;Nepal;SEARO;1246;50465;5;317
2020-09-12;NP;Nepal;SEARO;1454;51919;5;322
2020-09-13;NP;Nepal;SEARO;1201;53120;14;336
2020-09-14;NP;Nepal;SEARO;1039;54159;9;345
2020-09-15;NP;Nepal;SEARO;1170;55329;15;360
2020-09-16;NP;Nepal;SEARO;1459;56788;11;371
2020-09-17;NP;Nepal;SEARO;1539;58327;8;379
2020-09-18;NP;Nepal;SEARO;1246;59573;4;383
2020-09-19;NP;Nepal;SEARO;2020;61593;7;390
2020-09-20;NP;Nepal;SEARO;1204;62797;11;401
2020-09-21;NP;Nepal;SEARO;1325;64122;10;411
2020-09-22;NP;Nepal;SEARO;1154;65276;16;427
2020-09-23;NP;Nepal;SEARO;1356;66632;2;429
2020-09-24;NP;Nepal;SEARO;1172;67804;7;436
2020-09-25;NP;Nepal;SEARO;1497;69301;17;453
2020-09-26;NP;Nepal;SEARO;1313;70614;6;459
2020-09-27;NP;Nepal;SEARO;1207;71821;8;467
2020-09-28;NP;Nepal;SEARO;1573;73394;10;477
2020-09-29;NP;Nepal;SEARO;1351;74745;4;481
2020-09-30;NP;Nepal;SEARO;1513;76258;10;491
2020-10-01;NP;Nepal;SEARO;1559;77817;7;498
2020-10-02;NP;Nepal;SEARO;1911;79728;11;509
2020-10-03;NP;Nepal;SEARO;2722;82450;11;520
2020-10-04;NP;Nepal;SEARO;2120;84570;8;528
2020-10-05;NP;Nepal;SEARO;2253;86823;7;535
2020-10-06;NP;Nepal;SEARO;2440;89263;19;554
2020-10-07;NP;Nepal;SEARO;1551;90814;9;563
2020-10-08;NP;Nepal;SEARO;3439;94253;15;578
2020-10-09;NP;Nepal;SEARO;4364;98617;12;590
2020-10-10;NP;Nepal;SEARO;2059;100676;10;600
2020-10-11;NP;Nepal;SEARO;5008;105684;14;614
2020-10-12;NP;Nepal;SEARO;2071;107755;22;636
2020-10-13;NP;Nepal;SEARO;4047;111802;9;645
2020-10-14;NP;Nepal;SEARO;3556;115358;18;663
2020-10-15;NP;Nepal;SEARO;2638;117996;12;675
2020-10-16;NP;Nepal;SEARO;3749;121745;19;694
2020-10-17;NP;Nepal;SEARO;4392;126137;21;715
2020-10-18;NP;Nepal;SEARO;3167;129304;12;727
2020-10-19;NP;Nepal;SEARO;2942;132246;12;739
2020-10-20;NP;Nepal;SEARO;3790;136036;18;757
2020-10-21;NP;Nepal;SEARO;3093;139129;8;765
2020-10-22;NP;Nepal;SEARO;5743;144872;26;791
2020-10-23;NP;Nepal;SEARO;3637;148509;21;812
2020-10-24;NP;Nepal;SEARO;4499;153008;17;829
2020-10-25;NP;Nepal;SEARO;2225;155233;13;842
2020-10-26;NP;Nepal;SEARO;2856;158089;5;847
2020-10-27;NP;Nepal;SEARO;1741;159830;15;862
2020-10-28;NP;Nepal;SEARO;570;160400;14;876
2020-10-29;NP;Nepal;SEARO;1954;162354;11;887
2020-10-30;NP;Nepal;SEARO;2364;164718;17;904
2020-10-31;NP;Nepal;SEARO;3517;168235;16;920
2020-11-01;NP;Nepal;SEARO;2508;170743;17;937
2020-11-02;NP;Nepal;SEARO;2824;173567;23;960
2020-11-03;NP;Nepal;SEARO;2933;176500;24;984
2020-11-04;NP;Nepal;SEARO;3114;179614;20;1004
2020-11-05;NP;Nepal;SEARO;3309;182923;30;1034
2020-11-06;NP;Nepal;SEARO;3051;185974;18;1052
2020-11-07;NP;Nepal;SEARO;2909;188883;18;1070
2020-11-08;NP;Nepal;SEARO;2753;191636;17;1087
2020-11-09;NP;Nepal;SEARO;2817;194453;21;1108
2020-11-10;NP;Nepal;SEARO;2571;197024;18;1126
2020-11-11;NP;Nepal;SEARO;2736;199760;22;1148
2020-11-12;NP;Nepal;SEARO;2569;202329;26;1174
2020-11-13;NP;Nepal;SEARO;1913;204242;15;1189
2020-11-14;NP;Nepal;SEARO;2111;206353;13;1202
2020-11-15;NP;Nepal;SEARO;1946;208299;13;1215
2020-11-16;NP;Nepal;SEARO;1477;209776;6;1221
2020-11-17;NP;Nepal;SEARO;1197;210973;9;1230
2020-11-18;NP;Nepal;SEARO;502;211475;17;1247
2020-11-19;NP;Nepal;SEARO;1442;212917;12;1259
2020-11-20;NP;Nepal;SEARO;2103;215020;17;1276
2020-11-21;NP;Nepal;SEARO;1945;216965;22;1298
2020-11-22;NP;Nepal;SEARO;1674;218639;7;1305
2020-11-23;NP;Nepal;SEARO;1669;220308;16;1321
2020-11-24;NP;Nepal;SEARO;1980;222288;16;1337
2020-11-25;NP;Nepal;SEARO;1790;224078;24;1361
2020-11-26;NP;Nepal;SEARO;1948;226026;28;1389
2020-11-27;NP;Nepal;SEARO;1614;227640;23;1412
2020-11-28;NP;Nepal;SEARO;1703;229343;23;1435
2020-11-29;NP;Nepal;SEARO;1380;230723;19;1454
2020-11-30;NP;Nepal;SEARO;1255;231978;25;1479
2020-12-01;NP;Nepal;SEARO;1474;233452;29;1508
2020-12-02;NP;Nepal;SEARO;1304;234756;21;1529
2020-12-03;NP;Nepal;SEARO;1490;236246;9;1538
2020-12-04;NP;Nepal;SEARO;1343;237589;13;1551
2020-12-05;NP;Nepal;SEARO;1272;238861;16;1567
2020-12-06;NP;Nepal;SEARO;1024;239885;10;1577
2020-12-07;NP;Nepal;SEARO;1096;240981;17;1594
2020-12-08;NP;Nepal;SEARO;1014;241995;20;1614
2020-12-09;NP;Nepal;SEARO;1382;243377;23;1637
2020-12-10;NP;Nepal;SEARO;1056;244433;14;1651
2020-12-11;NP;Nepal;SEARO;1217;245650;12;1663
2020-12-12;NP;Nepal;SEARO;1044;246694;11;1674
2020-12-13;NP;Nepal;SEARO;899;247593;15;1689
2020-12-14;NP;Nepal;SEARO;830;248423;9;1698
2020-12-15;NP;Nepal;SEARO;821;249244;18;1716
2020-12-16;NP;Nepal;SEARO;936;250180;14;1730
2020-12-17;NP;Nepal;SEARO;736;250916;13;1743
2020-12-18;NP;Nepal;SEARO;776;251692;6;1749
2020-12-19;NP;Nepal;SEARO;782;252474;16;1765
2020-12-20;NP;Nepal;SEARO;710;253184;12;1777
2020-12-21;NP;Nepal;SEARO;588;253772;11;1788
2020-12-22;NP;Nepal;SEARO;742;254514;7;1795
2020-12-23;NP;Nepal;SEARO;722;255236;3;1798
2020-12-24;NP;Nepal;SEARO;743;255979;5;1803
2020-12-25;NP;Nepal;SEARO;613;256592;5;1808
2020-12-26;NP;Nepal;SEARO;608;257200;9;1817
2020-12-27;NP;Nepal;SEARO;500;257700;2;1819
2020-12-28;NP;Nepal;SEARO;481;258181;6;1825
2020-12-29;NP;Nepal;SEARO;659;258840;7;1832
2020-12-30;NP;Nepal;SEARO;708;259548;8;1840
2020-12-31;NP;Nepal;SEARO;511;260059;7;1847
2021-01-01;NP;Nepal;SEARO;534;260593;9;1856
2021-01-02;NP;Nepal;SEARO;426;261019;8;1864
2021-01-03;NP;Nepal;SEARO;419;261438;6;1870
2021-01-04;NP;Nepal;SEARO;421;261859;8;1878
2021-01-05;NP;Nepal;SEARO;403;262262;7;1885
2021-01-06;NP;Nepal;SEARO;522;262784;8;1893
2021-01-07;NP;Nepal;SEARO;409;263193;6;1899
2021-01-08;NP;Nepal;SEARO;412;263605;4;1903
2021-01-09;NP;Nepal;SEARO;554;264159;6;1909
2021-01-10;NP;Nepal;SEARO;362;264521;3;1912
2021-01-11;NP;Nepal;SEARO;259;264780;5;1917
2021-01-12;NP;Nepal;SEARO;488;265268;10;1927
2021-01-13;NP;Nepal;SEARO;430;265698;5;1932
2021-01-14;NP;Nepal;SEARO;445;266143;5;1937
2021-01-15;NP;Nepal;SEARO;403;266546;6;1943
2021-01-16;NP;Nepal;SEARO;270;266816;5;1948
2021-01-17;NP;Nepal;SEARO;240;267056;6;1954
2021-01-18;NP;Nepal;SEARO;266;267322;5;1959
2021-01-19;NP;Nepal;SEARO;322;267644;6;1965
2021-01-20;NP;Nepal;SEARO;348;267992;4;1969
2021-01-21;NP;Nepal;SEARO;318;268310;6;1975
2021-01-22;NP;Nepal;SEARO;336;268646;4;1979
2021-01-23;NP;Nepal;SEARO;302;268948;7;1986
2021-01-24;NP;Nepal;SEARO;232;269180;8;1994
2021-01-25;NP;Nepal;SEARO;270;269450;7;2001
2021-01-26;NP;Nepal;SEARO;339;269789;10;2011
2021-01-27;NP;Nepal;SEARO;303;270092;6;2017
2021-01-28;NP;Nepal;SEARO;283;270375;3;2020
2021-01-29;NP;Nepal;SEARO;213;270588;0;2020
2021-01-30;NP;Nepal;SEARO;157;270745;5;2025
2021-01-31;NP;Nepal;SEARO;109;270854;2;2027
2021-02-01;NP;Nepal;SEARO;105;270959;2;2029
2021-02-02;NP;Nepal;SEARO;159;271118;0;2029
2021-02-03;NP;Nepal;SEARO;171;271289;1;2030
2021-02-04;NP;Nepal;SEARO;142;271431;1;2031
2021-02-05;NP;Nepal;SEARO;171;271602;2;2033
2021-02-06;NP;Nepal;SEARO;105;271707;2;2035
2021-02-07;NP;Nepal;SEARO;99;271806;0;2035

EndOfData

Lizenz

Ich, der Urheber dieses Werkes, veröffentliche es unter der folgenden Lizenz:
Creative Commons CC-Zero Diese Datei wird unter der Creative-Commons-Lizenz „CC0 1.0 Verzicht auf das Copyright“ zur Verfügung gestellt.
Die Person, die das Werk mit diesem Dokument verbunden hat, übergibt dieses weltweit der Gemeinfreiheit, indem sie alle Urheberrechte und damit verbundenen weiteren Rechte – im Rahmen der jeweils geltenden gesetzlichen Bestimmungen – aufgibt. Das Werk kann – selbst für kommerzielle Zwecke – kopiert, modifiziert und weiterverteilt werden, ohne hierfür um Erlaubnis bitten zu müssen.

Kurzbeschreibungen

Ergänze eine einzeilige Erklärung, was diese Datei darstellt.

In dieser Datei abgebildete Objekte

Motiv

image/svg+xml

30e9d6dadaf1a2d6425923efa05b27676dd58bfe

482.220 Byte

450 Pixel

800 Pixel

Dateiversionen

Klicke auf einen Zeitpunkt, um diese Version zu laden.

(neueste | älteste) Zeige (jüngere 10 | ) (10 | 20 | 50 | 100 | 250 | 500)
Version vomVorschaubildMaßeBenutzerKommentar
aktuell16:04, 26. Dez. 2023Vorschaubild der Version vom 16:04, 26. Dez. 2023800 × 450 (471 KB)Summer ... hier!update
18:44, 30. Okt. 2023Vorschaubild der Version vom 18:44, 30. Okt. 2023800 × 450 (456 KB)Summer ... hier!update
09:40, 6. Okt. 2023Vorschaubild der Version vom 09:40, 6. Okt. 2023800 × 450 (449 KB)Summer ... hier!update
21:00, 6. Sep. 2023Vorschaubild der Version vom 21:00, 6. Sep. 2023800 × 450 (441 KB)Summer ... hier!update
18:00, 24. Aug. 2023Vorschaubild der Version vom 18:00, 24. Aug. 2023800 × 450 (436 KB)Summer ... hier!update
12:01, 10. Aug. 2023Vorschaubild der Version vom 12:01, 10. Aug. 2023800 × 450 (433 KB)Summer ... hier!update
02:57, 3. Aug. 2023Vorschaubild der Version vom 02:57, 3. Aug. 2023800 × 450 (431 KB)Summer ... hier!update
13:58, 27. Jul. 2023Vorschaubild der Version vom 13:58, 27. Jul. 2023800 × 450 (429 KB)Summer ... hier!update
23:47, 26. Jul. 2023Vorschaubild der Version vom 23:47, 26. Jul. 2023800 × 450 (429 KB)Summer ... hier!update
14:35, 13. Jul. 2023Vorschaubild der Version vom 14:35, 13. Jul. 2023800 × 450 (425 KB)Summer ... hier!update
(neueste | älteste) Zeige (jüngere 10 | ) (10 | 20 | 50 | 100 | 250 | 500)

Metadaten