-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrss2.aspx
More file actions
3515 lines (3515 loc) · 195 KB
/
rss2.aspx
File metadata and controls
3515 lines (3515 loc) · 195 KB
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"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:asgard="http://asgard.jrc.it" xmlns:gdacs="http://www.gdacs.org" xmlns:glide="http://glidenumber.net" xmlns:georss="http://www.georss.org/georss" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>GDACS RSS information</title>
<link>http://www.gdacs.org</link>
<description>Near real-time alerts about natural disaster with a potential humanitarian impact</description>
<managingEditor>tom.de-groeve@jrc.ec.europa.eu (Tom De Groeve)</managingEditor>
<!--Records number 100-->
<!--Start 4/9/2016 1:51:05 PM-->
<!--=Start 4/9/2016 1:50:10 PMEND - 4/9/2016 1:51:05 PM-->
<webMaster>tom.de-groeve@jrc.ec.europa.eu (Tom De Groeve)</webMaster>
<pubDate>Sat, 09 Apr 2016 11:51:05 GMT</pubDate>
<atom:link href="http://www.gdacs.org:80/rss.aspx?profile=ARCHIVE&from=2012-04-09&to=2016-04-09&alertlevel=orange&country=&eventtype=" rel="self" type="application/rss+xml" />
<item>
<title>Orange flood alert in Pakistan</title>
<description>On 12/03/2016, a flood started in Pakistan, lasting until 25/03/2016 (last update). The flood caused 121 killed and 2400 displaced .</description>
<enclosure type="image/png" length="1" url="http://dma.gdacs.org/saved/gdacs/fl/dfo2016_4339.png" />
<link>http://www.gdacs.org/report.aspx?eventtype=FL&eventid=4339</link>
<pubDate>Fri, 25 Mar 2016 23:59:59 GMT</pubDate>
<gdacs:fromdate>Sat, 12 Mar 2016 00:00:00 GMT</gdacs:fromdate>
<gdacs:todate>Fri, 25 Mar 2016 23:59:59 GMT</gdacs:todate>
<dc:subject>FL2</dc:subject>
<guid isPermaLink="false">FL4339</guid>
<geo:Point>
<geo:lat>33.054</geo:lat>
<geo:long>71.779</geo:long>
</geo:Point>
<georss:point>33.054 71.779</georss:point>
<gdacs:cap>http://www.gdacs.org/cap.aspx?eventtype=FL&eventid=4339</gdacs:cap>
<gdacs:version>1</gdacs:version>
<gdacs:eventtype>FL</gdacs:eventtype>
<gdacs:alertlevel>Orange</gdacs:alertlevel>
<gdacs:eventname />
<gdacs:eventid>4339</gdacs:eventid>
<gdacs:episodeid>1</gdacs:episodeid>
<gdacs:calculationtype />
<gdacs:severity unit="" value="6.37">Magnitude 6.37</gdacs:severity>
<gdacs:population unit="Population affected" value="121">121 killed and 2400 displaced </gdacs:population>
<gdacs:vulnerability value="0" />
<gdacs:iso3 />
<gdacs:country>Pakistan</gdacs:country>
<gdacs:glide>FL-2016-000021-PAK</gdacs:glide>
<gdacs:mapimage />
<gdacs:maplink />
<gdacs:gtsimage />
<gdacs:gtslink />
<gdacs:resources />
</item>
<item>
<title>Orange earthquake alert (Magnitude 5.6M, Depth:10km) in Luzon, Philippines 12/03/2016 04:00 UTC, 1406316 people within 100km.</title>
<description>On 3/12/2016 4:00:27 AM, an earthquake occurred in Luzon, Philippines potentially affecting 1406316 people within 100km. The earthquake had Magnitude 5.6M, Depth:10km.</description>
<enclosure type="image/png" length="1" url="http://dma.gdacs.org/saved/gdacs/eq/eq1122056_1.png" />
<link>http://www.gdacs.org/report.aspx?eventtype=EQ&eventid=1082314</link>
<pubDate>Sat, 12 Mar 2016 04:00:27 GMT</pubDate>
<gdacs:fromdate>Sat, 12 Mar 2016 04:00:27 GMT</gdacs:fromdate>
<gdacs:todate>Sat, 12 Mar 2016 04:00:27 GMT</gdacs:todate>
<dc:subject>EQ2</dc:subject>
<guid isPermaLink="false">EQ1082314</guid>
<geo:Point>
<geo:lat>18.1737</geo:lat>
<geo:long>120.277</geo:long>
</geo:Point>
<georss:point>18.1737 120.277</georss:point>
<gdacs:cap>http://www.gdacs.org/cap.aspx?eventtype=EQ&eventid=1082314</gdacs:cap>
<gdacs:version>1</gdacs:version>
<gdacs:eventtype>EQ</gdacs:eventtype>
<gdacs:alertlevel>Orange</gdacs:alertlevel>
<gdacs:eventname />
<gdacs:eventid>1082314</gdacs:eventid>
<gdacs:episodeid>1122056</gdacs:episodeid>
<gdacs:calculationtype>earthquakeonly</gdacs:calculationtype>
<gdacs:severity unit="M" value="5.6">Magnitude 5.6M, Depth:10km</gdacs:severity>
<gdacs:population unit="Pop100" value="1406316">1406316 people within 100km</gdacs:population>
<gdacs:vulnerability value="0" />
<gdacs:iso3 />
<gdacs:country>Luzon, Philippines</gdacs:country>
<gdacs:glide />
<gdacs:mapimage />
<gdacs:maplink />
<gdacs:gtsimage />
<gdacs:gtslink />
<gdacs:resources />
</item>
<item>
<title>Orange earthquake alert (Magnitude 6.4M, Depth:23km) in China 05/02/2016 19:57 UTC, 7405819 people within 100km.</title>
<description>On 2/5/2016 7:57:27 PM, an earthquake occurred in China potentially affecting 7405819 people within 100km. The earthquake had Magnitude 6.4M, Depth:23km.</description>
<enclosure type="image/png" length="1" url="http://dma.gdacs.org/saved/gdacs/eq/eq1118615_1.png" />
<link>http://www.gdacs.org/report.aspx?eventtype=EQ&eventid=1080050</link>
<pubDate>Fri, 05 Feb 2016 19:57:27 GMT</pubDate>
<gdacs:fromdate>Fri, 05 Feb 2016 19:57:27 GMT</gdacs:fromdate>
<gdacs:todate>Fri, 05 Feb 2016 19:57:27 GMT</gdacs:todate>
<dc:subject>EQ2</dc:subject>
<guid isPermaLink="false">EQ1080050</guid>
<geo:Point>
<geo:lat>22.8711</geo:lat>
<geo:long>120.6678</geo:long>
</geo:Point>
<georss:point>22.8711 120.6678</georss:point>
<gdacs:cap>http://www.gdacs.org/cap.aspx?eventtype=EQ&eventid=1080050</gdacs:cap>
<gdacs:version>1</gdacs:version>
<gdacs:eventtype>EQ</gdacs:eventtype>
<gdacs:alertlevel>Orange</gdacs:alertlevel>
<gdacs:eventname />
<gdacs:eventid>1080050</gdacs:eventid>
<gdacs:episodeid>1118615</gdacs:episodeid>
<gdacs:calculationtype>earthquakeonly</gdacs:calculationtype>
<gdacs:severity unit="M" value="6.4">Magnitude 6.4M, Depth:23km</gdacs:severity>
<gdacs:population unit="Pop100" value="7405819">7405819 people within 100km</gdacs:population>
<gdacs:vulnerability value="0" />
<gdacs:iso3 />
<gdacs:country>China</gdacs:country>
<gdacs:glide />
<gdacs:mapimage>http://www.gdacs.org/datareport/dailymap/EQ/1080050/ECDM_20160208_Taiwan_Earthquake.jpg</gdacs:mapimage>
<gdacs:maplink>http://www.gdacs.org/datareport/dailymap/EQ/1080050/ECDM_20160208_Taiwan_Earthquake.pdf</gdacs:maplink>
<gdacs:gtsimage>http://www.gdacs.org//images/satellite-icon.png</gdacs:gtsimage>
<gdacs:gtslink>http://www.gdacs.org/gts_list.aspx?eventid=1080050&eventtype=EQ</gdacs:gtslink>
<gdacs:resources />
</item>
<item>
<title>Orange flood alert in Paraguay</title>
<description>On 01/12/2015, a flood started in Paraguay, lasting until 29/01/2016 (last update). The flood caused 12 killed and 170000 displaced .</description>
<enclosure type="image/png" length="1" url="http://dma.gdacs.org/saved/gdacs/fl/dfo2015_4315.png" />
<link>http://www.gdacs.org/report.aspx?eventtype=FL&eventid=4315</link>
<pubDate>Fri, 29 Jan 2016 23:59:59 GMT</pubDate>
<gdacs:fromdate>Tue, 01 Dec 2015 00:00:00 GMT</gdacs:fromdate>
<gdacs:todate>Fri, 29 Jan 2016 23:59:59 GMT</gdacs:todate>
<dc:subject>FL2</dc:subject>
<guid isPermaLink="false">FL4315</guid>
<geo:Point>
<geo:lat>-26.037</geo:lat>
<geo:long>-55.848</geo:long>
</geo:Point>
<georss:point>-26.037 -55.848</georss:point>
<gdacs:cap>http://www.gdacs.org/cap.aspx?eventtype=FL&eventid=4315</gdacs:cap>
<gdacs:version>2</gdacs:version>
<gdacs:eventtype>FL</gdacs:eventtype>
<gdacs:alertlevel>Orange</gdacs:alertlevel>
<gdacs:eventname />
<gdacs:eventid>4315</gdacs:eventid>
<gdacs:episodeid>2</gdacs:episodeid>
<gdacs:calculationtype />
<gdacs:severity unit="" value="7.84">Magnitude 7.84</gdacs:severity>
<gdacs:population unit="Population affected" value="12">12 killed and 170000 displaced </gdacs:population>
<gdacs:vulnerability value="0" />
<gdacs:iso3 />
<gdacs:country>Paraguay</gdacs:country>
<gdacs:glide>FL-2015-000171-PRY</gdacs:glide>
<gdacs:mapimage />
<gdacs:maplink />
<gdacs:gtsimage />
<gdacs:gtslink />
<gdacs:resources />
</item>
<item>
<title>Orange flood alert in Kenya</title>
<description>On 01/12/2015, a flood started in Kenya, lasting until 06/01/2016 (last update). The flood caused 112 killed and 100000 displaced .</description>
<enclosure type="image/png" length="1" url="http://dma.gdacs.org/saved/gdacs/fl/dfo2015_4317.png" />
<link>http://www.gdacs.org/report.aspx?eventtype=FL&eventid=4317</link>
<pubDate>Wed, 06 Jan 2016 23:59:59 GMT</pubDate>
<gdacs:fromdate>Tue, 01 Dec 2015 00:00:00 GMT</gdacs:fromdate>
<gdacs:todate>Wed, 06 Jan 2016 23:59:59 GMT</gdacs:todate>
<dc:subject>FL2</dc:subject>
<guid isPermaLink="false">FL4317</guid>
<geo:Point>
<geo:lat>-2.036</geo:lat>
<geo:long>39.513</geo:long>
</geo:Point>
<georss:point>-2.036 39.513</georss:point>
<gdacs:cap>http://www.gdacs.org/cap.aspx?eventtype=FL&eventid=4317</gdacs:cap>
<gdacs:version>2</gdacs:version>
<gdacs:eventtype>FL</gdacs:eventtype>
<gdacs:alertlevel>Orange</gdacs:alertlevel>
<gdacs:eventname />
<gdacs:eventid>4317</gdacs:eventid>
<gdacs:episodeid>2</gdacs:episodeid>
<gdacs:calculationtype />
<gdacs:severity unit="" value="6.76">Magnitude 6.76</gdacs:severity>
<gdacs:population unit="Population affected" value="112">112 killed and 100000 displaced </gdacs:population>
<gdacs:vulnerability value="0" />
<gdacs:iso3 />
<gdacs:country>Kenya</gdacs:country>
<gdacs:glide>0</gdacs:glide>
<gdacs:mapimage />
<gdacs:maplink />
<gdacs:gtsimage />
<gdacs:gtslink />
<gdacs:resources />
</item>
<item>
<title>Red earthquake alert (Magnitude 6.7M, Depth:55km) in India 03/01/2016 23:05 UTC, 4176950 people within 100km.</title>
<description>On 1/3/2016 11:05:22 PM, an earthquake occurred in India potentially affecting 4176950 people within 100km. The earthquake had Magnitude 6.7M, Depth:55km.</description>
<enclosure type="image/png" length="1" url="http://dma.gdacs.org/saved/gdacs/eq/eq1114155_1.png" />
<link>http://www.gdacs.org/report.aspx?eventtype=EQ&eventid=1077755</link>
<pubDate>Sun, 03 Jan 2016 23:05:22 GMT</pubDate>
<gdacs:fromdate>Sun, 03 Jan 2016 23:05:22 GMT</gdacs:fromdate>
<gdacs:todate>Sun, 03 Jan 2016 23:05:22 GMT</gdacs:todate>
<dc:subject>EQ3</dc:subject>
<guid isPermaLink="false">EQ1077755</guid>
<geo:Point>
<geo:lat>24.8339</geo:lat>
<geo:long>93.6556</geo:long>
</geo:Point>
<georss:point>24.8339 93.6556</georss:point>
<gdacs:cap>http://www.gdacs.org/cap.aspx?eventtype=EQ&eventid=1077755</gdacs:cap>
<gdacs:version>1</gdacs:version>
<gdacs:eventtype>EQ</gdacs:eventtype>
<gdacs:alertlevel>Red</gdacs:alertlevel>
<gdacs:eventname />
<gdacs:eventid>1077755</gdacs:eventid>
<gdacs:episodeid>1114155</gdacs:episodeid>
<gdacs:calculationtype>earthquakeonly</gdacs:calculationtype>
<gdacs:severity unit="M" value="6.7">Magnitude 6.7M, Depth:55km</gdacs:severity>
<gdacs:population unit="Pop100" value="4176950">4176950 people within 100km</gdacs:population>
<gdacs:vulnerability value="0" />
<gdacs:iso3 />
<gdacs:country>India</gdacs:country>
<gdacs:glide />
<gdacs:mapimage>http://www.gdacs.org/datareport/dailymap/EQ/1077755/ECDM_20160104_India_Earthquake.jpg</gdacs:mapimage>
<gdacs:maplink>http://www.gdacs.org/datareport/dailymap/EQ/1077755/ECDM_20160104_India_Earthquake.pdf</gdacs:maplink>
<gdacs:gtsimage>http://www.gdacs.org//images/satellite-icon.png</gdacs:gtsimage>
<gdacs:gtslink>http://www.gdacs.org/gts_list.aspx?eventid=1077755&eventtype=EQ</gdacs:gtslink>
<gdacs:resources />
</item>
<item>
<title>Orange earthquake alert (Magnitude 6.3M, Depth:203.4km) in Afghanistan 25/12/2015 19:14 UTC, 793404 people within 100km.</title>
<description>On 12/25/2015 7:14:47 PM, an earthquake occurred in Afghanistan potentially affecting 793404 people within 100km. The earthquake had Magnitude 6.3M, Depth:203.4km.</description>
<enclosure type="image/png" length="1" url="http://dma.gdacs.org/saved/gdacs/eq/eq1113115_1.png" />
<link>http://www.gdacs.org/report.aspx?eventtype=EQ&eventid=1076983</link>
<pubDate>Fri, 25 Dec 2015 19:14:47 GMT</pubDate>
<gdacs:fromdate>Fri, 25 Dec 2015 19:14:47 GMT</gdacs:fromdate>
<gdacs:todate>Fri, 25 Dec 2015 19:14:47 GMT</gdacs:todate>
<dc:subject>EQ2</dc:subject>
<guid isPermaLink="false">EQ1076983</guid>
<geo:Point>
<geo:lat>36.5002</geo:lat>
<geo:long>71.1321</geo:long>
</geo:Point>
<georss:point>36.5002 71.1321</georss:point>
<gdacs:cap>http://www.gdacs.org/cap.aspx?eventtype=EQ&eventid=1076983</gdacs:cap>
<gdacs:version>1</gdacs:version>
<gdacs:eventtype>EQ</gdacs:eventtype>
<gdacs:alertlevel>Orange</gdacs:alertlevel>
<gdacs:eventname />
<gdacs:eventid>1076983</gdacs:eventid>
<gdacs:episodeid>1113115</gdacs:episodeid>
<gdacs:calculationtype>earthquakeonly</gdacs:calculationtype>
<gdacs:severity unit="M" value="6.3">Magnitude 6.3M, Depth:203.4km</gdacs:severity>
<gdacs:population unit="Pop100" value="793404">793404 people within 100km</gdacs:population>
<gdacs:vulnerability value="0" />
<gdacs:iso3 />
<gdacs:country>Afghanistan</gdacs:country>
<gdacs:glide />
<gdacs:mapimage />
<gdacs:maplink />
<gdacs:gtsimage />
<gdacs:gtslink />
<gdacs:resources />
</item>
<item>
<title>Orange flood alert in India</title>
<description>On 10/11/2015, a flood started in India, lasting until 04/12/2015 (last update). The flood caused 180 killed and 400000 displaced .</description>
<enclosure type="image/png" length="1" url="http://dma.gdacs.org/saved/gdacs/fl/dfo2015_4309.png" />
<link>http://www.gdacs.org/report.aspx?eventtype=FL&eventid=4309</link>
<pubDate>Fri, 04 Dec 2015 23:59:59 GMT</pubDate>
<gdacs:fromdate>Tue, 10 Nov 2015 00:00:00 GMT</gdacs:fromdate>
<gdacs:todate>Fri, 04 Dec 2015 23:59:59 GMT</gdacs:todate>
<dc:subject>FL2</dc:subject>
<guid isPermaLink="false">FL4309</guid>
<geo:Point>
<geo:lat>11.828</geo:lat>
<geo:long>78.855</geo:long>
</geo:Point>
<georss:point>11.828 78.855</georss:point>
<gdacs:cap>http://www.gdacs.org/cap.aspx?eventtype=FL&eventid=4309</gdacs:cap>
<gdacs:version>2</gdacs:version>
<gdacs:eventtype>FL</gdacs:eventtype>
<gdacs:alertlevel>Orange</gdacs:alertlevel>
<gdacs:eventname />
<gdacs:eventid>4309</gdacs:eventid>
<gdacs:episodeid>2</gdacs:episodeid>
<gdacs:calculationtype />
<gdacs:severity unit="" value="6.67">Magnitude 6.67</gdacs:severity>
<gdacs:population unit="Population affected" value="180">180 killed and 400000 displaced </gdacs:population>
<gdacs:vulnerability value="0" />
<gdacs:iso3 />
<gdacs:country>India</gdacs:country>
<gdacs:glide>TC-2015-000163-IND</gdacs:glide>
<gdacs:mapimage />
<gdacs:maplink />
<gdacs:gtsimage />
<gdacs:gtslink />
<gdacs:resources />
</item>
<item>
<title>Orange earthquake alert (Magnitude 5.5M, Depth:22.42km) in Myanmar 27/11/2015 08:33 UTC, 3354492 people within 100km.</title>
<description>On 11/27/2015 8:33:59 AM, an earthquake occurred in Myanmar potentially affecting 3354492 people within 100km. The earthquake had Magnitude 5.5M, Depth:22.42km.</description>
<enclosure type="image/png" length="1" url="http://dma.gdacs.org/saved/gdacs/eq/eq1108674_1.png" />
<link>http://www.gdacs.org/report.aspx?eventtype=EQ&eventid=1073710</link>
<pubDate>Fri, 27 Nov 2015 08:33:59 GMT</pubDate>
<gdacs:fromdate>Fri, 27 Nov 2015 08:33:59 GMT</gdacs:fromdate>
<gdacs:todate>Fri, 27 Nov 2015 08:33:59 GMT</gdacs:todate>
<dc:subject>EQ2</dc:subject>
<guid isPermaLink="false">EQ1073710</guid>
<geo:Point>
<geo:lat>22.4973</geo:lat>
<geo:long>94.8237</geo:long>
</geo:Point>
<georss:point>22.4973 94.8237</georss:point>
<gdacs:cap>http://www.gdacs.org/cap.aspx?eventtype=EQ&eventid=1073710</gdacs:cap>
<gdacs:version>1</gdacs:version>
<gdacs:eventtype>EQ</gdacs:eventtype>
<gdacs:alertlevel>Orange</gdacs:alertlevel>
<gdacs:eventname />
<gdacs:eventid>1073710</gdacs:eventid>
<gdacs:episodeid>1108674</gdacs:episodeid>
<gdacs:calculationtype>earthquakeonly</gdacs:calculationtype>
<gdacs:severity unit="M" value="5.5">Magnitude 5.5M, Depth:22.42km</gdacs:severity>
<gdacs:population unit="Pop100" value="3354492">3354492 people within 100km</gdacs:population>
<gdacs:vulnerability value="0" />
<gdacs:iso3 />
<gdacs:country>Myanmar</gdacs:country>
<gdacs:glide />
<gdacs:mapimage />
<gdacs:maplink />
<gdacs:gtsimage />
<gdacs:gtslink />
<gdacs:resources />
</item>
<item>
<title>Orange earthquake alert (Magnitude 5.9M, Depth:92.41km) in Afghanistan 22/11/2015 18:16 UTC, 590211 people within 100km.</title>
<description>On 11/22/2015 6:16:04 PM, an earthquake occurred in Afghanistan potentially affecting 590211 people within 100km. The earthquake had Magnitude 5.9M, Depth:92.41km.</description>
<enclosure type="image/png" length="1" url="http://dma.gdacs.org/saved/gdacs/eq/eq1107978_1.png" />
<link>http://www.gdacs.org/report.aspx?eventtype=EQ&eventid=1073227</link>
<pubDate>Sun, 22 Nov 2015 18:16:04 GMT</pubDate>
<gdacs:fromdate>Sun, 22 Nov 2015 18:16:04 GMT</gdacs:fromdate>
<gdacs:todate>Sun, 22 Nov 2015 18:16:04 GMT</gdacs:todate>
<dc:subject>EQ2</dc:subject>
<guid isPermaLink="false">EQ1073227</guid>
<geo:Point>
<geo:lat>36.4848</geo:lat>
<geo:long>71.4613</geo:long>
</geo:Point>
<georss:point>36.4848 71.4613</georss:point>
<gdacs:cap>http://www.gdacs.org/cap.aspx?eventtype=EQ&eventid=1073227</gdacs:cap>
<gdacs:version>1</gdacs:version>
<gdacs:eventtype>EQ</gdacs:eventtype>
<gdacs:alertlevel>Orange</gdacs:alertlevel>
<gdacs:eventname />
<gdacs:eventid>1073227</gdacs:eventid>
<gdacs:episodeid>1107978</gdacs:episodeid>
<gdacs:calculationtype>earthquakeonly</gdacs:calculationtype>
<gdacs:severity unit="M" value="5.9">Magnitude 5.9M, Depth:92.41km</gdacs:severity>
<gdacs:population unit="Pop100" value="590211">590211 people within 100km</gdacs:population>
<gdacs:vulnerability value="0" />
<gdacs:iso3 />
<gdacs:country>Afghanistan</gdacs:country>
<gdacs:glide />
<gdacs:mapimage />
<gdacs:maplink />
<gdacs:gtsimage />
<gdacs:gtslink />
<gdacs:resources />
</item>
<item>
<title>Orange earthquake alert (Magnitude 5.7M, Depth:35.26km) in Philippines 07/11/2015 19:40 UTC, 4214518 people within 100km.</title>
<description>On 11/7/2015 7:40:12 PM, an earthquake occurred in Philippines potentially affecting 4214518 people within 100km. The earthquake had Magnitude 5.7M, Depth:35.26km.</description>
<enclosure type="image/png" length="1" url="http://dma.gdacs.org/saved/gdacs/eq/eq1105224_1.png" />
<link>http://www.gdacs.org/report.aspx?eventtype=EQ&eventid=1071439</link>
<pubDate>Sat, 07 Nov 2015 19:40:12 GMT</pubDate>
<gdacs:fromdate>Sat, 07 Nov 2015 19:40:12 GMT</gdacs:fromdate>
<gdacs:todate>Sat, 07 Nov 2015 19:40:12 GMT</gdacs:todate>
<dc:subject>EQ2</dc:subject>
<guid isPermaLink="false">EQ1071439</guid>
<geo:Point>
<geo:lat>16.456</geo:lat>
<geo:long>119.9274</geo:long>
</geo:Point>
<georss:point>16.456 119.9274</georss:point>
<gdacs:cap>http://www.gdacs.org/cap.aspx?eventtype=EQ&eventid=1071439</gdacs:cap>
<gdacs:version>1</gdacs:version>
<gdacs:eventtype>EQ</gdacs:eventtype>
<gdacs:alertlevel>Orange</gdacs:alertlevel>
<gdacs:eventname />
<gdacs:eventid>1071439</gdacs:eventid>
<gdacs:episodeid>1105224</gdacs:episodeid>
<gdacs:calculationtype>earthquakeonly</gdacs:calculationtype>
<gdacs:severity unit="M" value="5.7">Magnitude 5.7M, Depth:35.26km</gdacs:severity>
<gdacs:population unit="Pop100" value="4214518">4214518 people within 100km</gdacs:population>
<gdacs:vulnerability value="0" />
<gdacs:iso3 />
<gdacs:country>Philippines</gdacs:country>
<gdacs:glide />
<gdacs:mapimage />
<gdacs:maplink />
<gdacs:gtsimage />
<gdacs:gtslink />
<gdacs:resources />
</item>
<item>
<title>Red earthquake alert (Magnitude 7.5M, Depth:212.52km) in Afghanistan 26/10/2015 09:09 UTC, 931807 people within 100km.</title>
<description>On 10/26/2015 9:09:32 AM, an earthquake occurred in Afghanistan potentially affecting 931807 people within 100km. The earthquake had Magnitude 7.5M, Depth:212.52km.</description>
<enclosure type="image/png" length="1" url="http://dma.gdacs.org/saved/gdacs/eq/eq1103558_1.png" />
<link>http://www.gdacs.org/report.aspx?eventtype=EQ&eventid=1070251</link>
<pubDate>Mon, 26 Oct 2015 09:09:32 GMT</pubDate>
<gdacs:fromdate>Mon, 26 Oct 2015 09:09:32 GMT</gdacs:fromdate>
<gdacs:todate>Mon, 26 Oct 2015 09:09:32 GMT</gdacs:todate>
<dc:subject>EQ3</dc:subject>
<guid isPermaLink="false">EQ1070251</guid>
<geo:Point>
<geo:lat>36.4406</geo:lat>
<geo:long>70.7167</geo:long>
</geo:Point>
<georss:point>36.4406 70.7167</georss:point>
<gdacs:cap>http://www.gdacs.org/cap.aspx?eventtype=EQ&eventid=1070251</gdacs:cap>
<gdacs:version>1</gdacs:version>
<gdacs:eventtype>EQ</gdacs:eventtype>
<gdacs:alertlevel>Red</gdacs:alertlevel>
<gdacs:eventname />
<gdacs:eventid>1070251</gdacs:eventid>
<gdacs:episodeid>1103558</gdacs:episodeid>
<gdacs:calculationtype>earthquakeonly</gdacs:calculationtype>
<gdacs:severity unit="M" value="7.5">Magnitude 7.5M, Depth:212.52km</gdacs:severity>
<gdacs:population unit="Pop100" value="931807">931807 people within 100km</gdacs:population>
<gdacs:vulnerability value="0" />
<gdacs:iso3 />
<gdacs:country>Afghanistan</gdacs:country>
<gdacs:glide />
<gdacs:mapimage>http://www.gdacs.org/datareport/dailymap/EQ/1070251/ECDM_20151029_Afghanistan_Earthquake.jpg</gdacs:mapimage>
<gdacs:maplink>http://www.gdacs.org/datareport/dailymap/EQ/1070251/ECDM_20151029_Afghanistan_Earthquake.pdf</gdacs:maplink>
<gdacs:gtsimage>http://www.gdacs.org//images/satellite-icon.png</gdacs:gtsimage>
<gdacs:gtslink>http://www.gdacs.org/gts_list.aspx?eventid=1070251&eventtype=EQ</gdacs:gtslink>
<gdacs:resources />
</item>
<item>
<title>Red alert for tropical cyclone PATRICIA-15. Population affected by Category 1 (120 km/h) wind speeds or higher is 0.406 million.</title>
<description>From 20/10/2015 to 24/10/2015, a Tropical Depression (maximum wind speed of 324 km/h) PATRICIA-15 was active in EastPacific. The cyclone affects these countries: Mexico (vulnerability Medium). Estimated population affected by category 1 (120 km/h) wind speeds or higher is 0.406 million.</description>
<enclosure type="image/png" length="1" url="http://dma.gdacs.org/saved/gdacs/tc/1000231/1000231_20_tn.png" />
<link>http://www.gdacs.org/report.aspx?eventtype=TC&eventid=1000231</link>
<pubDate>Sat, 24 Oct 2015 21:00:00 GMT</pubDate>
<gdacs:fromdate>Tue, 20 Oct 2015 15:00:00 GMT</gdacs:fromdate>
<gdacs:todate>Sat, 24 Oct 2015 21:00:00 GMT</gdacs:todate>
<dc:subject>TC3</dc:subject>
<guid isPermaLink="false">TC1000231</guid>
<geo:Point>
<geo:lat>25.3</geo:lat>
<geo:long>-100.6</geo:long>
</geo:Point>
<georss:point>25.3 -100.6</georss:point>
<gdacs:cap>http://www.gdacs.org/cap.aspx?eventtype=TC&eventid=1000231</gdacs:cap>
<gdacs:version>20</gdacs:version>
<gdacs:eventtype>TC</gdacs:eventtype>
<gdacs:alertlevel>Red</gdacs:alertlevel>
<gdacs:eventname>PATRICIA-15</gdacs:eventname>
<gdacs:eventid>1000231</gdacs:eventid>
<gdacs:episodeid>20</gdacs:episodeid>
<gdacs:calculationtype>tropicalcyclonewithstormsurge</gdacs:calculationtype>
<gdacs:severity unit="km/h" value="324.072">Tropical Depression (maximum wind speed of 324 km/h)</gdacs:severity>
<gdacs:population unit="Pop74" value="405831">Population affected by Category 1 (120 km/h) wind speeds or higher is 0.406 million</gdacs:population>
<gdacs:vulnerability value="2">Medium</gdacs:vulnerability>
<gdacs:iso3 />
<gdacs:country>Mexico</gdacs:country>
<gdacs:glide />
<gdacs:mapimage>http://www.gdacs.org/datareport/dailymap/TC/1000231/ECDM_20151023_TC_PATRICIA.jpg</gdacs:mapimage>
<gdacs:maplink>http://www.gdacs.org/datareport/dailymap/TC/1000231/ECDM_20151023_TC_PATRICIA.pdf</gdacs:maplink>
<gdacs:gtsimage>http://www.gdacs.org//images/satellite-icon.png</gdacs:gtsimage>
<gdacs:gtslink>http://www.gdacs.org/gts_list.aspx?eventid=1000231&eventtype=TC</gdacs:gtslink>
<gdacs:resources />
</item>
<item>
<title>Orange earthquake alert (Magnitude 5.3M, Depth:29.42km) in Pakistan 23/10/2015 00:27 UTC, 7963218 people within 100km.</title>
<description>On 10/23/2015 12:27:42 AM, an earthquake occurred in Pakistan potentially affecting 7963218 people within 100km. The earthquake had Magnitude 5.3M, Depth:29.42km.</description>
<enclosure type="image/png" length="1" url="http://dma.gdacs.org/saved/gdacs/eq/eq1103164_1.png" />
<link>http://www.gdacs.org/report.aspx?eventtype=EQ&eventid=1069951</link>
<pubDate>Fri, 23 Oct 2015 00:27:42 GMT</pubDate>
<gdacs:fromdate>Fri, 23 Oct 2015 00:27:42 GMT</gdacs:fromdate>
<gdacs:todate>Fri, 23 Oct 2015 00:27:42 GMT</gdacs:todate>
<dc:subject>EQ2</dc:subject>
<guid isPermaLink="false">EQ1069951</guid>
<geo:Point>
<geo:lat>29.6639</geo:lat>
<geo:long>70.3527</geo:long>
</geo:Point>
<georss:point>29.6639 70.3527</georss:point>
<gdacs:cap>http://www.gdacs.org/cap.aspx?eventtype=EQ&eventid=1069951</gdacs:cap>
<gdacs:version>1</gdacs:version>
<gdacs:eventtype>EQ</gdacs:eventtype>
<gdacs:alertlevel>Orange</gdacs:alertlevel>
<gdacs:eventname />
<gdacs:eventid>1069951</gdacs:eventid>
<gdacs:episodeid>1103164</gdacs:episodeid>
<gdacs:calculationtype>earthquakeonly</gdacs:calculationtype>
<gdacs:severity unit="M" value="5.3">Magnitude 5.3M, Depth:29.42km</gdacs:severity>
<gdacs:population unit="Pop100" value="7963218">7963218 people within 100km</gdacs:population>
<gdacs:vulnerability value="0" />
<gdacs:iso3 />
<gdacs:country>Pakistan</gdacs:country>
<gdacs:glide />
<gdacs:mapimage />
<gdacs:maplink />
<gdacs:gtsimage />
<gdacs:gtslink />
<gdacs:resources />
</item>
<item>
<title>Red alert for tropical cyclone KOPPU-15. Population affected by Category 1 (120 km/h) wind speeds or higher is 0.286 million.</title>
<description>From 13/10/2015 to 21/10/2015, a Tropical Depression (maximum wind speed of 241 km/h) KOPPU-15 was active in NWPacific. The cyclone affects these countries: Philippines (vulnerability Medium). Estimated population affected by category 1 (120 km/h) wind speeds or higher is 0.286 million.</description>
<enclosure type="image/png" length="1" url="http://dma.gdacs.org/saved/gdacs/tc/1000227/1000227_33_tn.png" />
<link>http://www.gdacs.org/report.aspx?eventtype=TC&eventid=1000227</link>
<pubDate>Wed, 21 Oct 2015 00:00:00 GMT</pubDate>
<gdacs:fromdate>Tue, 13 Oct 2015 00:00:00 GMT</gdacs:fromdate>
<gdacs:todate>Wed, 21 Oct 2015 00:00:00 GMT</gdacs:todate>
<dc:subject>TC3</dc:subject>
<guid isPermaLink="false">TC1000227</guid>
<geo:Point>
<geo:lat>19.1</geo:lat>
<geo:long>122.2</geo:long>
</geo:Point>
<georss:point>19.1 122.2</georss:point>
<gdacs:cap>http://www.gdacs.org/cap.aspx?eventtype=TC&eventid=1000227</gdacs:cap>
<gdacs:version>33</gdacs:version>
<gdacs:eventtype>TC</gdacs:eventtype>
<gdacs:alertlevel>Red</gdacs:alertlevel>
<gdacs:eventname>KOPPU-15</gdacs:eventname>
<gdacs:eventid>1000227</gdacs:eventid>
<gdacs:episodeid>33</gdacs:episodeid>
<gdacs:calculationtype>tropicalcyclonewithstormsurge</gdacs:calculationtype>
<gdacs:severity unit="km/h" value="240.7392">Tropical Depression (maximum wind speed of 241 km/h)</gdacs:severity>
<gdacs:population unit="Pop74" value="286141">Population affected by Category 1 (120 km/h) wind speeds or higher is 0.286 million</gdacs:population>
<gdacs:vulnerability value="2">Medium</gdacs:vulnerability>
<gdacs:iso3 />
<gdacs:country>Philippines</gdacs:country>
<gdacs:glide />
<gdacs:mapimage>http://www.gdacs.org/datareport/dailymap/TC/1000227/ECDM_20151019_Philippines_TCKOPPU.jpg</gdacs:mapimage>
<gdacs:maplink>http://www.gdacs.org/datareport/dailymap/TC/1000227/ECDM_20151019_Philippines_TCKOPPU.pdf</gdacs:maplink>
<gdacs:gtsimage>http://www.gdacs.org//images/satellite-icon.png</gdacs:gtsimage>
<gdacs:gtslink>http://www.gdacs.org/gts_list.aspx?eventid=1000227&eventtype=TC</gdacs:gtslink>
<gdacs:resources />
</item>
<item>
<title>Orange alert for tropical cyclone MUJIGAE-15. Population affected by Category 1 (120 km/h) wind speeds or higher is 0.775 million.</title>
<description>From 01/10/2015 to 04/10/2015, a Hurricane/Typhoon > 74 mph (maximum wind speed of 213 km/h) MUJIGAE-15 was active in NWPacific. The cyclone affects these countries: China (vulnerability Medium). Estimated population affected by category 1 (120 km/h) wind speeds or higher is 0.775 million.</description>
<enclosure type="image/png" length="1" url="http://dma.gdacs.org/saved/gdacs/tc/1000221/1000221_15_tn.png" />
<link>http://www.gdacs.org/report.aspx?eventtype=TC&eventid=1000221</link>
<pubDate>Sun, 04 Oct 2015 12:00:00 GMT</pubDate>
<gdacs:fromdate>Thu, 01 Oct 2015 00:00:00 GMT</gdacs:fromdate>
<gdacs:todate>Sun, 04 Oct 2015 12:00:00 GMT</gdacs:todate>
<dc:subject>TC2</dc:subject>
<guid isPermaLink="false">TC1000221</guid>
<geo:Point>
<geo:lat>21.9</geo:lat>
<geo:long>109.5</geo:long>
</geo:Point>
<georss:point>21.9 109.5</georss:point>
<gdacs:cap>http://www.gdacs.org/cap.aspx?eventtype=TC&eventid=1000221</gdacs:cap>
<gdacs:version>15</gdacs:version>
<gdacs:eventtype>TC</gdacs:eventtype>
<gdacs:alertlevel>Orange</gdacs:alertlevel>
<gdacs:eventname>MUJIGAE-15</gdacs:eventname>
<gdacs:eventid>1000221</gdacs:eventid>
<gdacs:episodeid>15</gdacs:episodeid>
<gdacs:calculationtype>tropicalcyclonewithstormsurge</gdacs:calculationtype>
<gdacs:severity unit="km/h" value="212.9616">Hurricane/Typhoon > 74 mph (maximum wind speed of 213 km/h)</gdacs:severity>
<gdacs:population unit="Pop74" value="775183">Population affected by Category 1 (120 km/h) wind speeds or higher is 0.775 million</gdacs:population>
<gdacs:vulnerability value="2">Medium</gdacs:vulnerability>
<gdacs:iso3 />
<gdacs:country>China</gdacs:country>
<gdacs:glide />
<gdacs:mapimage>http://www.gdacs.org/datareport/dailymap/TC/1000221/20151002_TC_MUJIGAE.jpg</gdacs:mapimage>
<gdacs:maplink>http://www.gdacs.org/datareport/dailymap/TC/1000221/20151002_TC_MUJIGAE.pdf</gdacs:maplink>
<gdacs:gtsimage>http://www.gdacs.org//images/satellite-icon.png</gdacs:gtsimage>
<gdacs:gtslink>http://www.gdacs.org/gts_list.aspx?eventid=1000221&eventtype=TC</gdacs:gtslink>
<gdacs:resources />
</item>
<item>
<title>Orange flood alert in Guatamala</title>
<description>On 02/10/2015, a flood started in Guatamala, lasting until 03/10/2015 (last update). The flood caused 500 killed and 433 displaced .</description>
<enclosure type="image/png" length="1" url="http://dma.gdacs.org/saved/gdacs/fl/dfo2015_4297.png" />
<link>http://www.gdacs.org/report.aspx?eventtype=FL&eventid=4297</link>
<pubDate>Sat, 03 Oct 2015 23:59:59 GMT</pubDate>
<gdacs:fromdate>Fri, 02 Oct 2015 00:00:00 GMT</gdacs:fromdate>
<gdacs:todate>Sat, 03 Oct 2015 23:59:59 GMT</gdacs:todate>
<dc:subject>FL2</dc:subject>
<guid isPermaLink="false">FL4297</guid>
<geo:Point>
<geo:lat>14.826</geo:lat>
<geo:long>-90.613</geo:long>
</geo:Point>
<georss:point>14.826 -90.613</georss:point>
<gdacs:cap>http://www.gdacs.org/cap.aspx?eventtype=FL&eventid=4297</gdacs:cap>
<gdacs:version>1</gdacs:version>
<gdacs:eventtype>FL</gdacs:eventtype>
<gdacs:alertlevel>Orange</gdacs:alertlevel>
<gdacs:eventname />
<gdacs:eventid>4297</gdacs:eventid>
<gdacs:episodeid>1</gdacs:episodeid>
<gdacs:calculationtype />
<gdacs:severity unit="" value="4.38">Magnitude 4.38</gdacs:severity>
<gdacs:population unit="Population affected" value="500">500 killed and 433 displaced </gdacs:population>
<gdacs:vulnerability value="0" />
<gdacs:iso3 />
<gdacs:country>Guatamala</gdacs:country>
<gdacs:glide>0</gdacs:glide>
<gdacs:mapimage />
<gdacs:maplink />
<gdacs:gtsimage />
<gdacs:gtslink />
<gdacs:resources />
</item>
<item>
<title>Red alert for tropical cyclone DUJUAN-15. Population affected by Category 1 (120 km/h) wind speeds or higher is 1.029 million.</title>
<description>From 21/09/2015 to 29/09/2015, a Hurricane/Typhoon > 74 mph (maximum wind speed of 231 km/h) DUJUAN-15 was active in NWPacific. The cyclone affects these countries: Japan, China (vulnerability Medium). Estimated population affected by category 1 (120 km/h) wind speeds or higher is 1.029 million.</description>
<enclosure type="image/png" length="1" url="http://dma.gdacs.org/saved/gdacs/tc/1000217/1000217_30_tn.png" />
<link>http://www.gdacs.org/report.aspx?eventtype=TC&eventid=1000217</link>
<pubDate>Tue, 29 Sep 2015 00:00:00 GMT</pubDate>
<gdacs:fromdate>Mon, 21 Sep 2015 18:00:00 GMT</gdacs:fromdate>
<gdacs:todate>Tue, 29 Sep 2015 00:00:00 GMT</gdacs:todate>
<dc:subject>TC3</dc:subject>
<guid isPermaLink="false">TC1000217</guid>
<geo:Point>
<geo:lat>25</geo:lat>
<geo:long>119.1</geo:long>
</geo:Point>
<georss:point>25 119.1</georss:point>
<gdacs:cap>http://www.gdacs.org/cap.aspx?eventtype=TC&eventid=1000217</gdacs:cap>
<gdacs:version>30</gdacs:version>
<gdacs:eventtype>TC</gdacs:eventtype>
<gdacs:alertlevel>Red</gdacs:alertlevel>
<gdacs:eventname>DUJUAN-15</gdacs:eventname>
<gdacs:eventid>1000217</gdacs:eventid>
<gdacs:episodeid>30</gdacs:episodeid>
<gdacs:calculationtype>tropicalcyclonewithstormsurge</gdacs:calculationtype>
<gdacs:severity unit="km/h" value="231.48">Hurricane/Typhoon > 74 mph (maximum wind speed of 231 km/h)</gdacs:severity>
<gdacs:population unit="Pop74" value="1029246">Population affected by Category 1 (120 km/h) wind speeds or higher is 1.029 million</gdacs:population>
<gdacs:vulnerability value="2">Medium</gdacs:vulnerability>
<gdacs:iso3 />
<gdacs:country>Japan, China</gdacs:country>
<gdacs:glide />
<gdacs:mapimage>http://www.gdacs.org/datareport/dailymap/TC/1000217/20150928_TC_DUJUAN.jpg</gdacs:mapimage>
<gdacs:maplink>http://www.gdacs.org/datareport/dailymap/TC/1000217/20150928_TC_DUJUAN.pdf</gdacs:maplink>
<gdacs:gtsimage>http://www.gdacs.org//images/satellite-icon.png</gdacs:gtsimage>
<gdacs:gtslink>http://www.gdacs.org/gts_list.aspx?eventid=1000217&eventtype=TC</gdacs:gtslink>
<gdacs:resources />
</item>
<item>
<title>Red earthquake alert (Magnitude 8.3M, Depth:25km) in Chile 16/09/2015 22:54 UTC, 140385 people within 100km.</title>
<description>On 9/16/2015 10:54:33 PM, an earthquake occurred in Chile potentially affecting 140385 people within 100km. The earthquake had Magnitude 8.3M, Depth:25km.</description>
<enclosure type="image/png" length="1" url="http://dma.gdacs.org/saved/gdacs/eq/eq1097344_1.png" />
<link>http://www.gdacs.org/report.aspx?eventtype=EQ&eventid=1065792</link>
<pubDate>Wed, 16 Sep 2015 22:54:33 GMT</pubDate>
<gdacs:fromdate>Wed, 16 Sep 2015 22:54:33 GMT</gdacs:fromdate>
<gdacs:todate>Wed, 16 Sep 2015 22:54:33 GMT</gdacs:todate>
<dc:subject>EQ3</dc:subject>
<guid isPermaLink="false">EQ1065792</guid>
<geo:Point>
<geo:lat>-31.5695</geo:lat>
<geo:long>-71.6543</geo:long>
</geo:Point>
<georss:point>-31.5695 -71.6543</georss:point>
<gdacs:cap>http://www.gdacs.org/cap.aspx?eventtype=EQ&eventid=1065792</gdacs:cap>
<gdacs:version>1</gdacs:version>
<gdacs:eventtype>EQ</gdacs:eventtype>
<gdacs:alertlevel>Red</gdacs:alertlevel>
<gdacs:eventname />
<gdacs:eventid>1065792</gdacs:eventid>
<gdacs:episodeid>1097344</gdacs:episodeid>
<gdacs:calculationtype>tsunami</gdacs:calculationtype>
<gdacs:severity unit="M" value="8.3">Magnitude 8.3M, Depth:25km</gdacs:severity>
<gdacs:population unit="Pop100" value="140385">140385 people within 100km</gdacs:population>
<gdacs:vulnerability value="0" />
<gdacs:iso3 />
<gdacs:country>Chile</gdacs:country>
<gdacs:glide />
<gdacs:mapimage>http://www.gdacs.org/datareport/dailymap/EQ/1065792/ECDM_20150917_Chile_Earthquake.jpg</gdacs:mapimage>
<gdacs:maplink>http://www.gdacs.org/datareport/dailymap/EQ/1065792/ECDM_20150917_Chile_Earthquake.pdf</gdacs:maplink>
<gdacs:gtsimage>http://www.gdacs.org//images/satellite-icon.png</gdacs:gtsimage>
<gdacs:gtslink>http://www.gdacs.org/gts_list.aspx?eventid=1065792&eventtype=EQ</gdacs:gtslink>
<gdacs:resources />
</item>
<item>
<title>Orange flood alert in Japan</title>
<description>On 09/09/2015, a flood started in Japan, lasting until 11/09/2015 (last update). The flood caused 3 killed and 100000 displaced .</description>
<enclosure type="image/png" length="1" url="http://dma.gdacs.org/saved/gdacs/fl/dfo2015_4292.png" />
<link>http://www.gdacs.org/report.aspx?eventtype=FL&eventid=4292</link>
<pubDate>Fri, 11 Sep 2015 23:59:59 GMT</pubDate>
<gdacs:fromdate>Wed, 09 Sep 2015 00:00:00 GMT</gdacs:fromdate>
<gdacs:todate>Fri, 11 Sep 2015 23:59:59 GMT</gdacs:todate>
<dc:subject>FL2</dc:subject>
<guid isPermaLink="false">FL4292</guid>
<geo:Point>
<geo:lat>36.938</geo:lat>
<geo:long>140.046</geo:long>
</geo:Point>
<georss:point>36.938 140.046</georss:point>
<gdacs:cap>http://www.gdacs.org/cap.aspx?eventtype=FL&eventid=4292</gdacs:cap>
<gdacs:version>2</gdacs:version>
<gdacs:eventtype>FL</gdacs:eventtype>
<gdacs:alertlevel>Orange</gdacs:alertlevel>
<gdacs:eventname />
<gdacs:eventid>4292</gdacs:eventid>
<gdacs:episodeid>2</gdacs:episodeid>
<gdacs:calculationtype />
<gdacs:severity unit="" value="5.5">Magnitude 5.50</gdacs:severity>
<gdacs:population unit="Population affected" value="3">3 killed and 100000 displaced </gdacs:population>
<gdacs:vulnerability value="0" />
<gdacs:iso3 />
<gdacs:country>Japan</gdacs:country>
<gdacs:glide>TC-000124-JPN</gdacs:glide>
<gdacs:mapimage />
<gdacs:maplink />
<gdacs:gtsimage />
<gdacs:gtslink />
<gdacs:resources />
</item>
<item>
<title>Orange alert for tropical cyclone ERIKA-15. Population affected by Category 1 (120 km/h) wind speeds or higher is 0.</title>
<description>From 25/08/2015 to 29/08/2015, a Tropical Depression (maximum wind speed of 83 km/h) ERIKA-15 was active in Atlantic. The cyclone affects these countries: Cuba, Haiti, Puerto Rico, Dominican Republic, United States, Antigua and Barbuda, Jamaica, Virgin Islands, British, Virgin Islands, U.S., Guadeloupe, Saint Kitts and Nevis, Montserrat, Anguilla (vulnerability High). Estimated population affected by category 1 (120 km/h) wind speeds or higher is 0.</description>
<enclosure type="image/png" length="1" url="http://dma.gdacs.org/saved/gdacs/tc/1000203/1000203_19_tn.png" />
<link>http://www.gdacs.org/report.aspx?eventtype=TC&eventid=1000203</link>
<pubDate>Sat, 29 Aug 2015 13:30:00 GMT</pubDate>
<gdacs:fromdate>Tue, 25 Aug 2015 03:00:00 GMT</gdacs:fromdate>
<gdacs:todate>Sat, 29 Aug 2015 13:30:00 GMT</gdacs:todate>
<dc:subject>TC2</dc:subject>
<guid isPermaLink="false">TC1000203</guid>
<geo:Point>
<geo:lat>21.5</geo:lat>
<geo:long>-75.9</geo:long>
</geo:Point>
<georss:point>21.5 -75.9</georss:point>
<gdacs:cap>http://www.gdacs.org/cap.aspx?eventtype=TC&eventid=1000203</gdacs:cap>
<gdacs:version>19</gdacs:version>
<gdacs:eventtype>TC</gdacs:eventtype>
<gdacs:alertlevel>Orange</gdacs:alertlevel>
<gdacs:eventname>ERIKA-15</gdacs:eventname>
<gdacs:eventid>1000203</gdacs:eventid>
<gdacs:episodeid>19</gdacs:episodeid>
<gdacs:calculationtype>tropicalcyclonewithstormsurge</gdacs:calculationtype>
<gdacs:severity unit="km/h" value="83.3328">Tropical Depression (maximum wind speed of 83 km/h)</gdacs:severity>
<gdacs:population unit="Pop74" value="0">Population affected by Category 1 (120 km/h) wind speeds or higher is 0</gdacs:population>
<gdacs:vulnerability value="3">High</gdacs:vulnerability>
<gdacs:iso3 />
<gdacs:country>Cuba, Haiti, Puerto Rico, Dominican Republic, United States, Antigua and Barbuda, Jamaica, Virgin Islands, British, Virgin Islands, U.S., Guadeloupe, Saint Kitts and Nevis, Montserrat, Anguilla</gdacs:country>
<gdacs:glide />
<gdacs:mapimage>http://www.gdacs.org/datareport/dailymap/TC/1000203/ECDM_20150828_TC_ERIKA.jpg</gdacs:mapimage>
<gdacs:maplink>http://www.gdacs.org/datareport/dailymap/TC/1000203/ECDM_20150828_TC_ERIKA.pdf</gdacs:maplink>
<gdacs:gtsimage>http://www.gdacs.org//images/satellite-icon.png</gdacs:gtsimage>
<gdacs:gtslink>http://www.gdacs.org/gts_list.aspx?eventid=1000203&eventtype=TC</gdacs:gtslink>
<gdacs:resources />
</item>
<item>
<title>Orange alert for tropical cyclone GONI-15. Population affected by Category 1 (120 km/h) wind speeds or higher is 6.424 million.</title>
<description>From 14/08/2015 to 25/08/2015, a Tropical Storm (maximum wind speed of 213 km/h) GONI-15 was active in NWPacific. The cyclone affects these countries: Philippines, Japan (vulnerability Medium). Estimated population affected by category 1 (120 km/h) wind speeds or higher is 6.424 million.</description>
<enclosure type="image/png" length="1" url="http://dma.gdacs.org/saved/gdacs/tc/1000196/1000196_47_tn.png" />
<link>http://www.gdacs.org/report.aspx?eventtype=TC&eventid=1000196</link>
<pubDate>Tue, 25 Aug 2015 12:00:00 GMT</pubDate>
<gdacs:fromdate>Fri, 14 Aug 2015 00:00:00 GMT</gdacs:fromdate>
<gdacs:todate>Tue, 25 Aug 2015 12:00:00 GMT</gdacs:todate>
<dc:subject>TC2</dc:subject>
<guid isPermaLink="false">TC1000196</guid>
<geo:Point>
<geo:lat>36.4</geo:lat>
<geo:long>131.6</geo:long>
</geo:Point>
<georss:point>36.4 131.6</georss:point>
<gdacs:cap>http://www.gdacs.org/cap.aspx?eventtype=TC&eventid=1000196</gdacs:cap>
<gdacs:version>47</gdacs:version>
<gdacs:eventtype>TC</gdacs:eventtype>
<gdacs:alertlevel>Orange</gdacs:alertlevel>
<gdacs:eventname>GONI-15</gdacs:eventname>
<gdacs:eventid>1000196</gdacs:eventid>
<gdacs:episodeid>47</gdacs:episodeid>
<gdacs:calculationtype>tropicalcyclonewithstormsurge</gdacs:calculationtype>
<gdacs:severity unit="km/h" value="212.9616">Tropical Storm (maximum wind speed of 213 km/h)</gdacs:severity>
<gdacs:population unit="Pop74" value="6423651">Population affected by Category 1 (120 km/h) wind speeds or higher is 6.424 million</gdacs:population>
<gdacs:vulnerability value="2">Medium</gdacs:vulnerability>
<gdacs:iso3 />
<gdacs:country>Philippines, Japan</gdacs:country>
<gdacs:glide />
<gdacs:mapimage />
<gdacs:maplink />
<gdacs:gtsimage>http://www.gdacs.org//images/satellite-icon.png</gdacs:gtsimage>
<gdacs:gtslink>http://www.gdacs.org/gts_list.aspx?eventid=1000196&eventtype=TC</gdacs:gtslink>
<gdacs:resources />
</item>
<item>
<title>Orange flood alert in Myanmar</title>
<description>On 15/07/2015, a flood started in Myanmar, lasting until 19/08/2015 (last update). The flood caused 88 killed and 85400 displaced .</description>
<enclosure type="image/png" length="1" url="http://dma.gdacs.org/saved/gdacs/fl/dfo2015_4283.png" />
<link>http://www.gdacs.org/report.aspx?eventtype=FL&eventid=4283</link>
<pubDate>Wed, 19 Aug 2015 23:59:59 GMT</pubDate>
<gdacs:fromdate>Wed, 15 Jul 2015 00:00:00 GMT</gdacs:fromdate>
<gdacs:todate>Wed, 19 Aug 2015 23:59:59 GMT</gdacs:todate>
<dc:subject>FL2</dc:subject>
<guid isPermaLink="false">FL4283</guid>
<geo:Point>
<geo:lat>20.175</geo:lat>
<geo:long>95.533</geo:long>
</geo:Point>
<georss:point>20.175 95.533</georss:point>
<gdacs:cap>http://www.gdacs.org/cap.aspx?eventtype=FL&eventid=4283</gdacs:cap>
<gdacs:version>3</gdacs:version>
<gdacs:eventtype>FL</gdacs:eventtype>
<gdacs:alertlevel>Orange</gdacs:alertlevel>
<gdacs:eventname />
<gdacs:eventid>4283</gdacs:eventid>
<gdacs:episodeid>3</gdacs:episodeid>
<gdacs:calculationtype />
<gdacs:severity unit="" value="7.33">Magnitude 7.33</gdacs:severity>
<gdacs:population unit="Population affected" value="88">88 killed and 85400 displaced </gdacs:population>
<gdacs:vulnerability value="0" />
<gdacs:iso3 />
<gdacs:country>Myanmar</gdacs:country>
<gdacs:glide>0</gdacs:glide>
<gdacs:mapimage />
<gdacs:maplink />
<gdacs:gtsimage />
<gdacs:gtslink />
<gdacs:resources />
</item>
<item>
<title>Orange flood alert in India</title>
<description>On 15/07/2015, a flood started in India, lasting until 19/08/2015 (last update). The flood caused 206 killed and 300000 displaced .</description>
<enclosure type="image/png" length="1" url="http://dma.gdacs.org/saved/gdacs/fl/dfo2015_4282.png" />
<link>http://www.gdacs.org/report.aspx?eventtype=FL&eventid=4282</link>
<pubDate>Wed, 19 Aug 2015 23:59:59 GMT</pubDate>
<gdacs:fromdate>Wed, 15 Jul 2015 00:00:00 GMT</gdacs:fromdate>
<gdacs:todate>Wed, 19 Aug 2015 23:59:59 GMT</gdacs:todate>
<dc:subject>FL2</dc:subject>
<guid isPermaLink="false">FL4282</guid>
<geo:Point>
<geo:lat>26.207</geo:lat>
<geo:long>82.617</geo:long>
</geo:Point>
<georss:point>26.207 82.617</georss:point>
<gdacs:cap>http://www.gdacs.org/cap.aspx?eventtype=FL&eventid=4282</gdacs:cap>
<gdacs:version>3</gdacs:version>
<gdacs:eventtype>FL</gdacs:eventtype>
<gdacs:alertlevel>Orange</gdacs:alertlevel>
<gdacs:eventname />
<gdacs:eventid>4282</gdacs:eventid>
<gdacs:episodeid>3</gdacs:episodeid>
<gdacs:calculationtype />
<gdacs:severity unit="" value="7.66">Magnitude 7.66</gdacs:severity>
<gdacs:population unit="Population affected" value="206">206 killed and 300000 displaced </gdacs:population>
<gdacs:vulnerability value="0" />
<gdacs:iso3 />
<gdacs:country>India</gdacs:country>
<gdacs:glide>0</gdacs:glide>
<gdacs:mapimage />
<gdacs:maplink />
<gdacs:gtsimage />
<gdacs:gtslink />
<gdacs:resources />
</item>
<item>
<title>Red flood alert in Pakistan</title>
<description>On 15/07/2015, a flood started in Pakistan, lasting until 19/08/2015 (last update). The flood caused 166 killed and 803000 displaced .</description>
<enclosure type="image/png" length="1" url="http://dma.gdacs.org/saved/gdacs/fl/dfo2015_4272.png" />
<link>http://www.gdacs.org/report.aspx?eventtype=FL&eventid=4272</link>
<pubDate>Wed, 19 Aug 2015 23:59:59 GMT</pubDate>
<gdacs:fromdate>Wed, 15 Jul 2015 00:00:00 GMT</gdacs:fromdate>
<gdacs:todate>Wed, 19 Aug 2015 23:59:59 GMT</gdacs:todate>
<dc:subject>FL3</dc:subject>
<guid isPermaLink="false">FL4272</guid>
<geo:Point>
<geo:lat>34.343</geo:lat>
<geo:long>72.274</geo:long>
</geo:Point>
<georss:point>34.343 72.274</georss:point>
<gdacs:cap>http://www.gdacs.org/cap.aspx?eventtype=FL&eventid=4272</gdacs:cap>
<gdacs:version>4</gdacs:version>
<gdacs:eventtype>FL</gdacs:eventtype>
<gdacs:alertlevel>Red</gdacs:alertlevel>
<gdacs:eventname />
<gdacs:eventid>4272</gdacs:eventid>
<gdacs:episodeid>4</gdacs:episodeid>
<gdacs:calculationtype />
<gdacs:severity unit="" value="6.87">Magnitude 6.87</gdacs:severity>
<gdacs:population unit="Population affected" value="166">166 killed and 803000 displaced </gdacs:population>
<gdacs:vulnerability value="0" />
<gdacs:iso3 />
<gdacs:country>Pakistan</gdacs:country>
<gdacs:glide>0</gdacs:glide>
<gdacs:mapimage />
<gdacs:maplink />
<gdacs:gtsimage />
<gdacs:gtslink />
<gdacs:resources />
</item>
<item>
<title>Orange earthquake alert (Magnitude 5.9M, Depth:224km) in Afghanistan 10/08/2015 10:05 UTC, 748585 people within 100km.</title>
<description>On 8/10/2015 10:05:25 AM, an earthquake occurred in Afghanistan potentially affecting 748585 people within 100km. The earthquake had Magnitude 5.9M, Depth:224km.</description>
<enclosure type="image/png" length="1" url="http://dma.gdacs.org/saved/gdacs/eq/eq1091599_1.png" />
<link>http://www.gdacs.org/report.aspx?eventtype=EQ&eventid=1062684</link>
<pubDate>Mon, 10 Aug 2015 10:05:25 GMT</pubDate>
<gdacs:fromdate>Mon, 10 Aug 2015 10:05:25 GMT</gdacs:fromdate>
<gdacs:todate>Mon, 10 Aug 2015 10:05:25 GMT</gdacs:todate>
<dc:subject>EQ2</dc:subject>
<guid isPermaLink="false">EQ1062684</guid>
<geo:Point>
<geo:lat>36.5199</geo:lat>
<geo:long>71.2009</geo:long>
</geo:Point>
<georss:point>36.5199 71.2009</georss:point>
<gdacs:cap>http://www.gdacs.org/cap.aspx?eventtype=EQ&eventid=1062684</gdacs:cap>
<gdacs:version>1</gdacs:version>
<gdacs:eventtype>EQ</gdacs:eventtype>
<gdacs:alertlevel>Orange</gdacs:alertlevel>
<gdacs:eventname />
<gdacs:eventid>1062684</gdacs:eventid>
<gdacs:episodeid>1091599</gdacs:episodeid>
<gdacs:calculationtype>earthquakeonly</gdacs:calculationtype>
<gdacs:severity unit="M" value="5.9">Magnitude 5.9M, Depth:224km</gdacs:severity>
<gdacs:population unit="Pop100" value="748585">748585 people within 100km</gdacs:population>
<gdacs:vulnerability value="0" />
<gdacs:iso3 />
<gdacs:country>Afghanistan</gdacs:country>
<gdacs:glide />
<gdacs:mapimage />
<gdacs:maplink />
<gdacs:gtsimage />
<gdacs:gtslink />
<gdacs:resources />
</item>
<item>
<title>Red alert for tropical cyclone SOUDELOR-15. Population affected by Category 1 (120 km/h) wind speeds or higher is 0.389 million.</title>
<description>From 30/07/2015 to 08/08/2015, a Tropical Storm (maximum wind speed of 287 km/h) SOUDELOR-15 was active in NWPacific. The cyclone affects these countries: China, Northern Mariana Islands (vulnerability Medium). Estimated population affected by category 1 (120 km/h) wind speeds or higher is 0.389 million.</description>
<enclosure type="image/png" length="1" url="http://dma.gdacs.org/saved/gdacs/tc/1000191/1000191_39_tn.png" />
<link>http://www.gdacs.org/report.aspx?eventtype=TC&eventid=1000191</link>
<pubDate>Sat, 08 Aug 2015 18:00:00 GMT</pubDate>
<gdacs:fromdate>Thu, 30 Jul 2015 06:00:00 GMT</gdacs:fromdate>
<gdacs:todate>Sat, 08 Aug 2015 18:00:00 GMT</gdacs:todate>
<dc:subject>TC3</dc:subject>
<guid isPermaLink="false">TC1000191</guid>
<geo:Point>
<geo:lat>25.5</geo:lat>
<geo:long>118.8</geo:long>
</geo:Point>
<georss:point>25.5 118.8</georss:point>
<gdacs:cap>http://www.gdacs.org/cap.aspx?eventtype=TC&eventid=1000191</gdacs:cap>
<gdacs:version>39</gdacs:version>
<gdacs:eventtype>TC</gdacs:eventtype>
<gdacs:alertlevel>Red</gdacs:alertlevel>
<gdacs:eventname>SOUDELOR-15</gdacs:eventname>
<gdacs:eventid>1000191</gdacs:eventid>
<gdacs:episodeid>39</gdacs:episodeid>
<gdacs:calculationtype>tropicalcyclonewithstormsurge</gdacs:calculationtype>
<gdacs:severity unit="km/h" value="287.0352">Tropical Storm (maximum wind speed of 287 km/h)</gdacs:severity>
<gdacs:population unit="Pop74" value="389210">Population affected by Category 1 (120 km/h) wind speeds or higher is 0.389 million</gdacs:population>
<gdacs:vulnerability value="2">Medium</gdacs:vulnerability>
<gdacs:iso3 />
<gdacs:country>China, Northern Mariana Islands</gdacs:country>
<gdacs:glide />
<gdacs:mapimage />
<gdacs:maplink />
<gdacs:gtsimage>http://www.gdacs.org//images/satellite-icon.png</gdacs:gtsimage>
<gdacs:gtslink>http://www.gdacs.org/gts_list.aspx?eventid=1000191&eventtype=TC</gdacs:gtslink>
<gdacs:resources />
</item>
<item>
<title>Orange alert for tropical cyclone TWO-15. Population affected by Category 1 (120 km/h) wind speeds or higher is 0.</title>
<description>From 29/07/2015 to 30/07/2015, a Tropical Storm (maximum wind speed of 74 km/h) TWO-15 was active in NorthIndian. The cyclone affects these countries: India, Bangladesh, Myanmar (vulnerability High). Estimated population affected by category 1 (120 km/h) wind speeds or higher is 0.</description>
<enclosure type="image/png" length="1" url="http://dma.gdacs.org/saved/gdacs/tc/1000189/1000189_6_tn.png" />
<link>http://www.gdacs.org/report.aspx?eventtype=TC&eventid=1000189</link>
<pubDate>Thu, 30 Jul 2015 06:00:00 GMT</pubDate>
<gdacs:fromdate>Wed, 29 Jul 2015 00:00:00 GMT</gdacs:fromdate>
<gdacs:todate>Thu, 30 Jul 2015 06:00:00 GMT</gdacs:todate>
<dc:subject>TC2</dc:subject>
<guid isPermaLink="false">TC1000189</guid>
<geo:Point>
<geo:lat>22.5</geo:lat>
<geo:long>91.8</geo:long>
</geo:Point>
<georss:point>22.5 91.8</georss:point>
<gdacs:cap>http://www.gdacs.org/cap.aspx?eventtype=TC&eventid=1000189</gdacs:cap>
<gdacs:version>6</gdacs:version>
<gdacs:eventtype>TC</gdacs:eventtype>
<gdacs:alertlevel>Orange</gdacs:alertlevel>
<gdacs:eventname>TWO-15</gdacs:eventname>
<gdacs:eventid>1000189</gdacs:eventid>
<gdacs:episodeid>6</gdacs:episodeid>
<gdacs:calculationtype>tropicalcycloneonly</gdacs:calculationtype>
<gdacs:severity unit="km/h" value="74.0736">Tropical Storm (maximum wind speed of 74 km/h)</gdacs:severity>
<gdacs:population unit="Pop74" value="0">Population affected by Category 1 (120 km/h) wind speeds or higher is 0</gdacs:population>
<gdacs:vulnerability value="3">High</gdacs:vulnerability>
<gdacs:iso3 />
<gdacs:country>India, Bangladesh, Myanmar</gdacs:country>
<gdacs:glide />
<gdacs:mapimage />
<gdacs:maplink />
<gdacs:gtsimage>http://www.gdacs.org//images/satellite-icon.png</gdacs:gtsimage>
<gdacs:gtslink>http://www.gdacs.org/gts_list.aspx?eventid=1000189&eventtype=TC</gdacs:gtslink>
<gdacs:resources />
</item>
<item>
<title>Orange earthquake alert (Magnitude 5.1M, Depth:19.17km) in Pakistan 24/07/2015 20:59 UTC, 14494585 people within 100km.</title>
<description>On 7/24/2015 8:59:54 PM, an earthquake occurred in Pakistan potentially affecting 14494585 people within 100km. The earthquake had Magnitude 5.1M, Depth:19.17km.</description>
<enclosure type="image/png" length="1" url="http://dma.gdacs.org/saved/gdacs/eq/eq1089607_1.png" />
<link>http://www.gdacs.org/report.aspx?eventtype=EQ&eventid=1061263</link>
<pubDate>Fri, 24 Jul 2015 20:59:54 GMT</pubDate>
<gdacs:fromdate>Fri, 24 Jul 2015 20:59:54 GMT</gdacs:fromdate>