
Tamaño de esta previsualización PNG del archivo SVG: 800 × 450 píxeles. Otras resoluciones: 320 × 180 píxeles | 640 × 360 píxeles | 1024 × 576 píxeles | 1280 × 720 píxeles | 2560 × 1440 píxeles.
Archivo original (archivo SVG, nominalmente 800 × 450 píxeles, tamaño de archivo: 406 kB)

Éste es un archivo de Wikimedia Commons, un depósito de contenido libre hospedado por la Fundación Wikimedia
Más abajo se reproduce su página de descripción con la información sobre su origen y licencia.
Resumen
DescripciónCOVID-19-Pandemie - PN (Pitcairninseln) - Infizierte (800px).svg | Deutsch: COVID-19-Pandemie - PN (Pitcairninseln) - Infizierte (800px) | ||
Fecha | laufende Aktualisierungen | ||
Fuente | Daten von der WHO - https://covid19.who.int/WHO-COVID-19-global-data.csv - durch Klicken auffindbar über https://covid19.who.int/table | ||
Autor | Summer ... hier! | ||
SVG desarrollo InfoField | ![]() El código fuente de esta imagen SVG es válido. ![]() Este gráfico vectorial fue creado con Gnuplot ![]() This plot uses embedded text that can be easily translated using a text editor. | ||
Código fuente InfoField |
# input (Zeitformat und Separator definieren) # set timefmt "%Y-%m-%d" set datafile separator ';' # Variablen mit Statistikdaten setzen # (every ::0 steht für 'ab erster Zeile' und kann weggelassen werden) stats $WHO_data every ::0 usi 5 name "neuinf_einzelwerte" nooutput stats $WHO_data every ::0 usi 6 name "neuinf_kumuliert" nooutput stats $WHO_data every ::0 usi 7 name "tote_einzelwerte" nooutput stats $WHO_data every ::0 usi 8 name "tote_kumuliert" nooutput # Start und Ende ermitteln stats $WHO_data every ::0 usi (strptime("%Y-%m-%d",strcol(1))) name "datum" nooutput # label fuer Legende oben links mit den ermittelten Datumsintervall setzen set label 'Daten vom '.strftime("%d.%m.%Y",datum_min) at graph 0.26, graph 0.94 right set label 'bis '.strftime("%d.%m.%Y",datum_max) at graph 0.26, graph 0.85 right ##### Test ##### # Werte die per Configscript eingepatcht wurden: my_graph1_ytics = 10 my_graph1_mytics = 5 my_graph2_ytics = 5 my_graph2_mytics = 5 my_grafik_type = 'Neuinfektionen' # Kann den Wert 'Tote' o. 'Neuinfiektionen' annehmen my_graph1_ylabel = 'Infizierte (kumuliert)' my_graph2_ylabel = 'Neuinfektionen' my_output_basename = 'COVID-19-Pandemie_-_PN_(Pitcairninseln)_-_Infizierte_(800px)' # Die Maximalwerte für die obere und untere Grafik ermitteln. # Dazu muessen wir ermitteln ob es sich um eine Grafik von Neuinfizierten # oder Toten handelt. if (my_grafik_type eq 'Tote' ) { # wenn wir hier int() nehmen ist u.a. die Ausgabe via print einfacher # weil real weniger einfach auszugeben ist. my_graph1_max = int(tote_kumuliert_max) my_graph2_max = int(tote_einzelwerte_max) } else { my_graph1_max = int(neuinf_kumuliert_max) my_graph2_max = int(neuinf_einzelwerte_max) } # Hier soll zukünftig ytics und mtics berechent werden # # my_graph2_ytics und my_graph2_mytics # if ( my_graph1_max <= 5000000*9 ) { my_graph1_ytics = 5000000; my_graph1_mytics = 5} if ( my_graph1_max <= 2500000*9 ) { my_graph1_ytics = 2500000; my_graph1_mytics = 5} #if ( my_graph1_max <= 2000000*9 ) { my_graph1_ytics = 2000000; my_graph1_mytics = 4} if ( my_graph1_max <= 1000000*9 ) { my_graph1_ytics = 1000000; my_graph1_mytics = 5} if ( my_graph1_max <= 500000*9 ) { my_graph1_ytics = 500000; my_graph1_mytics = 5} if ( my_graph1_max <= 250000*9 ) { my_graph1_ytics = 250000; my_graph1_mytics = 5} #if ( my_graph1_max <= 200000*9 ) { my_graph1_ytics = 200000; my_graph1_mytics = 4} if ( my_graph1_max <= 100000*9 ) { my_graph1_ytics = 100000; my_graph1_mytics = 5} if ( my_graph1_max <= 50000*9 ) { my_graph1_ytics = 50000; my_graph1_mytics = 5} if ( my_graph1_max <= 25000*9 ) { my_graph1_ytics = 25000; my_graph1_mytics = 5} #if ( my_graph1_max <= 20000*9 ) { my_graph1_ytics = 20000; my_graph1_mytics = 4} if ( my_graph1_max <= 10000*9 ) { my_graph1_ytics = 10000; my_graph1_mytics = 5} if ( my_graph1_max <= 5000*9 ) { my_graph1_ytics = 5000; my_graph1_mytics = 5} if ( my_graph1_max <= 2500*9 ) { my_graph1_ytics = 2500; my_graph1_mytics = 5} #if ( my_graph1_max <= 2000*9 ) { my_graph1_ytics = 2000; my_graph1_mytics = 4} if ( my_graph1_max <= 1000*9 ) { my_graph1_ytics = 1000; my_graph1_mytics = 5} if ( my_graph1_max <= 500*9 ) { my_graph1_ytics = 500; my_graph1_mytics = 5} if ( my_graph1_max <= 250*9 ) { my_graph1_ytics = 250; my_graph1_mytics = 5} #if ( my_graph1_max <= 200*9 ) { my_graph1_ytics = 200; my_graph1_mytics = 4} if ( my_graph1_max <= 100*9 ) { my_graph1_ytics = 100; my_graph1_mytics = 5} if ( my_graph1_max <= 50*9 ) { my_graph1_ytics = 50; my_graph1_mytics = 5} if ( my_graph1_max <= 25*9 ) { my_graph1_ytics = 25; my_graph1_mytics = 5} #if ( my_graph1_max <= 20*9 ) { my_graph1_ytics = 20; my_graph1_mytics = 4} if ( my_graph1_max <= 10*9 ) { my_graph1_ytics = 10; my_graph1_mytics = 5} # # # my_graph2_ytics und my_graph2_mytics # if ( my_graph2_max <= 500000*4 + 300000 ) { my_graph2_ytics = 500000; my_graph2_mytics = 5} if ( my_graph2_max <= 250000*4 + 150000 ) { my_graph2_ytics = 250000; my_graph2_mytics = 5} if ( my_graph2_max <= 200000*4 + 100000 ) { my_graph2_ytics = 200000; my_graph2_mytics = 4} if ( my_graph2_max <= 100000*4 + 60000 ) { my_graph2_ytics = 100000; my_graph2_mytics = 5} if ( my_graph2_max <= 50000*4 + 30000 ) { my_graph2_ytics = 50000; my_graph2_mytics = 5} if ( my_graph2_max <= 25000*4 + 15000 ) { my_graph2_ytics = 25000; my_graph2_mytics = 5} if ( my_graph2_max <= 20000*4 + 10000 ) { my_graph2_ytics = 20000; my_graph2_mytics = 4} if ( my_graph2_max <= 10000*4 + 6000 ) { my_graph2_ytics = 10000; my_graph2_mytics = 5} if ( my_graph2_max <= 5000*4 + 3000 ) { my_graph2_ytics = 5000; my_graph2_mytics = 5} if ( my_graph2_max <= 2500*4 + 1500 ) { my_graph2_ytics = 2500; my_graph2_mytics = 5} if ( my_graph2_max <= 2000*4 + 1000 ) { my_graph2_ytics = 2000; my_graph2_mytics = 4} if ( my_graph2_max <= 1000*4 + 600 ) { my_graph2_ytics = 1000; my_graph2_mytics = 5} if ( my_graph2_max <= 500*4 + 300 ) { my_graph2_ytics = 500; my_graph2_mytics = 5} if ( my_graph2_max <= 250*4 + 150 ) { my_graph2_ytics = 250; my_graph2_mytics = 5} if ( my_graph2_max <= 200*4 + 100 ) { my_graph2_ytics = 200; my_graph2_mytics = 4} if ( my_graph2_max <= 100*4 + 60 ) { my_graph2_ytics = 100; my_graph2_mytics = 5} if ( my_graph2_max <= 50*4 + 30 ) { my_graph2_ytics = 50; my_graph2_mytics = 5} if ( my_graph2_max <= 25*4 + 15 ) { my_graph2_ytics = 25; my_graph2_mytics = 5} if ( my_graph2_max <= 20*4 + 10 ) { my_graph2_ytics = 20; my_graph2_mytics = 4} if ( my_graph2_max <= 10*4 + 6 ) { my_graph2_ytics = 10; my_graph2_mytics = 5} if ( my_graph2_max <= 5*4 + 3 ) { my_graph2_ytics = 5; my_graph2_mytics = 5} # Intervall zwischen zwei Skalenstrichen berechnen. # Wir brauchen den Wert zum Berechnen von my_graph[1
|
Licencia
Yo, el titular de los derechos de autor de esta obra, la publico en los términos de la siguiente licencia:
![]() ![]() | Este archivo está disponible bajo la licencia Dedicación de Dominio Público CC0 1.0 Dedicación a Dominio Público Universal de Creative Commons. |
La persona que ha asociado una obra a este documento lo dedica al dominio público mediante la cesión mundial de sus derechos bajo la ley de derechos de autor y todos los derechos legales adyacentes propios de dicha, en el ámbito permitido por ley. Puedes copiar, modificar, distribuir y reproducir el trabajo, incluso con objetivos comerciales, sin pedir aprobación del autor. http://creativecommons.org/publicdomain/zero/1.0/deed.enCC0Creative Commons Zero, Public Domain Dedicationfalsefalse |
Leyendas
Añade una explicación corta acerca de lo que representa este archivo
Elementos representados en este archivo
representa a
image/svg+xml
e84ca87a60244cb37e96b2170b5247c0aff5dabc
415 987 byte
450 píxel
800 píxel
Historial del archivo
Haz clic sobre una fecha y hora para ver el archivo tal como apareció en ese momento.
Fecha y hora | Miniatura | Dimensiones | Usuario | Comentario | |
---|---|---|---|---|---|
actual | 11:39 27 jul 2023 | ![]() | 800 × 450 (406 kB) | Summer ... hier! | update |
14:47 16 may 2023 | ![]() | 800 × 450 (385 kB) | Summer ... hier! | update | |
12:07 23 abr 2023 | ![]() | 800 × 450 (377 kB) | Summer ... hier! | update | |
13:18 21 mar 2023 | ![]() | 800 × 450 (369 kB) | Summer ... hier! | update | |
23:38 2 feb 2023 | ![]() | 800 × 450 (354 kB) | Summer ... hier! | update | |
05:11 2 feb 2023 | ![]() | 800 × 450 (354 kB) | Summer ... hier! | update | |
18:20 31 ene 2023 | ![]() | 800 × 450 (354 kB) | Summer ... hier! | update | |
18:20 30 ene 2023 | ![]() | 800 × 450 (352 kB) | Summer ... hier! | update | |
13:58 28 ene 2023 | ![]() | 800 × 450 (352 kB) | Summer ... hier! | update | |
18:20 25 ene 2023 | ![]() | 800 × 450 (351 kB) | Summer ... hier! | update |
Usos del archivo
No hay páginas que enlacen a este archivo.
Uso global del archivo
Las wikis siguientes utilizan este archivo:
Metadatos
Este archivo contiene información adicional, probablemente añadida por la cámara digital o el escáner usado para crearlo o digitalizarlo.
Si el archivo ha sido modificado desde su estado original, pueden haberse perdido algunos detalles.
Título breve | COVID_26_07_2023_PN |
---|---|
Título de la imagen | Produced by GNUPLOT 5.0 patchlevel rc2 |
Anchura | 800 |
Altura | 450 |
Obtenido de «https://es.wikivoyage.org/wiki/Archivo:COVID-19-Pandemie_-_PN_(Pitcairninseln)_-_Infizierte_(800px).svg»