-
Notifications
You must be signed in to change notification settings - Fork 0
/
geotriotour.kml
6342 lines (6141 loc) · 275 KB
/
geotriotour.kml
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
<?xml version="1.0" encoding="utf-8" ?>
<kml xmlns="http://www.opengis.net/kml/2.2"
xmlns:gx="http://www.google.com/kml/ext/2.2">
<Document id="NeoGeoWebTouring">
<name>Ebola Outbreaks along time</name>
<open>1</open>
<description>Touring over Ebola outbreaks since 1976</description>
// Balloon style authored by Anna
<Style id="annastyle">
<BalloonStyle>
<bgColor>503C0014</bgColor>
<text>
<![CDATA[<table width="250" border="0" cellpadding="10" cellspacing="0">
<tr>
<th align="left" ><font size="4">$[year]<br/></font><font size="3">$[name]</font></th>
<th><font color="white"></font></th>
<th rowspan="2"><img src=$[flag] alt="picture" width="60"></th>
<th><font color="white">d</font></th>
</tr>
<tr>
<td colspan="2"><font size="2">Strain: $[strain]<br/></font></td>
<td/>
<td/>
</tr>
<tr align="left">
<td colspan="4"><font size="3">$[description]</font></td>
</tr>
<tr align="center">
<br/>
<td colspan="4">
<table width="235" border="0" cellpadding="3" cellspacing="0" bgcolor="#bebebe">
<tr align="center">
<td><font size="2">Cases</font></td>
<td><font size="2">Deaths</font></td>
<td><font size="2">Fatality</font></td>
</tr>
<tr align="center">
<td><font size="3"><b>$[cases]</b></font></td>
<td><font size="3"><b>$[deaths]</b></font></td>
<td><font size="3"><b>$[fatality]</b></font></td>
</tr>
</table>
</td>
<br/>
</tr>
</table>
<br/>
]]>
</text>
</BalloonStyle>
<Polystyle>
<fill>1</fill>
</Polystyle>
<LineStyle>
<color>ff0000ff</color>
</LineStyle>
</Style>
// Balloon style authored by Rachel
<Style id="rachelstyle">
<BalloonStyle>
<!-- a background color for the balloon -->
<bgColor>ffffffbb</bgColor>
<!-- styling of the balloon text -->
<text>
<![CDATA[
<b><font color="#CC0000" size="+2">$[name]</font></b>
<br/><br/>
<td>
<img src=$[flag] alt="picture" width="60" align="left" />
</td>
<font face="Courier">$[description]</font>
<br/><br/>
<br/><br/>
<table border="0.5" cellpadding="5">
<tr><td>Cases</td><td>Deaths</td><td>Fatality</td></tr>
<tr align="center"><td><b>$[cases]</b></td><td><b>$[deaths]</b></td><td><b>$[fatality]</b></td></tr>
</table>
<!-- insert the to/from hyperlinks -->
]]>
</text>
</BalloonStyle>
<LineStyle>
<color>ff0000ff</color>
</LineStyle>
<Polystyle>
<fill>1</fill>
</Polystyle>
</Style>
// Balloon style authored by Tassia
<Style id="tassiastyle">
<BalloonStyle>
<bgColor>#dddddd</bgColor>
<text>
<![CDATA[
<table width="250" border="0" cellpadding="5" cellspacing="0" bgcolor="#ffffff">
<tr>
<td><img src=$[flag_src] alt="picture" width="80" align="left" /></td>
<td><h3><b>$[year]</b><br /><font color="#006600">$[country]</font></h3></td>
</tr>
<tr>
<td colspan="2"><p>$[info]</p></td>
</tr>
<tr>
<table border="0.5" cellpadding="5">
<tr><td>Cases</td><td>Deaths</td><td>Fatality</td></tr>
<tr align="center"><td><b>$[cases]</b></td><td><b>$[deaths]</b></td><td><b>$[fatality]</b></td></tr>
</tr>
</table>
]]>
</text>
</BalloonStyle>
<LineStyle>
<color>ff0000ff</color>
</LineStyle>
<Polystyle>
<fill>1</fill>
</Polystyle>
</Style>
//health center icon style//
<Style id="healthcentericon">
<IconStyle>
<Icon>
<href>http://maps.google.com/mapfiles/kml/pal3/icon38.png</href>
</Icon>
</IconStyle>
<BalloonStyle>
<text>
$[description]
</text>
</BalloonStyle>
</Style>
// A general clean style
<Style id="raw">
<BalloonStyle>
<text>
$[description]
</text>
</BalloonStyle>
</Style>
// Red lines for strain paths
<Style id="strain_path">
<LineStyle>
<color>ff0000ff</color>
<width>5</width>
</LineStyle>
</Style>
// Introducing Tour//
<Style id="intro">
<BalloonStyle>
<bgColor>#660066</bgColor>
<text>
<![CDATA[<table width="250" border="0" cellpadding="5" cellspacing="0" bgcolor="#FFFFFF">
<tr>
<h3><font color="#660033">$[name]</font></h3></td>
</tr>
<tr>
<td></td><td align="center" ><b>$[description]</b></td>
</tr>
<tr>
<td colspan="2"><p>$[info]</p></td>
</tr>
<tr>
<table border="0.5" cellpadding="5">
</tr>
</table>
]]>
</text>
</BalloonStyle>
</Style>
<Folder>
<name>Geo Trio Placemarks</name>
// Anna: early epidemics 1976-1995 //
// 1976:
Democratic Republic of Congo, Zaire strain, 318 cases, 280 deaths, 88% fatality
Sudan, Sudan strain, 284 cases, 151 deaths, 53% fatality//
<Placemark id="xcongo1976">
<visibility>0</visibility>
<styleUrl>#annastyle</styleUrl>
<name>Democratic Republic of the Congo</name>
<description>Spread by personal contact and use of contaminated needles and syringes in hospitals.</description>
<ExtendedData>
<Data name="year">
<value>1976</value>
</Data>
<Data name="flag">
<value>http://upload.wikimedia.org/wikipedia/commons/6/6f/Flag_of_the_Democratic_Republic_of_the_Congo.svg</value>
</Data>
<Data name="cases">
<value>318</value>
</Data>
<Data name="deaths">
<value>280</value>
</Data>
<Data name="fatality">
<value>88%</value>
</Data>
<Data name="strain">
<value>Zaire</value>
</Data>
</ExtendedData>
<Point>
<coordinates>
12.458496,-5.987607
</coordinates>
</Point>
</Placemark>
<Placemark id="congo1976">
<visibility>0</visibility>
<name>Democratic Republic of the Congo</name>
<description>Spread by personal contact and use of contaminated needles and syringes in hospitals.</description>
<ExtendedData>
<Data name="year">
<value>1976</value>
</Data>
<Data name="flag">
<value>http://upload.wikimedia.org/wikipedia/commons/6/6f/Flag_of_the_Democratic_Republic_of_the_Congo.svg</value>
</Data>
<Data name="cases">
<value>318</value>
</Data>
<Data name="deaths">
<value>280</value>
</Data>
<Data name="fatality">
<value>88%</value>
</Data>
<Data name="strain">
<value>Zaire</value>
</Data>
</ExtendedData>
<Polygon>
<altitudeMode>lockToGround</altitudeMode>
<outerBoundaryIs>
<LinearRing>
<altitudeMode>lockToGround</altitudeMode>
<coordinates>
25.891668319702148,5.192499160766602
27.455278396606445,5.016389846801758
28.363054275512695,4.290002822875977
29.643331527709961,4.643613815307617
30.858819961547852,3.49339485168457
30.72972297668457,2.448057174682617
31.302778244018555,2.121389389038086
29.960554122924805,0.825555801391602
29.596944808959961,-1.385833740234375
28.86833381652832,-2.394443511962891
29.024442672729492,-2.744722366333008
29.229898452758789,-3.75096321105957
29.423887252807617,-4.448055267333984
29.55027961730957,-6.295278549194336
30.771242141723633,-8.19224739074707
28.901666641235352,-8.478612899780273
28.372220993041992,-9.260833740234375
28.69972038269043,-10.65333366394043
28.363332748413086,-11.550834655761719
29.031389236450195,-12.383056640625
29.493612289428711,-12.458057403564453
29.805051803588867,-12.155246734619141
29.801389694213867,-13.454168319702148
29.589445114135742,-13.221944808959961
29.015832901000977,-13.39777946472168
28.441946029663086,-12.519723892211914
27.660001754760742,-12.296667098999023
27.199251174926758,-11.567905426025391
26.868612289428711,-11.973611831665039
26.004720687866211,-11.902500152587891
25.359724044799805,-11.641668319702148
25.332223892211914,-11.193334579467773
24.448331832885742,-11.463611602783203
23.986207962036133,-10.870460510253906
22.253889083862305,-11.209722518920898
22.312223434448242,-10.364444732666016
21.790555953979492,-9.405555725097656
21.782960891723633,-7.280841827392578
20.548715591430664,-7.283615112304688
20.62974739074707,-6.913881301879883
19.538949966430664,-6.996614456176758
19.373056411743164,-7.996110916137695
17.624166488647461,-8.098056793212891
16.941667556762695,-7.198610305786133
16.579721450805664,-5.900833129882812
13.997499465942383,-5.848611831665039
13.17888069152832,-5.856328964233398
12.435834884643555,-6.016666412353516
12.21455192565918,-5.7685546875
12.526666641235352,-5.724166870117188
12.565553665161133,-5.025554656982422
13.088888168334961,-4.662500381469727
13.091390609741211,-4.633054733276367
13.413888931274414,-4.882499694824219
13.72944450378418,-4.445833206176758
14.400835037231445,-4.277500152587891
14.418889999389648,-4.887222290039062
14.66139030456543,-4.909444808959961
15.890504837036133,-3.943008422851562
16.226945877075195,-3.328332901000977
16.195833206176758,-2.175832748413086
17.714998245239258,-0.537221908569336
18.091943740844727,2.22416877746582
18.624959945678711,3.47944450378418
18.54194450378418,4.335554122924805
19.421388626098633,5.13416862487793
20.585554122924805,4.410001754760742
22.379167556762695,4.127500534057617
22.895833969116211,4.821111679077148
23.420278549194336,4.59111213684082
24.394166946411133,5.115556716918945
24.734445571899414,4.910833358764648
25.54222297668457,5.381391525268555
25.891668319702148,5.192499160766602
</coordinates>
</LinearRing>
</outerBoundaryIs>
<innerBoundaryIs>
<LinearRing>
<altitudeMode>lockToGround</altitudeMode>
<coordinates>
12.953054428100586,-5.87611198425293
12.844167709350586,-5.850555419921875
12.737222671508789,-5.943611145019531
12.953054428100586,-5.87611198425293
</coordinates>
</LinearRing>
</innerBoundaryIs>
</Polygon>
</Placemark>
<Placemark id="xsouthsudan1976">
<styleUrl>#annastyle</styleUrl>
<name>South Sudan</name>
<visibility>0</visibility>
<description>Mainly spread by personal contact in hospitals. Many medical care personnel were infected.</description>
<ExtendedData>
<Data name="year">
<value>1976</value>
</Data>
<Data name="flag">
<value>http://upload.wikimedia.org/wikipedia/commons/7/7a/Flag_of_South_Sudan.svg</value>
</Data>
<Data name="cases">
<value>284</value>
</Data>
<Data name="deaths">
<value>151</value>
</Data>
<Data name="fatality">
<value>53%</value>
</Data>
<Data name="strain">
<value>Sudan</value>
</Data>
</ExtendedData>
<Point>
<coordinates>
31.794434,3.932760
</coordinates>
</Point>
</Placemark>
<Placemark id="southsudan1976">
<styleUrl>#annastyle</styleUrl>
<name>South Sudan</name>
<visibility>0</visibility>
<description></description>
<description>Mainly spread by personal contact in hospitals. Many medical care personnel were infected.</description>
<ExtendedData>
<Data name="year">
<value>1976</value>
</Data>
<Data name="flag">
<value>http://upload.wikimedia.org/wikipedia/commons/7/7a/Flag_of_South_Sudan.svg</value>
</Data>
<Data name="cases">
<value>284</value>
</Data>
<Data name="deaths">
<value>151</value>
</Data>
<Data name="fatality">
<value>53%</value>
</Data>
<Data name="strain">
<value>Sudan</value>
</Data>
</ExtendedData>
<MultiGeometry>
<Polygon>
<altitudeMode>lockToGround</altitudeMode>
<outerBoundaryIs>
<LinearRing>
<altitudeMode>lockToGround</altitudeMode>
<coordinates>
37.268608000000114,20.75111
37.242218,20.785831
37.263855,20.849724000000109
37.268608000000114,20.75111
</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
<Polygon>
<altitudeMode>lockToGround</altitudeMode>
<outerBoundaryIs>
<LinearRing>
<altitudeMode>lockToGround</altitudeMode>
<coordinates>
34.18132176556481,9.302878614942379
34.120552,8.577221000000122
33.252777,8.458611000000118
32.991104,7.924999
33.711388,7.660277
34.70472,6.677777000000106
35.301941000000141,5.378055
35.821663,5.32861
35.940552,4.622499
34.388191,4.609682
33.996666,4.222777000000136
33.516937,3.752222
33.016663,3.888611000000111
32.193329,3.511389000000108
31.176666,3.795278
30.858818,3.493394000000137
29.64333,4.643611000000135
28.363052,4.29
27.455276,5.016388
27.142776,5.771944
26.437496000000124,6.077777
26.404999,6.646388
25.206944000000135,7.497499
25.25333,7.850555
24.192497000000117,8.30361
24.201111,8.686943
24.152026974735634,8.688898502797061
24.556231070987529,8.899084632848046
24.556231070987529,9.272421046084204
25.033272043455952,10.267984814713957
25.92513125285344,10.433912109485581
26.485135872707673,9.479830164548735
27.045140492561909,9.625016547473908
29.368122619364666,9.749462018552627
29.430345354904023,10.143539343635236
29.865904503679541,10.516875756871395
30.861468272309295,9.666498371166814
31.214063773698996,9.645757459320361
32.458518484486191,11.076880376725629
32.188886630482294,11.927257762430211
33.184450399112052,12.113925969048289
33.184450399112052,10.765766699028832
33.931123225584365,10.081316608095877
33.910382313737912,9.438348340855828
34.18132176556481,9.302878614942379
</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
</MultiGeometry>
</Placemark>
// 1977:
Democratic Republic of Congo, Zaire strain, 1 case, 1 death, 100% fatality//
<Placemark id="xcongo1977">
<styleUrl>#annastyle</styleUrl>
<name>Democratic Republic of the Congo</name>
<visibility>0</visibility>
<description></description>
<description>Noted retroactively in the village of Tandala.</description>
<ExtendedData>
<Data name="year">
<value>1977</value>
</Data>
<Data name="flag">
<value>http://upload.wikimedia.org/wikipedia/commons/6/6f/Flag_of_the_Democratic_Republic_of_the_Congo.svg</value>
</Data>
<Data name="cases">
<value>1</value>
</Data>
<Data name="deaths">
<value>1</value>
</Data>
<Data name="fatality">
<value>100%</value>
</Data>
<Data name="strain">
<value>Zaire</value>
</Data>
</ExtendedData>
<Point>
<coordinates>
12.458496,-5.987607
</coordinates>
</Point>
</Placemark>
<Placemark id="congo1977">
<styleUrl>#annastyle</styleUrl>
<name>Democratic Republic of the Congo</name>
<visibility>0</visibility>
<description></description>
<description>Noted retroactively in the village of Tandala.</description>
<ExtendedData>
<Data name="year">
<value>1977</value>
</Data>
<Data name="flag">
<value>http://upload.wikimedia.org/wikipedia/commons/6/6f/Flag_of_the_Democratic_Republic_of_the_Congo.svg</value>
</Data>
<Data name="cases">
<value>1</value>
</Data>
<Data name="deaths">
<value>1</value>
</Data>
<Data name="fatality">
<value>100%</value>
</Data>
<Data name="strain">
<value>Zaire</value>
</Data>
</ExtendedData>
<Polygon>
<altitudeMode>lockToGround</altitudeMode>
<outerBoundaryIs>
<LinearRing>
<altitudeMode>lockToGround</altitudeMode>
<coordinates>
25.891668319702148,5.192499160766602
27.455278396606445,5.016389846801758
28.363054275512695,4.290002822875977
29.643331527709961,4.643613815307617
30.858819961547852,3.49339485168457
30.72972297668457,2.448057174682617
31.302778244018555,2.121389389038086
29.960554122924805,0.825555801391602
29.596944808959961,-1.385833740234375
28.86833381652832,-2.394443511962891
29.024442672729492,-2.744722366333008
29.229898452758789,-3.75096321105957
29.423887252807617,-4.448055267333984
29.55027961730957,-6.295278549194336
30.771242141723633,-8.19224739074707
28.901666641235352,-8.478612899780273
28.372220993041992,-9.260833740234375
28.69972038269043,-10.65333366394043
28.363332748413086,-11.550834655761719
29.031389236450195,-12.383056640625
29.493612289428711,-12.458057403564453
29.805051803588867,-12.155246734619141
29.801389694213867,-13.454168319702148
29.589445114135742,-13.221944808959961
29.015832901000977,-13.39777946472168
28.441946029663086,-12.519723892211914
27.660001754760742,-12.296667098999023
27.199251174926758,-11.567905426025391
26.868612289428711,-11.973611831665039
26.004720687866211,-11.902500152587891
25.359724044799805,-11.641668319702148
25.332223892211914,-11.193334579467773
24.448331832885742,-11.463611602783203
23.986207962036133,-10.870460510253906
22.253889083862305,-11.209722518920898
22.312223434448242,-10.364444732666016
21.790555953979492,-9.405555725097656
21.782960891723633,-7.280841827392578
20.548715591430664,-7.283615112304688
20.62974739074707,-6.913881301879883
19.538949966430664,-6.996614456176758
19.373056411743164,-7.996110916137695
17.624166488647461,-8.098056793212891
16.941667556762695,-7.198610305786133
16.579721450805664,-5.900833129882812
13.997499465942383,-5.848611831665039
13.17888069152832,-5.856328964233398
12.435834884643555,-6.016666412353516
12.21455192565918,-5.7685546875
12.526666641235352,-5.724166870117188
12.565553665161133,-5.025554656982422
13.088888168334961,-4.662500381469727
13.091390609741211,-4.633054733276367
13.413888931274414,-4.882499694824219
13.72944450378418,-4.445833206176758
14.400835037231445,-4.277500152587891
14.418889999389648,-4.887222290039062
14.66139030456543,-4.909444808959961
15.890504837036133,-3.943008422851562
16.226945877075195,-3.328332901000977
16.195833206176758,-2.175832748413086
17.714998245239258,-0.537221908569336
18.091943740844727,2.22416877746582
18.624959945678711,3.47944450378418
18.54194450378418,4.335554122924805
19.421388626098633,5.13416862487793
20.585554122924805,4.410001754760742
22.379167556762695,4.127500534057617
22.895833969116211,4.821111679077148
23.420278549194336,4.59111213684082
24.394166946411133,5.115556716918945
24.734445571899414,4.910833358764648
25.54222297668457,5.381391525268555
25.891668319702148,5.192499160766602
</coordinates>
</LinearRing>
</outerBoundaryIs>
<innerBoundaryIs>
<LinearRing>
<altitudeMode>lockToGround</altitudeMode>
<coordinates>
12.953054428100586,-5.87611198425293
12.844167709350586,-5.850555419921875
12.737222671508789,-5.943611145019531
12.953054428100586,-5.87611198425293
</coordinates>
</LinearRing>
</innerBoundaryIs>
</Polygon>
</Placemark>
// 1979:
Sudan, Sudan strain, 34 cases, 22 deaths, 65% fatality//
<Placemark id="xsouthsudan1979">
<styleUrl>#annastyle</styleUrl>
<name>South Sudan</name>
<visibility>0</visibility>
<description></description>
<description>Recurrent outbreak at the same site as the 1976 Sudan epidemic.</description>
<ExtendedData>
<Data name="year">
<value>1979</value>
</Data>
<Data name="flag">
<value>http://upload.wikimedia.org/wikipedia/commons/7/7a/Flag_of_South_Sudan.svg</value>
</Data>
<Data name="cases">
<value>34</value>
</Data>
<Data name="deaths">
<value>22</value>
</Data>
<Data name="fatality">
<value>65%</value>
</Data>
<Data name="strain">
<value>Sudan</value>
</Data>
</ExtendedData>
<Point>
<coordinates>
31.794434,3.932760
</coordinates>
</Point>
</Placemark>
<Placemark id="southsudan1979">
<styleUrl>#annastyle</styleUrl>
<name>South Sudan</name>
<visibility>0</visibility>
<description></description>
<description>Recurrent outbreak at the same site as the 1976 Sudan epidemic.</description>
<ExtendedData>
<Data name="year">
<value>1979</value>
</Data>
<Data name="flag">
<value>http://upload.wikimedia.org/wikipedia/commons/7/7a/Flag_of_South_Sudan.svg</value>
</Data>
<Data name="cases">
<value>34</value>
</Data>
<Data name="deaths">
<value>22</value>
</Data>
<Data name="fatality">
<value>65%</value>
</Data>
<Data name="strain">
<value>Sudan</value>
</Data>
</ExtendedData>
<MultiGeometry>
<Polygon>
<altitudeMode>lockToGround</altitudeMode>
<outerBoundaryIs>
<LinearRing>
<altitudeMode>lockToGround</altitudeMode>
<coordinates>
37.268608000000114,20.75111
37.242218,20.785831
37.263855,20.849724000000109
37.268608000000114,20.75111
</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
<Polygon>
<altitudeMode>lockToGround</altitudeMode>
<outerBoundaryIs>
<LinearRing>
<altitudeMode>lockToGround</altitudeMode>
<coordinates>
34.18132176556481,9.302878614942379
34.120552,8.577221000000122
33.252777,8.458611000000118
32.991104,7.924999
33.711388,7.660277
34.70472,6.677777000000106
35.301941000000141,5.378055
35.821663,5.32861
35.940552,4.622499
34.388191,4.609682
33.996666,4.222777000000136
33.516937,3.752222
33.016663,3.888611000000111
32.193329,3.511389000000108
31.176666,3.795278
30.858818,3.493394000000137
29.64333,4.643611000000135
28.363052,4.29
27.455276,5.016388
27.142776,5.771944
26.437496000000124,6.077777
26.404999,6.646388
25.206944000000135,7.497499
25.25333,7.850555
24.192497000000117,8.30361
24.201111,8.686943
24.152026974735634,8.688898502797061
24.556231070987529,8.899084632848046
24.556231070987529,9.272421046084204
25.033272043455952,10.267984814713957
25.92513125285344,10.433912109485581
26.485135872707673,9.479830164548735
27.045140492561909,9.625016547473908
29.368122619364666,9.749462018552627
29.430345354904023,10.143539343635236
29.865904503679541,10.516875756871395
30.861468272309295,9.666498371166814
31.214063773698996,9.645757459320361
32.458518484486191,11.076880376725629
32.188886630482294,11.927257762430211
33.184450399112052,12.113925969048289
33.184450399112052,10.765766699028832
33.931123225584365,10.081316608095877
33.910382313737912,9.438348340855828
34.18132176556481,9.302878614942379
</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
</MultiGeometry>
</Placemark>
// 1994:
Gabon, Zaire strain, 52 cases, 31 deaths, 60% fatality
Cote d’Ivoire, Tai Forest strain, 1 case, 0 deaths, 0% fatality//
<Placemark id="xgabon1994">
<styleUrl>#annastyle</styleUrl>
<name>Gabon</name>
<visibility>0</visibility>
<description></description>
<description>Occurred in Mékouka and other gold-mining camps deep in the rain forest. Thought to be yellow fever until 1995.</description>
<ExtendedData>
<Data name="year">
<value>1994</value>
</Data>
<Data name="flag">
<value>http://upload.wikimedia.org/wikipedia/commons/0/04/Flag_of_Gabon.svg</value>
</Data>
<Data name="cases">
<value>52</value>
</Data>
<Data name="deaths">
<value>31</value>
</Data>
<Data name="fatality">
<value>60%</value>
</Data>
<Data name="strain">
<value>Zaire</value>
</Data>
</ExtendedData>
<Point>
<coordinates>
11.513672,2.287295
</coordinates>
</Point>
</Placemark>
// Starting "spread path" for Zaire strain //
<Placemark id="zaire_path_1">
<name>Zaire strain</name>
<!--<StyleUrl>#strain_path</StyleUrl>-->
<visibility>0</visibility>
<LineString>
<altitudeMode>lockToGround</altitudeMode>
<coordinates>
25.620117,-6.731440,0 // demcongo //
12.128906,-1.473379,0 // gabon //
</coordinates>
</LineString>
<Style>
<LineStyle>
<color>#ff0000ff</color>
<width>5</width>
</LineStyle>
</Style>
</Placemark>
<Placemark id="gabon1994">
<styleUrl>#annastyle</styleUrl>
<name>Gabon</name>
<visibility>0</visibility>
<description></description>
<description>Occurred in Mékouka and other gold-mining camps deep in the rain forest. Thought to be yellow fever until 1995.</description>
<ExtendedData>
<Data name="year">
<value>1994</value>
</Data>
<Data name="flag">
<value>http://upload.wikimedia.org/wikipedia/commons/0/04/Flag_of_Gabon.svg</value>
</Data>
<Data name="cases">
<value>52</value>
</Data>
<Data name="deaths">
<value>31</value>
</Data>
<Data name="fatality">
<value>60%</value>
</Data>
<Data name="strain">
<value>Zaire</value>
</Data>
</ExtendedData>
<MultiGeometry>
<Polygon>
<altitudeMode>lockToGround</altitudeMode>
<outerBoundaryIs>
<LinearRing>
<altitudeMode>lockToGround</altitudeMode>
<coordinates>
9.007776260375977,-0.767778396606445
8.946664810180664,-0.658332824707031
9.00666618347168,-0.598888397216797
9.007776260375977,-0.767778396606445
</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
<Polygon>
<altitudeMode>lockToGround</altitudeMode>
<outerBoundaryIs>
<LinearRing>
<altitudeMode>lockToGround</altitudeMode>
<coordinates>
12.523611068725586,2.283334732055664
13.293889999389648,2.163610458374023
13.186784744262695,1.222475051879883
14.18889045715332,1.391389846801758
14.487222671508789,0.913610458374023
13.848333358764648,-0.198610305786133
14.518610000610352,-0.609167098999023
14.429723739624023,-1.891666412353516
14.110834121704102,-2.49305534362793
13.76222038269043,-2.088888168334961
13.482778549194336,-2.4375
13.001508712768555,-2.367671966552734
12.649999618530273,-1.822500228881836
12.478055953979492,-2.327220916748047
11.574167251586914,-2.333332061767578
11.925832748413086,-3.636943817138672
11.496946334838867,-3.50694465637207
11.140661239624023,-3.925275802612305
9.700834274291992,-2.445554733276367
10.130556106567383,-2.520000457763672
9.615278244018555,-2.376667022705078
8.983057022094727,-1.234167098999023
9.513887405395508,-1.59666633605957
8.710000991821289,-0.641111373901367
9.013887405395508,-0.81916618347168
9.298334121704102,-0.371665954589844
9.347501754760742,0.363058090209961
9.921110153198242,0.185277938842773
9.303609848022461,0.52833366394043
9.600000381469727,0.481111526489258
9.564722061157227,0.983057022094727
9.803976058959961,1.002607345581055
11.353887557983398,1.001943588256836
11.339765548706055,2.168611526489258
12.523611068725586,2.283334732055664
</coordinates>
</LinearRing>
</outerBoundaryIs>
<innerBoundaryIs>
<LinearRing>
<altitudeMode>lockToGround</altitudeMode>
<coordinates>
9.554445266723633,0.274446487426758
9.544443130493164,0.285001754760742
9.538057327270508,0.270833969116211
9.554445266723633,0.274446487426758
</coordinates>
</LinearRing>
</innerBoundaryIs>
</Polygon>
</MultiGeometry>
</Placemark>
<Placemark id="xcotedivoire1994">
<styleUrl>#annastyle</styleUrl>
<name>Cote d'Ivoire</name>
<visibility>0</visibility>
<description>descriptionwoop</description>
<description> After conducting necropsies on infected chimpanzees, a scientist contracted the virus. She recovered discharged from a Swiss hospital two weeks later.</description>
<ExtendedData>
<Data name="year">
<value>1994</value>
</Data>
<Data name="flag">
<value>http://upload.wikimedia.org/wikipedia/commons/f/fe/Flag_of_C%C3%B4te_d%27Ivoire.svg</value>
</Data>
<Data name="cases">
<value>1</value>
</Data>
<Data name="deaths">
<value>0</value>
</Data>
<Data name="fatality">
<value>0%</value>
</Data>
<Data name="strain">
<value>Tai Forest</value>
</Data>
</ExtendedData>
<Point>
<coordinates>
-7.301788,4.506607
</coordinates>
</Point>
</Placemark>
<Placemark id="cotedivoire1994">
<styleUrl>#annastyle</styleUrl>
<name>Cote d'Ivoire</name>
<visibility>0</visibility>
<description>descriptionwoop</description>
<description>After conducting necropsies on infected chimpanzees, a scientist contracted the virus. She recovered discharged from a Swiss hospital two weeks later.</description>
<ExtendedData>
<Data name="year">
<value>1994</value>
</Data>
<Data name="flag">
<value>http://upload.wikimedia.org/wikipedia/commons/f/fe/Flag_of_C%C3%B4te_d%27Ivoire.svg</value>
</Data>
<Data name="cases">
<value>1</value>
</Data>
<Data name="deaths">
<value>0</value>
</Data>
<Data name="fatality">
<value>0%</value>
</Data>
<Data name="strain">
<value>Tai Forest</value>
</Data>
</ExtendedData>
<MultiGeometry>
<Polygon>
<altitudeMode>lockToGround</altitudeMode>
<outerBoundaryIs>
<LinearRing>
<altitudeMode>lockToGround</altitudeMode>
<coordinates>
-3.102272,5.109545000000125
-3.103041,5.085022
-3.168334,5.117222
-3.102272,5.10954500000012
</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
<Polygon>
<altitudeMode>lockToGround</altitudeMode>
<outerBoundaryIs>
<LinearRing>
<altitudeMode>lockToGround</altitudeMode>
<coordinates>
-4.787278,5.1683120000001
-4.146389,5.277222
-4.004445,5.231667