Fichier:COVID-19-Pandemie - TL (Osttimor) - Infizierte (800px).svg

Fichier d’origine(Fichier SVG, nominalement de 800 × 450 pixels, taille : 469 kio)

Ce fichier et sa description proviennent de Wikimedia Commons.

Description

Description
Deutsch: COVID-19-Pandemie - TL (Osttimor) - Infizierte (800px)
Date laufende Aktualisierungen
Source Daten von der WHO - https://covid19.who.int/WHO-COVID-19-global-data.csv - durch Klicken auffindbar über https://covid19.who.int/table
Auteur Summer ... hier!
SVG information
InfoField
 
Le code de ce fichier SVG est valide.
 
Cette image vectorielle a été créée avec Gnuplot
 
 Cette représentation graphique SVG utilise du texte encapsulé qui peut être traduit facilement à l'aide d'un éditeur de texte.
Code source
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 "Infizierte (kumuliert)" at screen 0.017, 0.700 rotate by +90 center
set label "Neuinfektionen" at screen 0.017, 0.300 rotate by +90 center


# output
# 
# Name der SVG-Datei
set    output   'COVID-19-Pandemie_-_TL_(Osttimor)_-_Infizierte_(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 'TL' 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 [-5:*]
set   ytics  25
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_TL",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:6 axis x1y1 tit 'Infizierte' lt rgb '#df7000' 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 [-1:*]
  set   ytics  5
  set  mytics  5
  
  # Ueber den Wert von lw kann man die Sichtbarkeit bei kl. Aufl. regulieren
  plot $WHO_data usi 1:5 axis x1y1 tit '' lt rgb '#df7000' 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;TL;Timor-Leste;SEARO;0;0;0;0
2020-01-04;TL;Timor-Leste;SEARO;0;0;0;0
2020-01-05;TL;Timor-Leste;SEARO;0;0;0;0
2020-01-06;TL;Timor-Leste;SEARO;0;0;0;0
2020-01-07;TL;Timor-Leste;SEARO;0;0;0;0
2020-01-08;TL;Timor-Leste;SEARO;0;0;0;0
2020-01-09;TL;Timor-Leste;SEARO;0;0;0;0
2020-01-10;TL;Timor-Leste;SEARO;0;0;0;0
2020-01-11;TL;Timor-Leste;SEARO;0;0;0;0
2020-01-12;TL;Timor-Leste;SEARO;0;0;0;0
2020-01-13;TL;Timor-Leste;SEARO;0;0;0;0
2020-01-14;TL;Timor-Leste;SEARO;0;0;0;0
2020-01-15;TL;Timor-Leste;SEARO;0;0;0;0
2020-01-16;TL;Timor-Leste;SEARO;0;0;0;0
2020-01-17;TL;Timor-Leste;SEARO;0;0;0;0
2020-01-18;TL;Timor-Leste;SEARO;0;0;0;0
2020-01-19;TL;Timor-Leste;SEARO;0;0;0;0
2020-01-20;TL;Timor-Leste;SEARO;0;0;0;0
2020-01-21;TL;Timor-Leste;SEARO;0;0;0;0
2020-01-22;TL;Timor-Leste;SEARO;0;0;0;0
2020-01-23;TL;Timor-Leste;SEARO;0;0;0;0
2020-01-24;TL;Timor-Leste;SEARO;0;0;0;0
2020-01-25;TL;Timor-Leste;SEARO;0;0;0;0
2020-01-26;TL;Timor-Leste;SEARO;0;0;0;0
2020-01-27;TL;Timor-Leste;SEARO;0;0;0;0
2020-01-28;TL;Timor-Leste;SEARO;0;0;0;0
2020-01-29;TL;Timor-Leste;SEARO;0;0;0;0
2020-01-30;TL;Timor-Leste;SEARO;0;0;0;0
2020-01-31;TL;Timor-Leste;SEARO;0;0;0;0
2020-02-01;TL;Timor-Leste;SEARO;0;0;0;0
2020-02-02;TL;Timor-Leste;SEARO;0;0;0;0
2020-02-03;TL;Timor-Leste;SEARO;0;0;0;0
2020-02-04;TL;Timor-Leste;SEARO;0;0;0;0
2020-02-05;TL;Timor-Leste;SEARO;0;0;0;0
2020-02-06;TL;Timor-Leste;SEARO;0;0;0;0
2020-02-07;TL;Timor-Leste;SEARO;0;0;0;0
2020-02-08;TL;Timor-Leste;SEARO;0;0;0;0
2020-02-09;TL;Timor-Leste;SEARO;0;0;0;0
2020-02-10;TL;Timor-Leste;SEARO;0;0;0;0
2020-02-11;TL;Timor-Leste;SEARO;0;0;0;0
2020-02-12;TL;Timor-Leste;SEARO;0;0;0;0
2020-02-13;TL;Timor-Leste;SEARO;0;0;0;0
2020-02-14;TL;Timor-Leste;SEARO;0;0;0;0
2020-02-15;TL;Timor-Leste;SEARO;0;0;0;0
2020-02-16;TL;Timor-Leste;SEARO;0;0;0;0
2020-02-17;TL;Timor-Leste;SEARO;0;0;0;0
2020-02-18;TL;Timor-Leste;SEARO;0;0;0;0
2020-02-19;TL;Timor-Leste;SEARO;0;0;0;0
2020-02-20;TL;Timor-Leste;SEARO;0;0;0;0
2020-02-21;TL;Timor-Leste;SEARO;0;0;0;0
2020-02-22;TL;Timor-Leste;SEARO;0;0;0;0
2020-02-23;TL;Timor-Leste;SEARO;0;0;0;0
2020-02-24;TL;Timor-Leste;SEARO;0;0;0;0
2020-02-25;TL;Timor-Leste;SEARO;0;0;0;0
2020-02-26;TL;Timor-Leste;SEARO;0;0;0;0
2020-02-27;TL;Timor-Leste;SEARO;0;0;0;0
2020-02-28;TL;Timor-Leste;SEARO;0;0;0;0
2020-02-29;TL;Timor-Leste;SEARO;0;0;0;0
2020-03-01;TL;Timor-Leste;SEARO;0;0;0;0
2020-03-02;TL;Timor-Leste;SEARO;0;0;0;0
2020-03-03;TL;Timor-Leste;SEARO;0;0;0;0
2020-03-04;TL;Timor-Leste;SEARO;0;0;0;0
2020-03-05;TL;Timor-Leste;SEARO;0;0;0;0
2020-03-06;TL;Timor-Leste;SEARO;0;0;0;0
2020-03-07;TL;Timor-Leste;SEARO;0;0;0;0
2020-03-08;TL;Timor-Leste;SEARO;0;0;0;0
2020-03-09;TL;Timor-Leste;SEARO;0;0;0;0
2020-03-10;TL;Timor-Leste;SEARO;0;0;0;0
2020-03-11;TL;Timor-Leste;SEARO;0;0;0;0
2020-03-12;TL;Timor-Leste;SEARO;0;0;0;0
2020-03-13;TL;Timor-Leste;SEARO;0;0;0;0
2020-03-14;TL;Timor-Leste;SEARO;0;0;0;0
2020-03-15;TL;Timor-Leste;SEARO;0;0;0;0
2020-03-16;TL;Timor-Leste;SEARO;0;0;0;0
2020-03-17;TL;Timor-Leste;SEARO;0;0;0;0
2020-03-18;TL;Timor-Leste;SEARO;0;0;0;0
2020-03-19;TL;Timor-Leste;SEARO;0;0;0;0
2020-03-20;TL;Timor-Leste;SEARO;1;1;0;0
2020-03-21;TL;Timor-Leste;SEARO;0;1;0;0
2020-03-22;TL;Timor-Leste;SEARO;0;1;0;0
2020-03-23;TL;Timor-Leste;SEARO;0;1;0;0
2020-03-24;TL;Timor-Leste;SEARO;0;1;0;0
2020-03-25;TL;Timor-Leste;SEARO;0;1;0;0
2020-03-26;TL;Timor-Leste;SEARO;0;1;0;0
2020-03-27;TL;Timor-Leste;SEARO;0;1;0;0
2020-03-28;TL;Timor-Leste;SEARO;0;1;0;0
2020-03-29;TL;Timor-Leste;SEARO;0;1;0;0
2020-03-30;TL;Timor-Leste;SEARO;0;1;0;0
2020-03-31;TL;Timor-Leste;SEARO;0;1;0;0
2020-04-01;TL;Timor-Leste;SEARO;0;1;0;0
2020-04-02;TL;Timor-Leste;SEARO;0;1;0;0
2020-04-03;TL;Timor-Leste;SEARO;0;1;0;0
2020-04-04;TL;Timor-Leste;SEARO;0;1;0;0
2020-04-05;TL;Timor-Leste;SEARO;0;1;0;0
2020-04-06;TL;Timor-Leste;SEARO;0;1;0;0
2020-04-07;TL;Timor-Leste;SEARO;0;1;0;0
2020-04-08;TL;Timor-Leste;SEARO;0;1;0;0
2020-04-09;TL;Timor-Leste;SEARO;0;1;0;0
2020-04-10;TL;Timor-Leste;SEARO;0;1;0;0
2020-04-11;TL;Timor-Leste;SEARO;1;2;0;0
2020-04-12;TL;Timor-Leste;SEARO;0;2;0;0
2020-04-13;TL;Timor-Leste;SEARO;2;4;0;0
2020-04-14;TL;Timor-Leste;SEARO;2;6;0;0
2020-04-15;TL;Timor-Leste;SEARO;0;6;0;0
2020-04-16;TL;Timor-Leste;SEARO;12;18;0;0
2020-04-17;TL;Timor-Leste;SEARO;0;18;0;0
2020-04-18;TL;Timor-Leste;SEARO;0;18;0;0
2020-04-19;TL;Timor-Leste;SEARO;1;19;0;0
2020-04-20;TL;Timor-Leste;SEARO;3;22;0;0
2020-04-21;TL;Timor-Leste;SEARO;1;23;0;0
2020-04-22;TL;Timor-Leste;SEARO;0;23;0;0
2020-04-23;TL;Timor-Leste;SEARO;0;23;0;0
2020-04-24;TL;Timor-Leste;SEARO;1;24;0;0
2020-04-25;TL;Timor-Leste;SEARO;0;24;0;0
2020-04-26;TL;Timor-Leste;SEARO;0;24;0;0
2020-04-27;TL;Timor-Leste;SEARO;0;24;0;0
2020-04-28;TL;Timor-Leste;SEARO;0;24;0;0
2020-04-29;TL;Timor-Leste;SEARO;0;24;0;0
2020-04-30;TL;Timor-Leste;SEARO;0;24;0;0
2020-05-01;TL;Timor-Leste;SEARO;0;24;0;0
2020-05-02;TL;Timor-Leste;SEARO;0;24;0;0
2020-05-03;TL;Timor-Leste;SEARO;0;24;0;0
2020-05-04;TL;Timor-Leste;SEARO;0;24;0;0
2020-05-05;TL;Timor-Leste;SEARO;0;24;0;0
2020-05-06;TL;Timor-Leste;SEARO;0;24;0;0
2020-05-07;TL;Timor-Leste;SEARO;0;24;0;0
2020-05-08;TL;Timor-Leste;SEARO;0;24;0;0
2020-05-09;TL;Timor-Leste;SEARO;0;24;0;0
2020-05-10;TL;Timor-Leste;SEARO;0;24;0;0
2020-05-11;TL;Timor-Leste;SEARO;0;24;0;0
2020-05-12;TL;Timor-Leste;SEARO;0;24;0;0
2020-05-13;TL;Timor-Leste;SEARO;0;24;0;0
2020-05-14;TL;Timor-Leste;SEARO;0;24;0;0
2020-05-15;TL;Timor-Leste;SEARO;0;24;0;0
2020-05-16;TL;Timor-Leste;SEARO;0;24;0;0
2020-05-17;TL;Timor-Leste;SEARO;0;24;0;0
2020-05-18;TL;Timor-Leste;SEARO;0;24;0;0
2020-05-19;TL;Timor-Leste;SEARO;0;24;0;0
2020-05-20;TL;Timor-Leste;SEARO;0;24;0;0
2020-05-21;TL;Timor-Leste;SEARO;0;24;0;0
2020-05-22;TL;Timor-Leste;SEARO;0;24;0;0
2020-05-23;TL;Timor-Leste;SEARO;0;24;0;0
2020-05-24;TL;Timor-Leste;SEARO;0;24;0;0
2020-05-25;TL;Timor-Leste;SEARO;0;24;0;0
2020-05-26;TL;Timor-Leste;SEARO;0;24;0;0
2020-05-27;TL;Timor-Leste;SEARO;0;24;0;0
2020-05-28;TL;Timor-Leste;SEARO;0;24;0;0
2020-05-29;TL;Timor-Leste;SEARO;0;24;0;0
2020-05-30;TL;Timor-Leste;SEARO;0;24;0;0
2020-05-31;TL;Timor-Leste;SEARO;0;24;0;0
2020-06-01;TL;Timor-Leste;SEARO;0;24;0;0
2020-06-02;TL;Timor-Leste;SEARO;0;24;0;0
2020-06-03;TL;Timor-Leste;SEARO;0;24;0;0
2020-06-04;TL;Timor-Leste;SEARO;0;24;0;0
2020-06-05;TL;Timor-Leste;SEARO;0;24;0;0
2020-06-06;TL;Timor-Leste;SEARO;0;24;0;0
2020-06-07;TL;Timor-Leste;SEARO;0;24;0;0
2020-06-08;TL;Timor-Leste;SEARO;0;24;0;0
2020-06-09;TL;Timor-Leste;SEARO;0;24;0;0
2020-06-10;TL;Timor-Leste;SEARO;0;24;0;0
2020-06-11;TL;Timor-Leste;SEARO;0;24;0;0
2020-06-12;TL;Timor-Leste;SEARO;0;24;0;0
2020-06-13;TL;Timor-Leste;SEARO;0;24;0;0
2020-06-14;TL;Timor-Leste;SEARO;0;24;0;0
2020-06-15;TL;Timor-Leste;SEARO;0;24;0;0
2020-06-16;TL;Timor-Leste;SEARO;0;24;0;0
2020-06-17;TL;Timor-Leste;SEARO;0;24;0;0
2020-06-18;TL;Timor-Leste;SEARO;0;24;0;0
2020-06-19;TL;Timor-Leste;SEARO;0;24;0;0
2020-06-20;TL;Timor-Leste;SEARO;0;24;0;0
2020-06-21;TL;Timor-Leste;SEARO;0;24;0;0
2020-06-22;TL;Timor-Leste;SEARO;0;24;0;0
2020-06-23;TL;Timor-Leste;SEARO;0;24;0;0
2020-06-24;TL;Timor-Leste;SEARO;0;24;0;0
2020-06-25;TL;Timor-Leste;SEARO;0;24;0;0
2020-06-26;TL;Timor-Leste;SEARO;0;24;0;0
2020-06-27;TL;Timor-Leste;SEARO;0;24;0;0
2020-06-28;TL;Timor-Leste;SEARO;0;24;0;0
2020-06-29;TL;Timor-Leste;SEARO;0;24;0;0
2020-06-30;TL;Timor-Leste;SEARO;0;24;0;0
2020-07-01;TL;Timor-Leste;SEARO;0;24;0;0
2020-07-02;TL;Timor-Leste;SEARO;0;24;0;0
2020-07-03;TL;Timor-Leste;SEARO;0;24;0;0
2020-07-04;TL;Timor-Leste;SEARO;0;24;0;0
2020-07-05;TL;Timor-Leste;SEARO;0;24;0;0
2020-07-06;TL;Timor-Leste;SEARO;0;24;0;0
2020-07-07;TL;Timor-Leste;SEARO;0;24;0;0
2020-07-08;TL;Timor-Leste;SEARO;0;24;0;0
2020-07-09;TL;Timor-Leste;SEARO;0;24;0;0
2020-07-10;TL;Timor-Leste;SEARO;0;24;0;0
2020-07-11;TL;Timor-Leste;SEARO;0;24;0;0
2020-07-12;TL;Timor-Leste;SEARO;0;24;0;0
2020-07-13;TL;Timor-Leste;SEARO;0;24;0;0
2020-07-14;TL;Timor-Leste;SEARO;0;24;0;0
2020-07-15;TL;Timor-Leste;SEARO;0;24;0;0
2020-07-16;TL;Timor-Leste;SEARO;0;24;0;0
2020-07-17;TL;Timor-Leste;SEARO;0;24;0;0
2020-07-18;TL;Timor-Leste;SEARO;0;24;0;0
2020-07-19;TL;Timor-Leste;SEARO;0;24;0;0
2020-07-20;TL;Timor-Leste;SEARO;0;24;0;0
2020-07-21;TL;Timor-Leste;SEARO;0;24;0;0
2020-07-22;TL;Timor-Leste;SEARO;0;24;0;0
2020-07-23;TL;Timor-Leste;SEARO;0;24;0;0
2020-07-24;TL;Timor-Leste;SEARO;0;24;0;0
2020-07-25;TL;Timor-Leste;SEARO;0;24;0;0
2020-07-26;TL;Timor-Leste;SEARO;0;24;0;0
2020-07-27;TL;Timor-Leste;SEARO;0;24;0;0
2020-07-28;TL;Timor-Leste;SEARO;0;24;0;0
2020-07-29;TL;Timor-Leste;SEARO;0;24;0;0
2020-07-30;TL;Timor-Leste;SEARO;0;24;0;0
2020-07-31;TL;Timor-Leste;SEARO;0;24;0;0
2020-08-01;TL;Timor-Leste;SEARO;0;24;0;0
2020-08-02;TL;Timor-Leste;SEARO;0;24;0;0
2020-08-03;TL;Timor-Leste;SEARO;0;24;0;0
2020-08-04;TL;Timor-Leste;SEARO;1;25;0;0
2020-08-05;TL;Timor-Leste;SEARO;0;25;0;0
2020-08-06;TL;Timor-Leste;SEARO;0;25;0;0
2020-08-07;TL;Timor-Leste;SEARO;0;25;0;0
2020-08-08;TL;Timor-Leste;SEARO;0;25;0;0
2020-08-09;TL;Timor-Leste;SEARO;0;25;0;0
2020-08-10;TL;Timor-Leste;SEARO;0;25;0;0
2020-08-11;TL;Timor-Leste;SEARO;0;25;0;0
2020-08-12;TL;Timor-Leste;SEARO;0;25;0;0
2020-08-13;TL;Timor-Leste;SEARO;0;25;0;0
2020-08-14;TL;Timor-Leste;SEARO;0;25;0;0
2020-08-15;TL;Timor-Leste;SEARO;0;25;0;0
2020-08-16;TL;Timor-Leste;SEARO;0;25;0;0
2020-08-17;TL;Timor-Leste;SEARO;0;25;0;0
2020-08-18;TL;Timor-Leste;SEARO;0;25;0;0
2020-08-19;TL;Timor-Leste;SEARO;0;25;0;0
2020-08-20;TL;Timor-Leste;SEARO;1;26;0;0
2020-08-21;TL;Timor-Leste;SEARO;0;26;0;0
2020-08-22;TL;Timor-Leste;SEARO;0;26;0;0
2020-08-23;TL;Timor-Leste;SEARO;0;26;0;0
2020-08-24;TL;Timor-Leste;SEARO;0;26;0;0
2020-08-25;TL;Timor-Leste;SEARO;0;26;0;0
2020-08-26;TL;Timor-Leste;SEARO;0;26;0;0
2020-08-27;TL;Timor-Leste;SEARO;1;27;0;0
2020-08-28;TL;Timor-Leste;SEARO;0;27;0;0
2020-08-29;TL;Timor-Leste;SEARO;0;27;0;0
2020-08-30;TL;Timor-Leste;SEARO;0;27;0;0
2020-08-31;TL;Timor-Leste;SEARO;0;27;0;0
2020-09-01;TL;Timor-Leste;SEARO;0;27;0;0
2020-09-02;TL;Timor-Leste;SEARO;0;27;0;0
2020-09-03;TL;Timor-Leste;SEARO;0;27;0;0
2020-09-04;TL;Timor-Leste;SEARO;0;27;0;0
2020-09-05;TL;Timor-Leste;SEARO;0;27;0;0
2020-09-06;TL;Timor-Leste;SEARO;0;27;0;0
2020-09-07;TL;Timor-Leste;SEARO;0;27;0;0
2020-09-08;TL;Timor-Leste;SEARO;0;27;0;0
2020-09-09;TL;Timor-Leste;SEARO;0;27;0;0
2020-09-10;TL;Timor-Leste;SEARO;0;27;0;0
2020-09-11;TL;Timor-Leste;SEARO;0;27;0;0
2020-09-12;TL;Timor-Leste;SEARO;0;27;0;0
2020-09-13;TL;Timor-Leste;SEARO;0;27;0;0
2020-09-14;TL;Timor-Leste;SEARO;0;27;0;0
2020-09-15;TL;Timor-Leste;SEARO;0;27;0;0
2020-09-16;TL;Timor-Leste;SEARO;0;27;0;0
2020-09-17;TL;Timor-Leste;SEARO;0;27;0;0
2020-09-18;TL;Timor-Leste;SEARO;0;27;0;0
2020-09-19;TL;Timor-Leste;SEARO;0;27;0;0
2020-09-20;TL;Timor-Leste;SEARO;0;27;0;0
2020-09-21;TL;Timor-Leste;SEARO;0;27;0;0
2020-09-22;TL;Timor-Leste;SEARO;0;27;0;0
2020-09-23;TL;Timor-Leste;SEARO;0;27;0;0
2020-09-24;TL;Timor-Leste;SEARO;0;27;0;0
2020-09-25;TL;Timor-Leste;SEARO;0;27;0;0
2020-09-26;TL;Timor-Leste;SEARO;0;27;0;0
2020-09-27;TL;Timor-Leste;SEARO;0;27;0;0
2020-09-28;TL;Timor-Leste;SEARO;0;27;0;0
2020-09-29;TL;Timor-Leste;SEARO;1;28;0;0
2020-09-30;TL;Timor-Leste;SEARO;0;28;0;0
2020-10-01;TL;Timor-Leste;SEARO;0;28;0;0
2020-10-02;TL;Timor-Leste;SEARO;0;28;0;0
2020-10-03;TL;Timor-Leste;SEARO;0;28;0;0
2020-10-04;TL;Timor-Leste;SEARO;0;28;0;0
2020-10-05;TL;Timor-Leste;SEARO;0;28;0;0
2020-10-06;TL;Timor-Leste;SEARO;0;28;0;0
2020-10-07;TL;Timor-Leste;SEARO;0;28;0;0
2020-10-08;TL;Timor-Leste;SEARO;0;28;0;0
2020-10-09;TL;Timor-Leste;SEARO;0;28;0;0
2020-10-10;TL;Timor-Leste;SEARO;0;28;0;0
2020-10-11;TL;Timor-Leste;SEARO;0;28;0;0
2020-10-12;TL;Timor-Leste;SEARO;0;28;0;0
2020-10-13;TL;Timor-Leste;SEARO;1;29;0;0
2020-10-14;TL;Timor-Leste;SEARO;0;29;0;0
2020-10-15;TL;Timor-Leste;SEARO;0;29;0;0
2020-10-16;TL;Timor-Leste;SEARO;0;29;0;0
2020-10-17;TL;Timor-Leste;SEARO;0;29;0;0
2020-10-18;TL;Timor-Leste;SEARO;0;29;0;0
2020-10-19;TL;Timor-Leste;SEARO;0;29;0;0
2020-10-20;TL;Timor-Leste;SEARO;0;29;0;0
2020-10-21;TL;Timor-Leste;SEARO;0;29;0;0
2020-10-22;TL;Timor-Leste;SEARO;0;29;0;0
2020-10-23;TL;Timor-Leste;SEARO;0;29;0;0
2020-10-24;TL;Timor-Leste;SEARO;0;29;0;0
2020-10-25;TL;Timor-Leste;SEARO;0;29;0;0
2020-10-26;TL;Timor-Leste;SEARO;0;29;0;0
2020-10-27;TL;Timor-Leste;SEARO;1;30;0;0
2020-10-28;TL;Timor-Leste;SEARO;0;30;0;0
2020-10-29;TL;Timor-Leste;SEARO;0;30;0;0
2020-10-30;TL;Timor-Leste;SEARO;0;30;0;0
2020-10-31;TL;Timor-Leste;SEARO;0;30;0;0
2020-11-01;TL;Timor-Leste;SEARO;0;30;0;0
2020-11-02;TL;Timor-Leste;SEARO;0;30;0;0
2020-11-03;TL;Timor-Leste;SEARO;0;30;0;0
2020-11-04;TL;Timor-Leste;SEARO;0;30;0;0
2020-11-05;TL;Timor-Leste;SEARO;0;30;0;0
2020-11-06;TL;Timor-Leste;SEARO;0;30;0;0
2020-11-07;TL;Timor-Leste;SEARO;0;30;0;0
2020-11-08;TL;Timor-Leste;SEARO;0;30;0;0
2020-11-09;TL;Timor-Leste;SEARO;0;30;0;0
2020-11-10;TL;Timor-Leste;SEARO;0;30;0;0
2020-11-11;TL;Timor-Leste;SEARO;0;30;0;0
2020-11-12;TL;Timor-Leste;SEARO;0;30;0;0
2020-11-13;TL;Timor-Leste;SEARO;0;30;0;0
2020-11-14;TL;Timor-Leste;SEARO;0;30;0;0
2020-11-15;TL;Timor-Leste;SEARO;0;30;0;0
2020-11-16;TL;Timor-Leste;SEARO;0;30;0;0
2020-11-17;TL;Timor-Leste;SEARO;0;30;0;0
2020-11-18;TL;Timor-Leste;SEARO;0;30;0;0
2020-11-19;TL;Timor-Leste;SEARO;0;30;0;0
2020-11-20;TL;Timor-Leste;SEARO;0;30;0;0
2020-11-21;TL;Timor-Leste;SEARO;0;30;0;0
2020-11-22;TL;Timor-Leste;SEARO;0;30;0;0
2020-11-23;TL;Timor-Leste;SEARO;0;30;0;0
2020-11-24;TL;Timor-Leste;SEARO;0;30;0;0
2020-11-25;TL;Timor-Leste;SEARO;0;30;0;0
2020-11-26;TL;Timor-Leste;SEARO;0;30;0;0
2020-11-27;TL;Timor-Leste;SEARO;0;30;0;0
2020-11-28;TL;Timor-Leste;SEARO;0;30;0;0
2020-11-29;TL;Timor-Leste;SEARO;0;30;0;0
2020-11-30;TL;Timor-Leste;SEARO;0;30;0;0
2020-12-01;TL;Timor-Leste;SEARO;0;30;0;0
2020-12-02;TL;Timor-Leste;SEARO;0;30;0;0
2020-12-03;TL;Timor-Leste;SEARO;1;31;0;0
2020-12-04;TL;Timor-Leste;SEARO;0;31;0;0
2020-12-05;TL;Timor-Leste;SEARO;0;31;0;0
2020-12-06;TL;Timor-Leste;SEARO;0;31;0;0
2020-12-07;TL;Timor-Leste;SEARO;0;31;0;0
2020-12-08;TL;Timor-Leste;SEARO;0;31;0;0
2020-12-09;TL;Timor-Leste;SEARO;0;31;0;0
2020-12-10;TL;Timor-Leste;SEARO;0;31;0;0
2020-12-11;TL;Timor-Leste;SEARO;0;31;0;0
2020-12-12;TL;Timor-Leste;SEARO;0;31;0;0
2020-12-13;TL;Timor-Leste;SEARO;0;31;0;0
2020-12-14;TL;Timor-Leste;SEARO;0;31;0;0
2020-12-15;TL;Timor-Leste;SEARO;0;31;0;0
2020-12-16;TL;Timor-Leste;SEARO;0;31;0;0
2020-12-17;TL;Timor-Leste;SEARO;0;31;0;0
2020-12-18;TL;Timor-Leste;SEARO;0;31;0;0
2020-12-19;TL;Timor-Leste;SEARO;0;31;0;0
2020-12-20;TL;Timor-Leste;SEARO;0;31;0;0
2020-12-21;TL;Timor-Leste;SEARO;0;31;0;0
2020-12-22;TL;Timor-Leste;SEARO;0;31;0;0
2020-12-23;TL;Timor-Leste;SEARO;2;33;0;0
2020-12-24;TL;Timor-Leste;SEARO;3;36;0;0
2020-12-25;TL;Timor-Leste;SEARO;5;41;0;0
2020-12-26;TL;Timor-Leste;SEARO;0;41;0;0
2020-12-27;TL;Timor-Leste;SEARO;0;41;0;0
2020-12-28;TL;Timor-Leste;SEARO;0;41;0;0
2020-12-29;TL;Timor-Leste;SEARO;0;41;0;0
2020-12-30;TL;Timor-Leste;SEARO;3;44;0;0
2020-12-31;TL;Timor-Leste;SEARO;0;44;0;0
2021-01-01;TL;Timor-Leste;SEARO;0;44;0;0
2021-01-02;TL;Timor-Leste;SEARO;0;44;0;0
2021-01-03;TL;Timor-Leste;SEARO;0;44;0;0
2021-01-04;TL;Timor-Leste;SEARO;0;44;0;0
2021-01-05;TL;Timor-Leste;SEARO;0;44;0;0
2021-01-06;TL;Timor-Leste;SEARO;5;49;0;0
2021-01-07;TL;Timor-Leste;SEARO;0;49;0;0
2021-01-08;TL;Timor-Leste;SEARO;0;49;0;0
2021-01-09;TL;Timor-Leste;SEARO;0;49;0;0
2021-01-10;TL;Timor-Leste;SEARO;0;49;0;0
2021-01-11;TL;Timor-Leste;SEARO;0;49;0;0
2021-01-12;TL;Timor-Leste;SEARO;0;49;0;0
2021-01-13;TL;Timor-Leste;SEARO;2;51;0;0
2021-01-14;TL;Timor-Leste;SEARO;0;51;0;0
2021-01-15;TL;Timor-Leste;SEARO;0;51;0;0
2021-01-16;TL;Timor-Leste;SEARO;1;52;0;0
2021-01-17;TL;Timor-Leste;SEARO;0;52;0;0
2021-01-18;TL;Timor-Leste;SEARO;0;52;0;0
2021-01-19;TL;Timor-Leste;SEARO;0;52;0;0
2021-01-20;TL;Timor-Leste;SEARO;0;52;0;0
2021-01-21;TL;Timor-Leste;SEARO;1;53;0;0
2021-01-22;TL;Timor-Leste;SEARO;0;53;0;0
2021-01-23;TL;Timor-Leste;SEARO;11;64;0;0
2021-01-24;TL;Timor-Leste;SEARO;3;67;0;0
2021-01-25;TL;Timor-Leste;SEARO;0;67;0;0
2021-01-26;TL;Timor-Leste;SEARO;0;67;0;0
2021-01-27;TL;Timor-Leste;SEARO;1;68;0;0
2021-01-28;TL;Timor-Leste;SEARO;0;68;0;0
2021-01-29;TL;Timor-Leste;SEARO;1;69;0;0
2021-01-30;TL;Timor-Leste;SEARO;1;70;0;0
2021-01-31;TL;Timor-Leste;SEARO;0;70;0;0
2021-02-01;TL;Timor-Leste;SEARO;0;70;0;0
2021-02-02;TL;Timor-Leste;SEARO;5;75;0;0
2021-02-03;TL;Timor-Leste;SEARO;2;77;0;0
2021-02-04;TL;Timor-Leste;SEARO;3;80;0;0
2021-02-05;TL;Timor-Leste;SEARO;0;80;0;0
2021-02-06;TL;Timor-Leste;SEARO;0;80;0;0
2021-02-07;TL;Timor-Leste;SEARO;0;80;0;0
2021-02-08;TL;Timor-Leste;SEARO;0;80;0;0
2021-02-09;TL;Timor-Leste;SEARO;6;86;0;0
2021-02-10;TL;Timor-Leste;SEARO;0;86;0;0
2021-02-11;TL;Timor-Leste;SEARO;14;100;0;0
2021-02-12;TL;Timor-Leste;SEARO;0;100;0;0
2021-02-13;TL;Timor-Leste;SEARO;1;101;0;0
2021-02-14;TL;Timor-Leste;SEARO;0;101;0;0
2021-02-15;TL;Timor-Leste;SEARO;1;102;0;0
2021-02-16;TL;Timor-Leste;SEARO;0;102;0;0
2021-02-17;TL;Timor-Leste;SEARO;0;102;0;0
2021-02-18;TL;Timor-Leste;SEARO;0;102;0;0
2021-02-19;TL;Timor-Leste;SEARO;1;103;0;0
2021-02-20;TL;Timor-Leste;SEARO;0;103;0;0
2021-02-21;TL;Timor-Leste;SEARO;0;103;0;0

EndOfData

Conditions d’utilisation

Moi, en tant que détenteur des droits d’auteur sur cette œuvre, je la publie sous la licence suivante :
Creative Commons CC-Zero Ce fichier est disponible selon les termes de la licence Creative Commons CC0 Don universel au domaine public.
La personne qui a associé une œuvre avec cet acte l’a placée dans le domaine public en renonçant mondialement à tous ses droits sur cette œuvre en vertu des lois relatives au droit d’auteur, ainsi qu’à tous les droits juridiques connexes et voisins qu’elle possédait sur l’œuvre, sans autre limite que celles imposées par la loi. Vous pouvez copier, modifier, distribuer et utiliser cette œuvre, y compris à des fins commerciales, sans qu’il soit nécessaire d’en demander la permission.

Légendes

Ajoutez en une ligne la description de ce que représente ce fichier

Éléments décrits dans ce fichier

dépeint

image/svg+xml

faf18e9ead88c2f79f3d4c3d338917d745209d72

479 801 octet

450 pixel

800 pixel

Historique du fichier

Cliquer sur une date et heure pour voir le fichier tel qu'il était à ce moment-là.

(les plus récentes | les plus anciennes) Voir (10 plus récentes | ) (10 | 20 | 50 | 100 | 250 | 500)
Date et heureVignetteDimensionsUtilisateurCommentaire
actuel26 décembre 2023 à 16:04Vignette pour la version du 26 décembre 2023 à 16:04800 × 450 (469 kio)Summer ... hier!update
30 octobre 2023 à 18:44Vignette pour la version du 30 octobre 2023 à 18:44800 × 450 (453 kio)Summer ... hier!update
6 octobre 2023 à 09:40Vignette pour la version du 6 octobre 2023 à 09:40800 × 450 (447 kio)Summer ... hier!update
6 septembre 2023 à 21:00Vignette pour la version du 6 septembre 2023 à 21:00800 × 450 (439 kio)Summer ... hier!update
24 août 2023 à 18:00Vignette pour la version du 24 août 2023 à 18:00800 × 450 (434 kio)Summer ... hier!update
10 août 2023 à 12:01Vignette pour la version du 10 août 2023 à 12:01800 × 450 (430 kio)Summer ... hier!update
3 août 2023 à 02:57Vignette pour la version du 3 août 2023 à 02:57800 × 450 (429 kio)Summer ... hier!update
27 juillet 2023 à 13:58Vignette pour la version du 27 juillet 2023 à 13:58800 × 450 (427 kio)Summer ... hier!update
26 juillet 2023 à 23:47Vignette pour la version du 26 juillet 2023 à 23:47800 × 450 (427 kio)Summer ... hier!update
13 juillet 2023 à 14:35Vignette pour la version du 13 juillet 2023 à 14:35800 × 450 (422 kio)Summer ... hier!update
(les plus récentes | les plus anciennes) Voir (10 plus récentes | ) (10 | 20 | 50 | 100 | 250 | 500)

La page suivante utilise ce fichier :

Usage global du fichier

Les autres wikis suivants utilisent ce fichier :

Métadonnées