-
Notifications
You must be signed in to change notification settings - Fork 0
/
index_en.html
1200 lines (1198 loc) · 76.9 KB
/
index_en.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<meta http-equiv="Pragma" content="no-cache" />
<meta name="robots" content="noarchive">
<meta http-equiv="Expires" content="0" />
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1,user-scalable=no">
<meta name="format-detection" content="telephone=no">
<meta property="og:url" content="https://covid19-greece.tk" />
<meta property="og:image" content="https://covid19-greece.tk/img/site_s.jpg" />
<meta property="og:type" content="article" />
<meta property="og:title" content="Coronavirus Disease (COVID-19) Situation Report in Greece" />
<meta property="og:description" content="Confirmed cases of COVID-19 in Greece. Data provided by the Ministry of Health." />
<meta name="twitter:card" content="summary_large_image" />
<title>Coronavirus Disease (COVID-19) Situation Report in Greece</title>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link href="https://fonts.googleapis.com/css?family=Noto+Sans+JP|Roboto&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css">
<link rel="stylesheet" href="css/reset.css"/>
<link rel="stylesheet" href="css/modal.css"/>
<link rel="stylesheet" href="css/style.min.css"/>
<link rel="stylesheet" href="css/stylebars.css"/>
<link rel="stylesheet" href="css/table.css?v=1"/>
<link rel="stylesheet" href="css/jquery.tablesorter/theme.blackice.min.css">
<link rel="stylesheet" href="css/simptip.min.css"/>
<link rel="stylesheet" href="lib/katex.min.css">
<link rel="stylesheet" href="//min.gitcdn.xyz/repo/DoclerLabs/Protip/master/protip.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.css">
<link href="lib/mapsvg/css/mapsvg.css" rel="stylesheet">
<link href="lib/mapsvg/css/nanoscroller.css" rel="stylesheet">
<script>
var html$3 = "\n<style>\ndt-math[block] {\n display: block;\n}\n</style>\n";
var DTMath = function(dom, data) {
var equationElements = [].slice.call(dom.querySelectorAll("dt-math"));
equationElements.forEach(function (el) {
var content = el.textContent;
var displayMode = el.hasAttribute("block") ? true : false;
el.innerHTML = html$3 + katex.renderToString(content, {displayMode: displayMode});
});
};
var data = {};
window.document.addEventListener("DOMContentLoaded", function (event) {
DTMath(window.document, data);
});
</script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-174177919-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-174177919-1');
</script>
<style>
#greece-map {
height: 500px;
min-width: 310px;
max-width: 800px;
margin: 0 auto;
}
.highcharts-credits {
font-size: 9px!important;
}
</style>
</head>
<body>
<div id="cover-block">
<div>
<p>Loading data…</p>
<p><a href="./">Refresh page</a><br />if nothing is visible.</p>
</div>
</div>
<div id="container">
<div id="title-block">
<h1><span>Coronavirus Disease (COVID-19) Situation Report in Greece</span></h1>
<p>Confirmed cases of COVID-19 in Greece. Data provided by the Ministry of Health.</p>
<p><a href="index.html">Greek Version</a></p>
<p><a href="#age_distribution">Age distribution</a> | <a href="#predictions">Predictions</a> | <a href="#prefecturestab">Prefectures</a> | <a href="#perprefecture">Per Prefecture</a> | <a href="#maptab">Map</a> | <a href="#faqs">FAQ</a></p>
<p class="updated-last"><br /></p>
</div>
<div id="main-block">
<h2>Nationwide Situation <i class="fas fa-link embedbut"></i></h2>
<div class="flex-container">
<div class="flex-row">
<div class="box transition nationwide" code="carriers" pref="">
<h3>Tested Positive <span><a href="#discrepancies" style="color:#fff;font-size:0.7em"><i class="fa fa-info-circle"></i></a></span></h3>
<div class="latest">
<div>
<span class="type"></span>
<span class="value"></span>
<span class="unit"></span>
</div>
<div class="change"></div>
</div>
<h5 class="updated"><br /></h5>
<div class="switches">
<div class="switch selected" value="new">NEW</div>
<div class="switch" value="total">TOTAL</div>
</div>
<div class="charts-wrapper">
<div class="main-chart-wrapper">
<div class="main-chart"></div>
</div>
<div class="axis-chart"></div>
<div class="axis-cover"></div>
</div>
<div class="checkboxes">
<div class="checkbox moving-average on"><div><div></div></div>Show Moving Average</div>
</div>
<p class="notes">Data source: <a href="https://eody.gov.gr/epidimiologika-statistika-dedomena/ektheseis-covid-19/" target="_blank">EODY</a>. On <span style="color:#8FBDE0">March 28th</span>, all flights to and from Germany and the Netherlands, excluding flights from Germany to Athens were suspended. On <span style="color:#AADCD2">June 1st</span> international flights to and from Athens International Airport resumed for EU+ countries, excluding flights between Greece and Italy, Spain, Sweden, the United Kingdom, and the Netherlands. On <span style="color:#88BBAA">June 15th</span> international flights between Greece and Albania, Italy, North Macedonia, Spain, and the Netherlands were resumed, international flights to and from Thessaloniki Airport Makedonia were resumed. Also borders with Bulgaria reopened for non-essential travel. On <span style="color:#BBCDB3">July 1st</span> international flights between Greece and Algeria, Australia, Canada, Georgia, Japan, Montenegro, Morocco, New Zealand, Rwanda, Serbia, South Korea, Thailand, Tunisia, and Uruguay were resumed. Also international travel by sea between Italy and Patras and Igoumenitsa ports werer resumed. On <span style="color:#DFEA8B">July 15th</span> borders were opened to Serbian citizens, international flights between Greece and the United Kingdom were resumed. On <span style="color:#689AAB">July 20th</span> international flights between Greece and Sweden resumed. On <span style="color:#BADDAD">August 15th</span> international flights between Greece and Albania, North Macedonia, and Turkey resumed. On <span style="color:#88BBAA">September 14th</span> schools reopened. On <span style="color:#3BA9B0">November 7th</span> the 2nd Lockdown began across the country. On <span style="color:#3DC">May 14th</span> curfew between 00:30 - 05:00, travel restrictions lifted. On <span style="color:#3DC">June 28th</span> people are only obligated to wear masks in crowded spaces (indoors or outdoors). See <a href="#discrepancies">notes below</a> for further information.<a class="more">READ MORE</a></p>
<div class="embedwin"><h2>Embed</h2><p>Paste this into any HTML page:</p><textarea readonly="" class="embed"></textarea><a class="close" href="/">Cancel</a></p></div>
</div>
</div>
<div class="flex-row">
<div class="box transition nationwide" code="serious" pref="">
<h3>Critically Ill</h3>
<div class="latest">
<div>
<span class="type"></span>
<span class="value"></span>
<span class="unit"></span>
</div>
<div class="change"></div>
</div>
<h5 class="updated"><br /></h5>
<div class="switches">
<div class="switch selected" value="new">NEW</div>
<div class="switch" value="total">TOTAL</div>
</div>
<div class="charts-wrapper">
<div class="main-chart-wrapper">
<div class="main-chart"></div>
</div>
<div class="axis-chart"></div>
<div class="axis-cover"></div>
</div>
<div class="checkboxes">
<div class="checkbox moving-average on"><div><div></div></div>Show Moving Average</div>
</div>
<p class="notes">Data source: <a href="https://eody.gov.gr/epidimiologika-statistika-dedomena/ektheseis-covid-19/" target="_blank">EODY</a>. See <a href="#negative">notes below</a> for further information.</p>
<div class="embedwin"><h2>Embed</h2><p>Paste this into any HTML page:</p><textarea readonly="" class="embed"></textarea><a class="close" href="/">Cancel</a></p></div>
</div>
</div>
<div class="flex-row">
<div class="box transition nationwide" code="deaths" pref="">
<h3>Deaths</h3>
<div class="latest">
<div>
<span class="type"></span>
<span class="value"></span>
<span class="unit"></span>
</div>
<div class="change"></div>
</div>
<h5 class="updated"><br /></h5>
<div class="switches">
<div class="switch selected" value="new">NEW</div>
<div class="switch" value="total">TOTAL</div>
</div>
<div class="charts-wrapper">
<div class="main-chart-wrapper">
<div class="main-chart"></div>
</div>
<div class="axis-chart"></div>
<div class="axis-cover"></div>
</div>
<div class="checkboxes">
<div class="checkbox moving-average on"><div><div></div></div>Show Moving Average</div>
</div>
<p class="notes">Data source: <a href="https://eody.gov.gr/epidimiologika-statistika-dedomena/ektheseis-covid-19/" target="_blank">EODY</a></p>
<div class="embedwin"><h2>Embed</h2><p>Paste this into any HTML page:</p><textarea readonly="" class="embed"></textarea><a class="close" href="/">Cancel</a></p></div>
</div>
</div>
<div class="flex-row">
<div class="box transition nationwide" code="infected_distribution" pref="">
<h3>Infection Distribution</h3>
<div class="latest">
<div>
<span class="type"></span>
<span class="value"></span>
<span class="unit"></span>
</div>
<div class="change"></div>
</div>
<h5 class="updated"><br /></h5>
<div class="switches">
<div class="switch selected" value="new">NEW</div>
<div class="switch" value="total">TOTAL</div>
</div>
<div class="charts-wrapper">
<div class="main-chart-wrapper">
<div class="main-chart"></div>
</div>
<div class="axis-chart"></div>
<div class="axis-cover"></div>
</div>
<div class="checkboxes">
<div class="checkbox moving-average on"><div><div></div></div>Show Moving Average</div>
</div>
<p class="notes">Data source: <a href="https://eody.gov.gr/epidimiologika-statistika-dedomena/ektheseis-covid-19/" target="_blank">EODY</a>. Some data are missing because EODY didnt announce them. <a class="more">READ MORE</a></p>
<div class="embedwin"><h2>Embed</h2><p>Paste this into any HTML page:</p><textarea readonly="" class="embed"></textarea><a class="close" href="/">Cancel</a></p></div>
</div>
</div>
<div class="flex-row">
<div class="box transition nationwide" code="tests" pref="">
<h3>PCR Testing</h3>
<div class="latest">
<div>
<span class="type"></span>
<span class="value"></span>
<span class="unit"></span>
</div>
<div class="change"></div>
</div>
<h5 class="updated"><br /></h5>
<div class="switches">
<div class="switch selected" value="new">NEW</div>
<div class="switch" value="total">TOTAL</div>
</div>
<div class="charts-wrapper">
<div class="main-chart-wrapper">
<div class="main-chart"></div>
</div>
<div class="axis-chart"></div>
<div class="axis-cover"></div>
</div>
<div class="checkboxes">
<div class="checkbox moving-average on"><div><div></div></div>Show Moving Average</div>
</div>
<p class="notes">Data source: <a href="https://eody.gov.gr/epidimiologika-statistika-dedomena/ektheseis-covid-19/" target="_blank">EODY</a>. On <span style="color:#3DC">September 6th</span>, EODY stopped updating the number of cases that were found positive within the daily tests.<a class="more">READ MORE</a></p>
<div class="embedwin"><h2>Embed</h2><p>Paste this into any HTML page:</p><textarea readonly="" class="embed"></textarea><a class="close" href="/">Cancel</a></p></div>
</div>
</div>
<div class="flex-row">
<div class="box transition nationwide" code="agtests" pref="">
<h3>Rapid Antigen Testing</h3>
<div class="latest">
<div>
<span class="type"></span>
<span class="value"></span>
<span class="unit"></span>
</div>
<div class="change"></div>
</div>
<h5 class="updated"><br /></h5>
<div class="switches">
<div class="switch selected" value="new">NEW</div>
<div class="switch" value="total">TOTAL</div>
</div>
<div class="charts-wrapper">
<div class="main-chart-wrapper">
<div class="main-chart"></div>
</div>
<div class="axis-chart"></div>
<div class="axis-cover"></div>
</div>
<div class="checkboxes">
<div class="checkbox moving-average on"><div><div></div></div>Show Moving Average</div>
</div>
<p class="notes">Data source: <a href="https://eody.gov.gr/epidimiologika-statistika-dedomena/ektheseis-covid-19/" target="_blank">EODY</a></p>
<div class="embedwin"><h2>Embed</h2><p>Paste this into any HTML page:</p><textarea readonly="" class="embed"></textarea><a class="close" href="/">Cancel</a></p></div>
</div>
</div>
<div class="flex-row">
<div class="box transition nationwide" code="vaccinations" pref="">
<h3>Vaccinations</h3>
<div class="latest">
<div class="change vaccompleted"></div>
<div class="change totaldose1"></div>
<div class="change total_vaccinations"></div>
</div>
<h5 class="updated"><br /></h5>
<div class="switches">
<div class="switch selected" value="new">NEW</div>
<div class="switch" value="total">TOTAL</div>
</div>
<div class="charts-wrapper">
<div class="main-chart-wrapper">
<div class="main-chart"></div>
</div>
<div class="axis-chart"></div>
<div class="axis-cover"></div>
</div>
<p class="notes">Data Source: <a href="https://www.data.gov.gr/datasets/mdg_emvolio/" target="_blank">data.gov.gr</a>. (Our data is collated and updated every day after 9pm) <a class="more">READ MORE</a></p>
<div class="embedwin"><h2>Embed</h2><p>Paste this into any HTML page:</p><textarea readonly="" class="embed"></textarea><a class="close" href="/">Cancel</a></p></div>
</div>
</div>
<div class="flex-row">
<div class="box transition nationwide" code="icu_entry_exit" pref="">
<h3>Admissions/Discharge of Patients</h3>
<div class="latest">
<div class="change" id="discharged"></div>
<div class="change" id="admissions"></div>
</div>
<h5 class="updated"><br /></h5>
<div class="switches">
<div class="switch" value="new">NEW</div>
<div class="switch selected" value="total">TOTAL</div>
</div>
<div class="charts-wrapper">
<div class="main-chart-wrapper">
<div class="main-chart"></div>
</div>
<div class="axis-chart"></div>
<div class="axis-cover"></div>
</div>
<div><br /><br /></div>
<p class="notes">Data Source: <a href="https://covid19.gov.gr/covid19-live-analytics" target="_blank">covid19.gov.gr</a> (The daily changes reported by EODY concern cases of the previous day) <a class="more">READ MORE</a></p>
<div class="embedwin"><h2>Embed</h2><p>Paste this into any HTML page:</p><textarea readonly="" class="embed"></textarea><a class="close" href="/">Cancel</a></p></div>
</div>
</div>
<div class="flex-row">
<div class="box" code="icu_percentages" id="icu_percentages">
<h3>ICU/Beds coverage</h3>
<div class="latest">
<div>
<span class="type"></span>
<span class="value"></span>
<span class="unit"></span>
</div>
<div class="change"></div>
</div>
<h5 class="updated"></h5>
<div id="icu-chart"></div>
<p class="notes">Data Source: <a href="https://covid19.gov.gr/covid19-live-analytics" target="_blank">covid19.gov.gr</a> (The daily changes reported by EODY concern cases of the previous day) <a class="more">READ MORE</a></p>
<div class="embedwin"><h2>Embed</h2><p>Paste this into any HTML page:</p><textarea readonly="" class="embed"></textarea><a class="close" href="/">Cancel</a></p></div>
</div>
</div>
</div>
<h2 id="age_distribution">Age distribution of confirmed cases <i class="fas fa-link embedbut"></i></h2>
<div class="flex-container">
<div class="flex-row">
<div class="box" id="demography-box" code="demography_sum">
<h3>Percentage distribution (total)</h3>
<h5 class="updated-demography-sum"><br></h5>
<div id="demography-chart"></div>
<p class="notes"></p>
<div class="embedwin"><h2>Embed</h2><p>Paste this into any HTML page:</p><textarea readonly="" class="embed"></textarea><a class="close" href="/">Cancel</a></p></div>
</div>
</div>
<div class="flex-row">
<div class="box" id="demography-box-men" code="demography_men">
<h3>Percentage distribution (men)</h3>
<h5 class="updated-demography-men"><br></h5>
<div id="demography-chart-men"></div>
<p class="notes"></p>
<div class="embedwin"><h2>Embed</h2><p>Paste this into any HTML page:</p><textarea readonly="" class="embed"></textarea><a class="close" href="/">Cancel</a></p></div>
</div>
</div>
<div class="flex-row">
<div class="box" id="demography-box-women" code="demography_women">
<h3>Percentage distribution (women)</h3>
<h5 class="updated-demography-women"><br></h5>
<div id="demography-chart-women"></div>
<p class="notes"></p>
<div class="embedwin"><h2>Embed</h2><p>Paste this into any HTML page:</p><textarea readonly="" class="embed"></textarea><a class="close" href="/">Cancel</a></p></div>
</div>
</div>
<div class="flex-row">
<div class="box transition nationwide" code="infected_distribution_total" pref="">
<h3>Cases distribution (total)</h3>
<div class="latest">
<div>
<span class="type"></span>
<span class="value"></span>
<span class="unit"></span>
</div>
<div class="change"></div>
</div>
<h5 class="updated"><br /></h5>
<div class="switches">
<div class="switch selected" value="new">NEW</div>
<div class="switch" value="total">TOTAL</div>
</div>
<div class="charts-wrapper">
<div class="main-chart-wrapper">
<div class="main-chart"></div>
</div>
<div class="axis-chart"></div>
<div class="axis-cover"></div>
</div>
<div class="checkboxes">
<div class="checkbox moving-average on"><div><div></div></div>Show Moving Average</div>
</div>
<p class="notes">Data source: <a href="https://eody.gov.gr/epidimiologika-statistika-dedomena/ektheseis-covid-19/" target="_blank">EODY</a></p>
<div class="embedwin"><h2>Embed</h2><p>Paste this into any HTML page:</p><textarea readonly="" class="embed"></textarea><a class="close" href="/">Cancel</a></p></div>
</div>
</div>
<div class="flex-row">
<div class="box transition nationwide" code="infected_distribution_men" pref="">
<h3>Cases distribution (men)</h3>
<div class="latest">
<div>
<span class="type"></span>
<span class="value"></span>
<span class="unit"></span>
</div>
<div class="change"></div>
</div>
<h5 class="updated"><br /></h5>
<div class="switches">
<div class="switch selected" value="new">NEW</div>
<div class="switch" value="total">TOTAL</div>
</div>
<div class="charts-wrapper">
<div class="main-chart-wrapper">
<div class="main-chart"></div>
</div>
<div class="axis-chart"></div>
<div class="axis-cover"></div>
</div>
<div class="checkboxes">
<div class="checkbox moving-average on"><div><div></div></div>Show Moving Average</div>
</div>
<p class="notes">Data source: <a href="https://eody.gov.gr/epidimiologika-statistika-dedomena/ektheseis-covid-19/" target="_blank">EODY</a></p>
<div class="embedwin"><h2>Embed</h2><p>Paste this into any HTML page:</p><textarea readonly="" class="embed"></textarea><a class="close" href="/">Cancel</a></p></div>
</div>
</div>
<div class="flex-row">
<div class="box transition nationwide" code="infected_distribution_women" pref="">
<h3>Cases distribution (women)</h3>
<div class="latest">
<div>
<span class="type"></span>
<span class="value"></span>
<span class="unit"></span>
</div>
<div class="change"></div>
</div>
<h5 class="updated"><br /></h5>
<div class="switches">
<div class="switch selected" value="new">NEW</div>
<div class="switch" value="total">TOTAL</div>
</div>
<div class="charts-wrapper">
<div class="main-chart-wrapper">
<div class="main-chart"></div>
</div>
<div class="axis-chart"></div>
<div class="axis-cover"></div>
</div>
<div class="checkboxes">
<div class="checkbox moving-average on"><div><div></div></div>Show Moving Average</div>
</div>
<p class="notes">Data source: <a href="https://eody.gov.gr/epidimiologika-statistika-dedomena/ektheseis-covid-19/" target="_blank">EODY</a></p>
<div class="embedwin"><h2>Embed</h2><p>Paste this into any HTML page:</p><textarea readonly="" class="embed"></textarea><a class="close" href="/">Cancel</a></p></div>
</div>
</div>
<div class="flex-row">
<div class="box transition nationwide" code="death_distribution_total" pref="">
<h3>Deaths by age (total)</h3>
<div class="latest">
<div>
<span class="type"></span>
<span class="value"></span>
<span class="unit"></span>
</div>
<div class="change"></div>
</div>
<h5 class="updated"><br /></h5>
<div class="switches">
<div class="switch selected" value="new">NEW</div>
<div class="switch" value="total">TOTAL</div>
</div>
<div class="charts-wrapper">
<div class="main-chart-wrapper">
<div class="main-chart"></div>
</div>
<div class="axis-chart"></div>
<div class="axis-cover"></div>
</div>
<div class="checkboxes">
<div class="checkbox moving-average on"><div><div></div></div>Show Moving Average</div>
</div>
<p class="notes">Data source: <a href="https://eody.gov.gr/epidimiologika-statistika-dedomena/ektheseis-covid-19/" target="_blank">EODY</a></p>
<div class="embedwin"><h2>Embed</h2><p>Paste this into any HTML page:</p><textarea readonly="" class="embed"></textarea><a class="close" href="/">Cancel</a></p></div>
</div>
</div>
<div class="flex-row">
<div class="box transition nationwide" code="death_distribution_men" pref="">
<h3>Deaths by age (men)</h3>
<div class="latest">
<div>
<span class="type"></span>
<span class="value"></span>
<span class="unit"></span>
</div>
<div class="change"></div>
</div>
<h5 class="updated"><br /></h5>
<div class="switches">
<div class="switch selected" value="new">NEW</div>
<div class="switch" value="total">TOTAL</div>
</div>
<div class="charts-wrapper">
<div class="main-chart-wrapper">
<div class="main-chart"></div>
</div>
<div class="axis-chart"></div>
<div class="axis-cover"></div>
</div>
<div class="checkboxes">
<div class="checkbox moving-average on"><div><div></div></div>Show Moving Average</div>
</div>
<p class="notes">Data source: <a href="https://eody.gov.gr/epidimiologika-statistika-dedomena/ektheseis-covid-19/" target="_blank">EODY</a></p>
<div class="embedwin"><h2>Embed</h2><p>Paste this into any HTML page:</p><textarea readonly="" class="embed"></textarea><a class="close" href="/">Cancel</a></p></div>
</div>
</div>
<div class="flex-row">
<div class="box transition nationwide" code="death_distribution_women" pref="">
<h3>Deaths by age (women)</h3>
<div class="latest">
<div>
<span class="type"></span>
<span class="value"></span>
<span class="unit"></span>
</div>
<div class="change"></div>
</div>
<h5 class="updated"><br /></h5>
<div class="switches">
<div class="switch selected" value="new">NEW</div>
<div class="switch" value="total">TOTAL</div>
</div>
<div class="charts-wrapper">
<div class="main-chart-wrapper">
<div class="main-chart"></div>
</div>
<div class="axis-chart"></div>
<div class="axis-cover"></div>
</div>
<div class="checkboxes">
<div class="checkbox moving-average on"><div><div></div></div>Show Moving Average</div>
</div>
<p class="notes">Data source: <a href="https://eody.gov.gr/epidimiologika-statistika-dedomena/ektheseis-covid-19/" target="_blank">EODY</a></p>
<div class="embedwin"><h2>Embed</h2><p>Paste this into any HTML page:</p><textarea readonly="" class="embed"></textarea><a class="close" href="/">Cancel</a></p></div>
</div>
</div>
<div class="flex-row">
<div class="box transition nationwide" code="intensive_distribution_total" pref="">
<h3>Critically Ill by age (total)</h3>
<div class="latest">
<div>
<span class="type"></span>
<span class="value"></span>
<span class="unit"></span>
</div>
<div class="change"></div>
</div>
<h5 class="updated"><br /></h5>
<div class="switches">
<div class="switch selected" value="new">NEW</div>
<div class="switch" value="total">TOTAL</div>
</div>
<div class="charts-wrapper">
<div class="main-chart-wrapper">
<div class="main-chart"></div>
</div>
<div class="axis-chart"></div>
<div class="axis-cover"></div>
</div>
<div class="checkboxes">
<div class="checkbox moving-average on"><div><div></div></div>Show Moving Average</div>
</div>
<p class="notes">Data source: <a href="https://eody.gov.gr/epidimiologika-statistika-dedomena/ektheseis-covid-19/" target="_blank">EODY</a></p>
<div class="embedwin"><h2>Embed</h2><p>Paste this into any HTML page:</p><textarea readonly="" class="embed"></textarea><a class="close" href="/">Cancel</a></p></div>
</div>
</div>
<div class="flex-row">
<div class="box transition nationwide" code="intensive_distribution_men" pref="">
<h3>Critically Ill by age (men)</h3>
<div class="latest">
<div>
<span class="type"></span>
<span class="value"></span>
<span class="unit"></span>
</div>
<div class="change"></div>
</div>
<h5 class="updated"><br /></h5>
<div class="switches">
<div class="switch selected" value="new">NEW</div>
<div class="switch" value="total">TOTAL</div>
</div>
<div class="charts-wrapper">
<div class="main-chart-wrapper">
<div class="main-chart"></div>
</div>
<div class="axis-chart"></div>
<div class="axis-cover"></div>
</div>
<div class="checkboxes">
<div class="checkbox moving-average on"><div><div></div></div>Show Moving Average</div>
</div>
<p class="notes">Data source: <a href="https://eody.gov.gr/epidimiologika-statistika-dedomena/ektheseis-covid-19/" target="_blank">EODY</a></p>
<div class="embedwin"><h2>Embed</h2><p>Paste this into any HTML page:</p><textarea readonly="" class="embed"></textarea><a class="close" href="/">Cancel</a></p></div>
</div>
</div>
<div class="flex-row">
<div class="box transition nationwide" code="intensive_distribution_women" pref="">
<h3>Critically Ill by age (women)</h3>
<div class="latest">
<div>
<span class="type"></span>
<span class="value"></span>
<span class="unit"></span>
</div>
<div class="change"></div>
</div>
<h5 class="updated"><br /></h5>
<div class="switches">
<div class="switch selected" value="new">NEW</div>
<div class="switch" value="total">TOTAL</div>
</div>
<div class="charts-wrapper">
<div class="main-chart-wrapper">
<div class="main-chart"></div>
</div>
<div class="axis-chart"></div>
<div class="axis-cover"></div>
</div>
<div class="checkboxes">
<div class="checkbox moving-average on"><div><div></div></div>Show Moving Average</div>
</div>
<p class="notes">Data source: <a href="https://eody.gov.gr/epidimiologika-statistika-dedomena/ektheseis-covid-19/" target="_blank">EODY</a></p>
<div class="embedwin"><h2>Embed</h2><p>Paste this into any HTML page:</p><textarea readonly="" class="embed"></textarea><a class="close" href="/">Cancel</a></p></div>
</div>
</div>
<div class="flex-row">
<div class="box" id="demography-box-group-cases" code="demography_group_cases">
<h3>Cases by gender (total)</h3>
<h5 class="updated_dont_show"><br /></h5>
<div id="demography-chart-group-cases"></div>
<p class="notes"></p>
<div class="embedwin"><h2>Embed</h2><p>Paste this into any HTML page:</p><textarea readonly="" class="embed"></textarea><a class="close" href="/">Cancel</a></p></div>
</div>
</div>
<div class="flex-row">
<div class="box" id="demography-box-group-deaths" code="demography_group_deaths">
<h3>Deaths by gender (total)</h3>
<h5 class="updated_dont_show"><br /></h5>
<div id="demography-chart-group-deaths"></div>
<p class="notes"></p>
<div class="embedwin"><h2>Embed</h2><p>Paste this into any HTML page:</p><textarea readonly="" class="embed"></textarea><a class="close" href="/">Cancel</a></p></div>
</div>
</div>
<div class="flex-row">
<div class="box" id="demography-box-group-intensive" code="demography_group_intensive">
<h3>Critically Ill by gender (total)</h3>
<h5 class="updated_dont_show"><br /></h5>
<div id="demography-chart-group-intensive"></div>
<p class="notes"></p>
<div class="embedwin"><h2>Embed</h2><p>Paste this into any HTML page:</p><textarea readonly="" class="embed"></textarea><a class="close" href="/">Cancel</a></p></div>
</div>
</div>
<!--
<div class="flex-row">
<div class="box" id="demography-box-serious">
<h3>Critically Ill by gender</h3>
<h5 class="updated-demography-serious"><br></h5>
<div id="demography-chart-serious"></div>
<p class="notes"></p>
</div>
</div>
-->
</div>
<h2 id="predictions">Predictions <i class="fas fa-link embedbut"></i></h2>
<div class="flex-container">
<div class="flex-row">
<div class="box transition nationwide" code="rj_repro" pref="">
<h3>Effective Reproduction Number R_j (estimate)</h3>
<div class="latest">
<div>
<span class="type"></span>
<span class="value"></span>
<span class="unit"></span>
</div>
<div class="change"></div>
</div>
<h5 class="updated"><br /></h5>
<div class="charts-wrapper">
<div class="main-chart-wrapper">
<div class="main-chart"></div>
</div>
<div class="axis-chart"></div>
<div class="axis-cover"></div>
</div>
<p class="notes">A likelihood-based estimation procedure that infers the temporal pattern of effective reproduction numbers from an observed epidemic curve. The shown epidemic curve comprises all captured cases assigned to their estimated symptom onset date. Formula uses: Based on the selected data an offset average <dt-math>\Delta (=5)</dt-math> has been applied to assign the cases to their estimated symptom onset date. <dt-math>num of Incubation Days=5</dt-math>, <dt-math>infectivity period Days=5</dt-math>. See <a href="#rj-notes">notes below</a> for further information. <a class="more">READ MORE</a></p>
<div class="embedwin"><h2>Embed</h2><p>Paste this into any HTML page:</p><textarea readonly="" class="embed"></textarea><a class="close" href="/">Cancel</a></p></div>
</div>
</div>
<div class="flex-row">
<div class="box transition nationwide" code="positivity_rate" pref="">
<h3>Positivity Rate</h3>
<div class="latest" id="pos_pcr">
<div>
<span class="type"></span>
<span class="valuesmall"></span>
<span class="change"></span>
</div>
</div>
<div class="latest" id="pos_combined" style="padding-top:15px">
<div>
<span class="type"></span>
<span class="valuesmall"></span>
<span class="change"></span>
</div>
</div>
<div class="latest" id="pos_daily" style="padding-top:30px">
<div>
<span class="type"></span>
<span class="valuesmall"></span>
<span class="change"></span>
</div>
</div>
<h5 class="updated"><br /></h5>
<div class="charts-wrapper">
<div class="main-chart-wrapper">
<div class="main-chart"></div>
</div>
<div class="axis-chart"></div>
<div class="axis-cover"></div>
</div>
<p class="notes">The positivity rate is given with a rolling 7-day average, except in the case of 'Daily PCR+Rapid' which is expressed based on daily values. See <a href="#positive_rate">notes below</a> for further information. <a class="more">READ MORE</a></p>
<div class="embedwin"><h2>Embed</h2><p>Paste this into any HTML page:</p><textarea readonly="" class="embed"></textarea><a class="close" href="/">Cancel</a></p></div>
</div>
</div>
<div class="flex-row">
<div class="box transition nationwide" code="infection_fatality_rate" pref="">
<h3>Implied Infection Fatality Rate (IIFR)</h3>
<div class="latest">
<div>
<span class="type"></span>
<span class="value"></span>
<span class="unit"></span>
</div>
<div class="change"></div>
</div>
<h5 class="updated"><br /></h5>
<div class="charts-wrapper">
<div class="main-chart-wrapper">
<div class="main-chart"></div>
</div>
<div class="axis-chart"></div>
<div class="axis-cover"></div>
</div>
<p class="notes">Using the estimates of true infections we can compute the implied infection fatality rate (IIFR), by taking the reported deaths from 28 days into the future (7-day moving average) and dividing it by the true infections (7-day moving average). Note that we assume that reported deaths is roughly equal to true deaths. If there is a significant amount of excess/unreported COVID-19 deaths, then our IIFR estimate will be an underestimate of the true IFR.<b>It is not age-adjusted</b>. As a result, if there is an increasing prevalence of the disease in a younger population, then the IFR will decrease, despite the deadliness of the virus remaining unchanged among a particular age group. See <a href="#ifr_notes">notes below</a> for further information. <a href="https://covid19-projections.com/about/#infection-fatality-rate-ifr" target="_blank">covid19-projections.com</a> for all assumptions made. <a class="more">READ MORE</a></p>
<div class="embedwin"><h2>Embed</h2><p>Paste this into any HTML page:</p><textarea readonly="" class="embed"></textarea><a class="close" href="/">Cancel</a></p></div>
</div>
</div>
<div class="flex-row">
<div class="box transition nationwide" code="active" pref="">
<h3>Active Cases (estimate)</h3>
<div class="latest">
<div>
<span class="type"></span>
<span class="value"></span>
<span class="unit"></span>
</div>
<div class="change"></div>
</div>
<h5 class="updated"><br /></h5>
<div class="switches">
<div class="switch" value="new">NEW</div>
<div class="switch selected" value="total">TOTAL</div>
</div>
<div class="charts-wrapper">
<div class="main-chart-wrapper">
<div class="main-chart"></div>
</div>
<div class="axis-chart"></div>
<div class="axis-cover"></div>
</div>
<div class="checkboxes">
<div class="checkbox moving-average on"><div><div></div></div>Show Moving Average</div>
</div>
<p class="notes">Formula: Translate reported cases by adding all the cumulative tested positive cases that existed from 17 days ago (Most people recover from mild COVID-19 within two weeks and more serious disease within three weeks, giving a absolute median of 17). Some smoothing has also been applied due to some cases being from tourists that tested positive at the borders. See <a href="#active_cases">notes below</a> for further information. <a class="more">READ MORE</a></p>
<div class="embedwin"><h2>Embed</h2><p>Paste this into any HTML page:</p><textarea readonly="" class="embed"></textarea><a class="close" href="/">Cancel</a></p></div>
</div>
</div>
<div class="flex-row">
<div class="box transition nationwide" code="predicted_true_inf" pref="">
<h3>«True» number of infections (estimate)</h3>
<div class="latest">
<div>
<span class="type"></span>
<span class="value"></span>
<span class="unit"></span>
</div>
</div>
<h5 class="updated"><br /></h5>
<div class="switches">
<div class="switch selected" value="new">NEW</div>
<div class="switch" value="total">TOTAL</div>
</div>
<div class="charts-wrapper">
<div class="main-chart-wrapper">
<div class="main-chart"></div>
</div>
<div class="axis-chart"></div>
<div class="axis-cover"></div>
</div>
<p class="notes">The core idea behind this method is that we can use the <a href="#positive_rate">positivity rate</a> to roughly determine the ratio of true infections to reported cases. The hypothesis is that as positivity rate increases, the higher the true prevalence in a region relative to the reported cases. Note that all values used are 7-day moving averages. See <a href="#true_infection">notes below</a> or further information. <a href="https://covid19-projections.com/estimating-true-infections/" target="_blank">covid19-projections.com</a> for all assumptions made. <a class="more">READ MORE</a></p>
<div class="embedwin"><h2>Embed</h2><p>Paste this into any HTML page:</p><textarea readonly="" class="embed"></textarea><a class="close" href="/">Cancel</a></p></div>
</div>
</div>
<div class="flex-row">
<div class="box transition nationwide" code="predicted_deaths" pref="">
<h3>Predicted deaths (estimate)</h3>
<div class="latest">
<div>
<span class="type"></span>
<span class="value"></span>
<span class="unit"></span>
</div>
</div>
<h5 class="updated_dont_show"><br /></h5>
<div class="charts-wrapper">
<div class="main-chart-wrapper" id="predicted_scroller">
<div class="main-chart"></div>
</div>
<div class="axis-chart"></div>
<div class="axis-cover"></div>
</div>
<p class="notes">Data Source: <a href="https://covid19.healthdata.org/greece?view=daily-deaths&tab=trend" target="_blank">covid19.healthdata.org (02-07-2021)</a></p>
<div class="embedwin"><h2>Embed</h2><p>Paste this into any HTML page:</p><textarea readonly="" class="embed"></textarea><a class="close" href="/">Cancel</a></p></div>
</div>
</div>
</div>
<div class="flex-container" id="not_iphones" style="display:none">
<div class="flex-row" id="prefectures-tab">
<h2 id="prefecturestab">Prefectures</h2>
<select id="select-pref-type">
<option value="carriers">Tested Positive</option>
<option value="deaths">Deaths</option>
<option value="vaccinations">Vaccinations</option>
</select>
<div class="box" id="region-box">
<div id="greece-map"></div>
<div id="region-chart"></div>
</div>
</div>
<div class="flex-row t02">
<h2 id="index-each-prefecture">Each Prefecture</h2>
<select id="select-prefecture">
<option value="1">Attica</option>
<option value="2">Central Greece</option>
<option value="3">Central Macedonia</option>
<option value="4">Crete</option>
<option value="5">Eastern Macedonia and Thrace</option>
<option value="6">Epirus</option>
<option value="7">Ionian Islands</option>
<option value="8">Mount Athos</option>
<option value="9">North Aegean</option>
<option value="10">Peloponnese</option>
<option value="11">South Aegean</option>
<option value="12">Thessaly</option>
<option value="13">Western Greece</option>
<option value="14">Western Macedonia</option>
<option value="15">Without permanent residency in Greece</option>
<option value="16">Under Investigation</option>
</select>
<div class="flex-container">
<div class="flex-row t03">
<div class="box transition prefecture" code="carriers" pref="">
<h3>Tested Positive in <span></span></h3>
<div class="latest">
<div>
<span class="type"></span>
<span class="value"></span>
<span class="unit"></span>
</div>
<div class="change"></div>
</div>
<h5 class="updated"><br /></h5>
<div class="switches">
<div class="switch selected" value="new">NEW</div>
<div class="switch" value="total">TOTAL</div>
</div>
<div class="charts-wrapper">
<div class="main-chart-wrapper">
<div class="main-chart"></div>
</div>
<div class="axis-chart"></div>
<div class="axis-cover"></div>
</div>
<div class="checkboxes">
<div class="checkbox moving-average on"><div><div></div></div>Show Moving Average</div>
</div>
<p class="notes">Data Source: <a href="https://eody.gov.gr/epidimiologika-statistika-dedomena/ektheseis-covid-19/" target="_blank">EODY</a>.</p>
</div>
</div>
<div class="flex-row t03">
<div class="box transition prefecture" code="deaths" pref="">
<h3>Deaths in <span></span></h3>
<div class="latest">
<div>
<span class="type"></span>
<span class="value"></span>
<span class="unit"></span>
</div>
<div class="change"></div>
</div>
<h5 class="updated"><br /></h5>
<div class="switches">
<div class="switch selected" value="new">NEW</div>
<div class="switch" value="total">TOTAL</div>
</div>
<div class="charts-wrapper">
<div class="main-chart-wrapper">
<div class="main-chart"></div>
</div>
<div class="axis-chart"></div>
<div class="axis-cover"></div>
</div>
<div class="checkboxes">
<div class="checkbox moving-average on"><div><div></div></div>Show Moving Average</div>
</div>
<p class="notes">Data source: <a href="https://github.com/iMEdD-Lab/open-data/blob/master/COVID-19/greece_deaths_v2.csv" target="_blank">iMEdD-Lab</a>.</p>
</div>
</div>
<div class="flex-row t03">
<div class="box transition prefecture" code="vaccinations" pref="">
<h3>Vaccinations, <span></span></h3>
<div class="latest">
<div class="change vaccompleted"></div>
<div class="change totaldose1"></div>
<div class="change total_vaccinations"></div>
</div>
<h5 class="updated"><br /></h5>
<div class="switches">
<div class="switch selected" value="new">NEW</div>
<div class="switch" value="total">TOTAL</div>
</div>
<div class="charts-wrapper">
<div class="main-chart-wrapper">
<div class="main-chart"></div>
</div>
<div class="axis-chart"></div>
<div class="axis-cover"></div>
</div>
<!--
<div class="checkboxes">
<div class="checkbox moving-average on"><div><div></div></div>Show Moving Average</div>
</div>
-->
<p class="notes">Data Source: <a href="https://emvolio.gov.gr/vaccinationtracker" target="_blank">emvolio.gov.gr</a>.</p>
</div>
</div>
</div>
</div>
<div class="flex-row t12">
<div class="box transition nationwide" id="unemployment" code="unemployment" pref="">
<h3>Unemployment <i class="fas fa-link embedbut"></i>
<span class="features simptip-position-right simptip-multiline" data-tooltip="New applications of unemployed for subsidy / Total unemployed by Region">
<i class="fa fa-info-circle text-info fa-1x info-cursor pl-1 mb-2"></i></span>
</h3>
<h5 class="updated-unemployment"></h5>
<select id="select-unemp-type" style="display: inline!important;">
<option value="1">Attica</option>
<option value="12">Central Greece</option>
<option value="8">Central Macedonia</option>
<option value="9">Crete</option>
<option value="0">Eastern Macedonia and Thrace</option>
<option value="5">Epirus</option>
<option value="7">Ionian Islands</option>
<option value="2">North Aegean</option>
<option value="11">Peloponnese</option>
<option value="10">South Aegean</option>
<option value="6">Thessaly</option>
<option value="3">Western Greece</option>
<option value="4">Western Macedonia</option>
</select>
<div id="unemployment-chart"></div>
<p class="notes">Data source: <a href="https://www.oaed.gr/statistika" target="_blank">oaed.gr</a>.</p>
<div class="embedwin" style="top:20px;left: 20px"><h2>Embed</h2><p>Paste this into any HTML page:</p><textarea readonly="" class="embed"></textarea><a class="close" href="/">Cancel</a></p></div>
</div>
</div>
</div>
<div class="flex-container">
<div class="flex-row t12">
<h2 id="perprefecture">Per Prefecture <i class="fas fa-link embedbut"></i>
<span class="protip" data-pt-title="· The prefecture colors reflect the epidemiological situation based on the categorization of ECDC and the values of column 'Cases per 100,000'.<br>· The 14-day trend is divided into 3 categories: red >5%, yellow >0% and <5%, green <0%.<br>· The values of column 'Last 14 days' are the two moving averages(7 days) of 14 days before and today, and are used to find the percentage increase of the '14-day trend' column. (Percentage Increase = [(Final Value - Starting Value ) / Starting Value) × 100]).<br>· 'Cases per 100,000' is based on a 7-Day Average of New Cases per 100.000 inhabitants, for the last 14 days.<br>· The Rj value is calculated without any smoothing, ie it results from the absolute values of the daily cases.</li>">
<i class="fa fa-info-circle text-info fa-1x info-cursor pl-1 mb-2"></i></span>
<span><small id="pref-updated"></small></span>
</h2>
<div class="box" id="prefectures-box" code="prefectures-box">
<span><input id="search-nomous" type="text" placeholder="Search.."></span>
<table class="table tablesorter table-responsive" id="prefectures">
<thead>
<tr>
<th width="12%" class="active" nowrap>Prefectures <small>(click for more)</small></th>
<th>14-day trend of<br>COVID (mov.average)</th>
<th>Last 14 days (mov.average)</th>
<th width="8%">Total cases</th>
<th width="12%">Cases per 100,000 (14 days)</th>