reliefweb_scraper 0.4.2 → 0.4.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,15 @@
1
+ ---
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ YjRiNWM0ZTc0ZDNmN2IxZWY4ZDM5MWYxNmNjYWIyYzM2OWY0MmE5Zg==
5
+ data.tar.gz: !binary |-
6
+ ZTVlMDE5NTkyYzBjYjVmOTU2MzdhZGNjMzdjMjJlNmFkNzA0YTcyZg==
7
+ SHA512:
8
+ metadata.gz: !binary |-
9
+ MGRmZDIxYWI2MjI5MzI1YTU3ZTZmYmNmOTQxYTZlMjQ5OWM0NDgxNmQ3ZTIz
10
+ YjZjZmQ2YWEwOTk2MjhiZGE0MGYxYjFhMTU5ZjNkYmQ0YWJiMjg2NmFlMWM5
11
+ ZDUwZjA2ODc1OTUyMjQ0NDQyOWI0MjBlMjhjMmZiOTI4ODZhYjQ=
12
+ data.tar.gz: !binary |-
13
+ ZDg1ODI2NGNmZGZlNGJlOGViMjEwZTAyMjhiOGRlNGM2ZmNiOTg2ZDM5NGQ0
14
+ NjU1YjcxOWJiZjlkMmU0OTE2MDkzMzhjNDdiYTA4NjhkNDUwYTUxZDE3ZDYy
15
+ N2VkZmIyNzBkM2FjNWYxODNjODM5NzdlZTdjNDc2YWY4YTMyNTQ=
data/.rspec CHANGED
@@ -1,4 +1,2 @@
1
1
  --colour
2
2
  --tty
3
- --drb
4
- --format documentation
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ ruby-1.9.3-p484
data/Gemfile CHANGED
@@ -1,10 +1,7 @@
1
- source 'http://rubygems.org'
2
- gem 'rake'
3
-
4
- gemspec
1
+ source 'https://rubygems.org'
5
2
 
6
3
  group :development, :test do
7
- gem 'ruby-debug', :platform => :mri_18
8
- gem 'ruby-debug19', :platform => :mri_19, :require => 'ruby-debug'
4
+ gem 'debugger' unless ENV["CI"]
9
5
  end
10
6
 
7
+ gemspec
data/Rakefile CHANGED
@@ -8,7 +8,7 @@ RSpec::Core::RakeTask.new(:spec) do |t|
8
8
  t.verbose = false
9
9
  t.rspec_opts = %w[--format progress]
10
10
  end
11
-
11
+ task :default => ['spec']
12
12
 
13
13
  namespace :featured_disasters do
14
14
  desc "Fetch and print a list of featured disasters from Reliefweb"
@@ -18,4 +18,3 @@ namespace :featured_disasters do
18
18
  ap Reliefweb.featured_disasters
19
19
  end
20
20
  end
21
-
@@ -3,7 +3,7 @@ $:.push File.expand_path("../lib", __FILE__)
3
3
 
4
4
  Gem::Specification.new do |s|
5
5
  s.name = "reliefweb_scraper"
6
- s.version = "0.4.2"
6
+ s.version = "0.4.3"
7
7
  s.platform = Gem::Platform::RUBY
8
8
  s.authors = ["Nathan Broadbent", "Stanley Lau", "Stephen Kenworthy"]
9
9
  s.email = ["itdept@crossroads.org.hk"]
@@ -16,11 +16,11 @@ Gem::Specification.new do |s|
16
16
  s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
17
17
  s.require_paths = ["lib"]
18
18
 
19
- s.add_dependency('nokogiri', ">= 1.5.5")
20
- s.add_dependency('hashie', "1.1.0")
19
+ s.add_dependency('nokogiri')
20
+ s.add_dependency('hashie')
21
+ s.add_dependency('rake')
21
22
 
22
- s.add_development_dependency("rspec", "~> 2.5.0")
23
- s.add_development_dependency("vcr", "~> 1.11.1")
24
- s.add_development_dependency("webmock", "~> 1.7.0")
25
- s.add_development_dependency("awesome_print", "~> 0.4.0")
23
+ s.add_development_dependency("rspec")
24
+ s.add_development_dependency("awesome_print")
25
+ s.add_development_dependency("debugger")
26
26
  end
@@ -2,21 +2,43 @@ require 'spec_helper'
2
2
  require 'reliefweb'
3
3
 
4
4
  describe Reliefweb do
5
- use_vcr_cassette 'reliefweb', :record => :new_episodes
5
+
6
+ let(:raw_xml) { File.open( File.join(File.expand_path("../../support/rss.xml", __FILE__)) ) }
7
+ let(:disasters) { Reliefweb.featured_disasters }
8
+ let(:disaster) { disasters.first }
9
+
10
+ before { Reliefweb.stub(:rss).and_return(raw_xml) }
6
11
 
7
12
  it 'should fetch a list of featured disasters' do
8
- disasters = Reliefweb.featured_disasters
9
- disasters.should_not be_empty
10
- disaster = disasters.first
11
- disaster.should be_a(Reliefweb::Disaster)
12
- disaster.url.should == "http://reliefweb.int/disaster/tc-2012-000036-mdg"
13
- disaster.country_code.should == "mdg, moz"
14
- disaster.date.should == Time.parse('Mon, 05 Mar 2012 00:00:00 +0000')
15
- disaster.glidenumber.should == 'TC-2012-000036-MDG'
16
- disaster.title.should == 'Tropical Storm Irina'
17
- disaster.current.should be_true
18
- disaster.disaster_type.should == "Tropical Cyclone, Flood, Violent Wind"
13
+ expect(disasters.count).to eql(30)
19
14
  end
20
15
 
21
- end
16
+ it "should parse url" do
17
+ expect(disaster.url).to eql("http://reliefweb.int/disaster/ff-2014-000009-tza")
18
+ end
22
19
 
20
+ it "should parse country code" do
21
+ expect(disaster.country_code).to eql("tza")
22
+ end
23
+
24
+ it "should parse date" do
25
+ expect(disaster.date).to eql( Time.parse('2014-02-01 08:00:00 +0800') )
26
+ end
27
+
28
+ it "should parse glide number" do
29
+ expect(disaster.glidenumber).to eql('FF-2014-000009-TZA')
30
+ end
31
+
32
+ it "should parse title" do
33
+ expect(disaster.title).to eql('Tanzania: Flash Floods')
34
+ end
35
+
36
+ it "should parse current flag" do
37
+ expect(disaster.current).to eql(true)
38
+ end
39
+
40
+ it "should parse disaster type" do
41
+ expect(disaster.disaster_type).to eql("Flood, Flash Flood")
42
+ end
43
+
44
+ end
data/spec/spec_helper.rb CHANGED
@@ -1,19 +1,6 @@
1
1
  require 'rubygems'
2
2
  require 'rspec'
3
- require 'vcr'
4
-
5
- VCR.config do |config|
6
- config.cassette_library_dir = File.dirname(__FILE__) + '/fixtures/vcr_cassettes'
7
- config.stub_with :webmock # or :fakeweb
8
- end
9
3
 
10
4
  RSpec.configure do |config|
11
- config.mock_with :rspec
12
5
 
13
- config.filter_run :focused => true
14
- config.run_all_when_everything_filtered = true
15
- config.alias_example_to :fit, :focused => true
16
-
17
- config.extend VCR::RSpec::Macros
18
6
  end
19
-
@@ -0,0 +1,1185 @@
1
+ <?xml version="1.0" encoding="utf-8" ?> <rss version="2.0" xml:base="http://reliefweb.int/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:reliefweb="http://reliefweb.int/reliefwebRssModule/"> <channel> <title>Disasters</title>
2
+ <link>http://reliefweb.int/</link>
3
+ <atom:link rel="self" href="http://reliefweb.int/disasters/rss.xml?sl=environment-disaster_listing" />
4
+ <item> <title>Tanzania: Flash Floods - Jan 2014</title>
5
+ <link>http://reliefweb.int/disaster/ff-2014-000009-tza</link>
6
+ <description>GLIDE number: FF-2014-000009-TZA&lt;br /&gt;
7
+ Disaster type: Flood, Flash Flood&lt;br /&gt;
8
+ Affected countries: United Republic of Tanzania&lt;br /&gt;
9
+ &lt;br /&gt;
10
+ During the night of 21 Jan 2014, heavy rains caused flash floods in Dumila/Dakawa area in Tanzania&#039;s Morogoro region, which displaced over 10,000 people and destroyed or damaged houses, roads, bridges, public buildings and crops. The majority of the displaced people live on safer/higher open grounds along the road, making emergency shelter a critical need. Most most of the affected villages have their boreholes contaminated with flood/muddy water. The water has started to recede in some areas, but many vulnerable households will remain in need of emergency assistance for some months to come. (&lt;a href=&quot;http://reliefweb.int/report/united-republic-tanzania/tanzania-flash-floods-emergency-plan-action-epoa-dref-operation-n&quot;&gt;IFRC, 1 Feb 2014&lt;/a&gt;)&lt;br /&gt;
11
+ &lt;br /&gt;
12
+ Date: 01 Feb 2014&lt;br /&gt;</description>
13
+ <guid isPermaLink="false">http://reliefweb.int/disaster/ff-2014-000009-tza</guid>
14
+ <pubDate>Sat, 01 Feb 2014 00:00:00 +0000</pubDate>
15
+ <source url="http://reliefweb.int/disasters/rss.xml?sl=environment-disaster_listing">Disasters</source>
16
+ <dc:title>Tanzania: Flash Floods - Jan 2014</dc:title>
17
+ <dc:description>GLIDE number: FF-2014-000009-TZA&lt;br /&gt;
18
+ Disaster type: Flood, Flash Flood&lt;br /&gt;
19
+ Affected countries: United Republic of Tanzania&lt;br /&gt;
20
+ &lt;br /&gt;
21
+ During the night of 21 Jan 2014, heavy rains caused flash floods in Dumila/Dakawa area in Tanzania&#039;s Morogoro region, which displaced over 10,000 people and destroyed or damaged houses, roads, bridges, public buildings and crops. The majority of the displaced people live on safer/higher open grounds along the road, making emergency shelter a critical need. Most most of the affected villages have their boreholes contaminated with flood/muddy water. The water has started to recede in some areas, but many vulnerable households will remain in need of emergency assistance for some months to come. (&lt;a href=&quot;http://reliefweb.int/report/united-republic-tanzania/tanzania-flash-floods-emergency-plan-action-epoa-dref-operation-n&quot;&gt;IFRC, 1 Feb 2014&lt;/a&gt;)&lt;br /&gt;
22
+ &lt;br /&gt;
23
+ Date: 01 Feb 2014&lt;br /&gt;</dc:description>
24
+ <dc:date>Sat, 01 Feb 2014 00:00:00 +0000</dc:date>
25
+ <reliefweb:country>United Republic of Tanzania</reliefweb:country>
26
+ <reliefweb:iso3>tza</reliefweb:iso3>
27
+ <reliefweb:disaster_type>Flood</reliefweb:disaster_type>
28
+ <reliefweb:disaster_type>Flash Flood</reliefweb:disaster_type>
29
+ <reliefweb:glide>FF-2014-000009-TZA</reliefweb:glide>
30
+ <reliefweb:current>1</reliefweb:current>
31
+ </item>
32
+ <item> <title>Bolivia: Floods and Landslides - Jan 2014</title>
33
+ <link>http://reliefweb.int/disaster/fl-2014-000008-bol</link>
34
+ <description>GLIDE number: FL-2014-000008-BOL&lt;br /&gt;
35
+ Disaster type: Flood, Severe Local Storm, Land Slide&lt;br /&gt;
36
+ Affected countries: Bolivia (Plurinational State of)&lt;br /&gt;
37
+ &lt;br /&gt;
38
+ Heavy rains in January 2014 triggered floods and landslides in several departments across the country, affecting at least 21,000 families. The Government declared a national state of emergency on 27 Jan (&lt;a href=&quot;http://reliefweb.int/report/bolivia-plurinational-state/gobierno-decreta-emergencia-nacional-por-desastres-naturales&quot;&gt;Gov, 27 Jan 2014&lt;/a&gt;).
39
+
40
+ Since October 2013, when the rainy season began, some 35 people have died (&lt;a href=&quot;http://reliefweb.int/report/bolivia-plurinational-state/redlac-weekly-note-emergencies-latin-america-caribbean-year-7&quot;&gt;OCHA, 27 Jan 2014&lt;/a&gt;).
41
+
42
+ By the beginning of February, around 150,000 people had been affected in just under 30% of the
43
+ country&#039;s municipalities (&lt;a href=&quot;http://reliefweb.int/report/bolivia-plurinational-state/redlac-weekly-note-emergencies-latin-america-caribbean-year-7-0&quot;&gt;OCHA, 3 Feb 2014&lt;/a&gt;).&lt;br /&gt;
44
+ &lt;br /&gt;
45
+ Date: 27 Jan 2014&lt;br /&gt;</description>
46
+ <guid isPermaLink="false">http://reliefweb.int/disaster/fl-2014-000008-bol</guid>
47
+ <pubDate>Mon, 27 Jan 2014 00:00:00 +0000</pubDate>
48
+ <source url="http://reliefweb.int/disasters/rss.xml?sl=environment-disaster_listing">Disasters</source>
49
+ <dc:title>Bolivia: Floods and Landslides - Jan 2014</dc:title>
50
+ <dc:description>GLIDE number: FL-2014-000008-BOL&lt;br /&gt;
51
+ Disaster type: Flood, Severe Local Storm, Land Slide&lt;br /&gt;
52
+ Affected countries: Bolivia (Plurinational State of)&lt;br /&gt;
53
+ &lt;br /&gt;
54
+ Heavy rains in January 2014 triggered floods and landslides in several departments across the country, affecting at least 21,000 families. The Government declared a national state of emergency on 27 Jan (&lt;a href=&quot;http://reliefweb.int/report/bolivia-plurinational-state/gobierno-decreta-emergencia-nacional-por-desastres-naturales&quot;&gt;Gov, 27 Jan 2014&lt;/a&gt;).
55
+
56
+ Since October 2013, when the rainy season began, some 35 people have died (&lt;a href=&quot;http://reliefweb.int/report/bolivia-plurinational-state/redlac-weekly-note-emergencies-latin-america-caribbean-year-7&quot;&gt;OCHA, 27 Jan 2014&lt;/a&gt;).
57
+
58
+ By the beginning of February, around 150,000 people had been affected in just under 30% of the
59
+ country&#039;s municipalities (&lt;a href=&quot;http://reliefweb.int/report/bolivia-plurinational-state/redlac-weekly-note-emergencies-latin-america-caribbean-year-7-0&quot;&gt;OCHA, 3 Feb 2014&lt;/a&gt;).&lt;br /&gt;
60
+ &lt;br /&gt;
61
+ Date: 27 Jan 2014&lt;br /&gt;</dc:description>
62
+ <dc:date>Mon, 27 Jan 2014 00:00:00 +0000</dc:date>
63
+ <reliefweb:country>Bolivia (Plurinational State of)</reliefweb:country>
64
+ <reliefweb:iso3>bol</reliefweb:iso3>
65
+ <reliefweb:disaster_type>Flood</reliefweb:disaster_type>
66
+ <reliefweb:disaster_type>Severe Local Storm</reliefweb:disaster_type>
67
+ <reliefweb:disaster_type>Land Slide</reliefweb:disaster_type>
68
+ <reliefweb:glide>FL-2014-000008-BOL</reliefweb:glide>
69
+ <reliefweb:current>1</reliefweb:current>
70
+ </item>
71
+ <item> <title>Indonesia: Mt. Sinabung Volcano - Jan 2014</title>
72
+ <link>http://reliefweb.int/disaster/vo-2013-000115-idn</link>
73
+ <description>GLIDE number: VO-2013-000115-IDN&lt;br /&gt;
74
+ Disaster type: Volcano&lt;br /&gt;
75
+ Affected countries: Indonesia&lt;br /&gt;
76
+ &lt;br /&gt;
77
+ Mt Sinabung volcano on Sumatra island in Indonesia was dormant for centuries until it became active in &lt;a href=&quot;http://reliefweb.int/disaster/vo-2010-000170-idn&quot;&gt;August and September 2010&lt;/a&gt;. In early September 2013, monitoring stations picked up increasing volcanic and tectonic tremors. Subdued volcanic activity continued for almost a month before Mt Sinabung eruptions intensified again in mid-October triggering evacuations of nearby communities. Intensified activity and an eruption on 24 Nov prompted the Government to increase the volcano’s alert status to Level 4, the highest alert level, and to evacuate all communities within a 5km radius of
78
+ the crater. As of the end of November, 17,030 people had been evacuated. (&lt;a href=&quot;http://reliefweb.int/report/indonesia/indonesia-humanitarian-bulletin-issue-05-september-november-2013&quot;&gt;OCHA, 31 Nov 2013&lt;/a&gt;)
79
+
80
+ The volcano continued to erupt periodically through December and January. As of 23 Jan 2014, 28,715 people from 33 villages were sheltering in 42 displacement centers. (&lt;a href=&quot;http://reliefweb.int/report/indonesia/indonesia-situation-updates-24-january-2014&quot;&gt;OCHA, 24 Jan 2014&lt;/a&gt;)
81
+
82
+ On 1 Feb, an eruption killed at least 14 people (&lt;a href=&quot;http://reliefweb.int/report/indonesia/school-children-among-11-killed-indonesia-volcano-eruption&quot;&gt;AFP, 1 Feb 2014&lt;/a&gt;).
83
+
84
+ Useful Links
85
+
86
+ &lt;ul&gt;
87
+ &lt;li&gt;&lt;a href=&quot;https://indonesia.humanitarianresponse.info/&quot;&gt;&lt;/a&gt; &lt;/li&gt;
88
+ &lt;/ul&gt;&lt;br /&gt;
89
+ &lt;br /&gt;
90
+ Date: 23 Jan 2014&lt;br /&gt;</description>
91
+ <guid isPermaLink="false">http://reliefweb.int/disaster/vo-2013-000115-idn</guid>
92
+ <pubDate>Thu, 23 Jan 2014 00:00:00 +0000</pubDate>
93
+ <source url="http://reliefweb.int/disasters/rss.xml?sl=environment-disaster_listing">Disasters</source>
94
+ <dc:title>Indonesia: Mt. Sinabung Volcano - Jan 2014</dc:title>
95
+ <dc:description>GLIDE number: VO-2013-000115-IDN&lt;br /&gt;
96
+ Disaster type: Volcano&lt;br /&gt;
97
+ Affected countries: Indonesia&lt;br /&gt;
98
+ &lt;br /&gt;
99
+ Mt Sinabung volcano on Sumatra island in Indonesia was dormant for centuries until it became active in &lt;a href=&quot;http://reliefweb.int/disaster/vo-2010-000170-idn&quot;&gt;August and September 2010&lt;/a&gt;. In early September 2013, monitoring stations picked up increasing volcanic and tectonic tremors. Subdued volcanic activity continued for almost a month before Mt Sinabung eruptions intensified again in mid-October triggering evacuations of nearby communities. Intensified activity and an eruption on 24 Nov prompted the Government to increase the volcano’s alert status to Level 4, the highest alert level, and to evacuate all communities within a 5km radius of
100
+ the crater. As of the end of November, 17,030 people had been evacuated. (&lt;a href=&quot;http://reliefweb.int/report/indonesia/indonesia-humanitarian-bulletin-issue-05-september-november-2013&quot;&gt;OCHA, 31 Nov 2013&lt;/a&gt;)
101
+
102
+ The volcano continued to erupt periodically through December and January. As of 23 Jan 2014, 28,715 people from 33 villages were sheltering in 42 displacement centers. (&lt;a href=&quot;http://reliefweb.int/report/indonesia/indonesia-situation-updates-24-january-2014&quot;&gt;OCHA, 24 Jan 2014&lt;/a&gt;)
103
+
104
+ On 1 Feb, an eruption killed at least 14 people (&lt;a href=&quot;http://reliefweb.int/report/indonesia/school-children-among-11-killed-indonesia-volcano-eruption&quot;&gt;AFP, 1 Feb 2014&lt;/a&gt;).
105
+
106
+ Useful Links
107
+
108
+ &lt;ul&gt;
109
+ &lt;li&gt;&lt;a href=&quot;https://indonesia.humanitarianresponse.info/&quot;&gt;&lt;/a&gt; &lt;/li&gt;
110
+ &lt;/ul&gt;&lt;br /&gt;
111
+ &lt;br /&gt;
112
+ Date: 23 Jan 2014&lt;br /&gt;</dc:description>
113
+ <dc:date>Thu, 23 Jan 2014 00:00:00 +0000</dc:date>
114
+ <reliefweb:country>Indonesia</reliefweb:country>
115
+ <reliefweb:iso3>idn</reliefweb:iso3>
116
+ <reliefweb:disaster_type>Volcano</reliefweb:disaster_type>
117
+ <reliefweb:glide>VO-2013-000115-IDN</reliefweb:glide>
118
+ <reliefweb:current>1</reliefweb:current>
119
+ </item>
120
+ <item> <title>Philippines: Floods and Landslides - Jan 2014</title>
121
+ <link>http://reliefweb.int/disaster/fl-2014-000006-phl</link>
122
+ <description>GLIDE number: FL-2014-000006-PHL&lt;br /&gt;
123
+ Disaster type: Flood, Tropical Cyclone, Flash Flood, Land Slide&lt;br /&gt;
124
+ Affected countries: Philippines&lt;br /&gt;
125
+ &lt;br /&gt;
126
+ On 10 Jan 2014, a low pressure area started to bring heavy rainfall in the southern Philippine, causing floods and landslides. On 17 Jan, it developed into Tropical Depression Lingling (locally known as Agaton) and maintained its strength until 20 Jan. As of 27 Jan, the Government reported 64 deaths and more than 1,148,000 people affected people in regions X, XI, XII, CARAGA and ARMM. The number of displaced people had decreased from 260,450 on 22 Jan to 108,991. (&lt;a href=&quot;http://reliefweb.int/report/philippines/ndrrmc-update-sitrep-28-re-effects-tropical-depression-agaton&quot;&gt;Govt, 27 Jan 2014&lt;/a&gt;)
127
+
128
+ On 1 Feb, Tropical storm Kajiki (locally known as Basyang) crossed over the central Philippines, causing floods and landslides in Cebu and Southern Leyte. Three people were killed and over 18,000 people took shelter in evacuation centers (&lt;a href=&quot;http://reliefweb.int/report/philippines/ndrrmc-sitrep-no-03-re-preparations-and-effects-tropical-storm-basyang-kajiki&quot;&gt;Govt, 1 Feb 2014&lt;/a&gt;).
129
+
130
+ Useful Links
131
+
132
+ &lt;ul&gt;
133
+ &lt;li&gt;&lt;strong&gt;Philippines&lt;/strong&gt;&lt;a href=&quot;http://philippines.humanitarianresponse.info/&quot;&gt;&lt;/a&gt;&lt;/li&gt;
134
+ &lt;li&gt;&lt;a href=&quot;http://www.ndrrmc.gov.ph/&quot;&gt;Philippines National Disaster Risk Reduction &amp;amp; Management Council (NDRRMC)&lt;/a&gt;&lt;/li&gt;
135
+ &lt;/ul&gt;&lt;br /&gt;
136
+ &lt;br /&gt;
137
+ Date: 17 Jan 2014&lt;br /&gt;</description>
138
+ <guid isPermaLink="false">http://reliefweb.int/disaster/fl-2014-000006-phl</guid>
139
+ <pubDate>Fri, 17 Jan 2014 00:00:00 +0000</pubDate>
140
+ <source url="http://reliefweb.int/disasters/rss.xml?sl=environment-disaster_listing">Disasters</source>
141
+ <dc:title>Philippines: Floods and Landslides - Jan 2014</dc:title>
142
+ <dc:description>GLIDE number: FL-2014-000006-PHL&lt;br /&gt;
143
+ Disaster type: Flood, Tropical Cyclone, Flash Flood, Land Slide&lt;br /&gt;
144
+ Affected countries: Philippines&lt;br /&gt;
145
+ &lt;br /&gt;
146
+ On 10 Jan 2014, a low pressure area started to bring heavy rainfall in the southern Philippine, causing floods and landslides. On 17 Jan, it developed into Tropical Depression Lingling (locally known as Agaton) and maintained its strength until 20 Jan. As of 27 Jan, the Government reported 64 deaths and more than 1,148,000 people affected people in regions X, XI, XII, CARAGA and ARMM. The number of displaced people had decreased from 260,450 on 22 Jan to 108,991. (&lt;a href=&quot;http://reliefweb.int/report/philippines/ndrrmc-update-sitrep-28-re-effects-tropical-depression-agaton&quot;&gt;Govt, 27 Jan 2014&lt;/a&gt;)
147
+
148
+ On 1 Feb, Tropical storm Kajiki (locally known as Basyang) crossed over the central Philippines, causing floods and landslides in Cebu and Southern Leyte. Three people were killed and over 18,000 people took shelter in evacuation centers (&lt;a href=&quot;http://reliefweb.int/report/philippines/ndrrmc-sitrep-no-03-re-preparations-and-effects-tropical-storm-basyang-kajiki&quot;&gt;Govt, 1 Feb 2014&lt;/a&gt;).
149
+
150
+ Useful Links
151
+
152
+ &lt;ul&gt;
153
+ &lt;li&gt;&lt;strong&gt;Philippines&lt;/strong&gt;&lt;a href=&quot;http://philippines.humanitarianresponse.info/&quot;&gt;&lt;/a&gt;&lt;/li&gt;
154
+ &lt;li&gt;&lt;a href=&quot;http://www.ndrrmc.gov.ph/&quot;&gt;Philippines National Disaster Risk Reduction &amp;amp; Management Council (NDRRMC)&lt;/a&gt;&lt;/li&gt;
155
+ &lt;/ul&gt;&lt;br /&gt;
156
+ &lt;br /&gt;
157
+ Date: 17 Jan 2014&lt;br /&gt;</dc:description>
158
+ <dc:date>Fri, 17 Jan 2014 00:00:00 +0000</dc:date>
159
+ <reliefweb:country>Philippines</reliefweb:country>
160
+ <reliefweb:iso3>phl</reliefweb:iso3>
161
+ <reliefweb:disaster_type>Flood</reliefweb:disaster_type>
162
+ <reliefweb:disaster_type>Tropical Cyclone</reliefweb:disaster_type>
163
+ <reliefweb:disaster_type>Flash Flood</reliefweb:disaster_type>
164
+ <reliefweb:disaster_type>Land Slide</reliefweb:disaster_type>
165
+ <reliefweb:glide>FL-2014-000006-PHL</reliefweb:glide>
166
+ <reliefweb:current>1</reliefweb:current>
167
+ </item>
168
+ <item> <title>Colombia: Earthquake and Floods - Jan 2014</title>
169
+ <link>http://reliefweb.int/disaster/fl-2014-000004-col</link>
170
+ <description>GLIDE number: FL-2014-000004-COL&lt;br /&gt;
171
+ Disaster type: Flood, Flash Flood, Earthquake&lt;br /&gt;
172
+ Affected countries: Colombia&lt;br /&gt;
173
+ &lt;br /&gt;
174
+ An earthquake that struck Sipí in Colombia&#039;s western Chocó department on 4 Jan 2014 damaged 121 homes in the municipality. Two days later, on 6 Jan, the San Agustín and Garrapatas overflowed in the same area, possibly related to the earlier earthquake. The flooding affected almost 9,000 people and heavily damaged at least 150 homes, which are at risk of additional flooding and need to be relocated. Health, water and hygiene and education infrastructure sustained heavy damage as well. Ongoing armed conflict in the region makes humanitarian access difficult. A Multi-Cluster Initial Rapid Assessment mission is planned for 21 Jan. (&lt;a href=&quot;http://reliefweb.int/report/colombia/colombia-afectaci-n-por-sismo-e-inundaciones-en-sip-choc-informe-de-situaci-n-no-1&quot;&gt;OCHA, 14 Jan 2014&lt;/a&gt;)
175
+
176
+ Useful Links
177
+
178
+ &lt;ul&gt;
179
+ &lt;li&gt;&lt;a href=&quot;http://www.salahumanitaria.co/&quot;&gt;&lt;/a&gt;&lt;/li&gt;
180
+ &lt;/ul&gt;&lt;br /&gt;
181
+ &lt;br /&gt;
182
+ Date: 14 Jan 2014&lt;br /&gt;</description>
183
+ <guid isPermaLink="false">http://reliefweb.int/disaster/fl-2014-000004-col</guid>
184
+ <pubDate>Tue, 14 Jan 2014 00:00:00 +0000</pubDate>
185
+ <source url="http://reliefweb.int/disasters/rss.xml?sl=environment-disaster_listing">Disasters</source>
186
+ <dc:title>Colombia: Earthquake and Floods - Jan 2014</dc:title>
187
+ <dc:description>GLIDE number: FL-2014-000004-COL&lt;br /&gt;
188
+ Disaster type: Flood, Flash Flood, Earthquake&lt;br /&gt;
189
+ Affected countries: Colombia&lt;br /&gt;
190
+ &lt;br /&gt;
191
+ An earthquake that struck Sipí in Colombia&#039;s western Chocó department on 4 Jan 2014 damaged 121 homes in the municipality. Two days later, on 6 Jan, the San Agustín and Garrapatas overflowed in the same area, possibly related to the earlier earthquake. The flooding affected almost 9,000 people and heavily damaged at least 150 homes, which are at risk of additional flooding and need to be relocated. Health, water and hygiene and education infrastructure sustained heavy damage as well. Ongoing armed conflict in the region makes humanitarian access difficult. A Multi-Cluster Initial Rapid Assessment mission is planned for 21 Jan. (&lt;a href=&quot;http://reliefweb.int/report/colombia/colombia-afectaci-n-por-sismo-e-inundaciones-en-sip-choc-informe-de-situaci-n-no-1&quot;&gt;OCHA, 14 Jan 2014&lt;/a&gt;)
192
+
193
+ Useful Links
194
+
195
+ &lt;ul&gt;
196
+ &lt;li&gt;&lt;a href=&quot;http://www.salahumanitaria.co/&quot;&gt;&lt;/a&gt;&lt;/li&gt;
197
+ &lt;/ul&gt;&lt;br /&gt;
198
+ &lt;br /&gt;
199
+ Date: 14 Jan 2014&lt;br /&gt;</dc:description>
200
+ <dc:date>Tue, 14 Jan 2014 00:00:00 +0000</dc:date>
201
+ <reliefweb:country>Colombia</reliefweb:country>
202
+ <reliefweb:iso3>col</reliefweb:iso3>
203
+ <reliefweb:disaster_type>Flood</reliefweb:disaster_type>
204
+ <reliefweb:disaster_type>Flash Flood</reliefweb:disaster_type>
205
+ <reliefweb:disaster_type>Earthquake</reliefweb:disaster_type>
206
+ <reliefweb:glide>FL-2014-000004-COL</reliefweb:glide>
207
+ <reliefweb:current>1</reliefweb:current>
208
+ </item>
209
+ <item> <title>Tropical Cyclone Ian - Jan 2014</title>
210
+ <link>http://reliefweb.int/disaster/tc-2014-000003-ton</link>
211
+ <description>GLIDE number: TC-2014-000003-TON&lt;br /&gt;
212
+ Disaster type: Tropical Cyclone&lt;br /&gt;
213
+ Affected countries: Tonga&lt;br /&gt;
214
+ &lt;br /&gt;
215
+ Tropical Cyclone Ian passed east of Tonga&#039;s Vava’u group (population 15,000) in the morning of 11 Jan 2014 before the eye passed directly over Ha&#039;apai (population 6,600) in the afternoon. The Prime Minister declared a state of emergency for Vava’u and Ha’apai the same day. There was one confirmed death, 14 injuries, and extensive damage to houses, infrastructure and agriculture across the northeast islands of Ha’apai. Over 50 per cent of the 1,130 affected buildings in Ha’apai were destroyed, with 34 per cent suffering major damage. Around 2,335 people sought shelter in 51 formal and informal shelters. On 21 Jan, the Government accepted international assistance from the Pacific Humanitarian Team. (&lt;a href=&quot;http://reliefweb.int/report/tonga/tonga-tropical-cyclone-ian-situation-report-no-3-23-january-2014&quot;&gt;OCHA, 23 Jan 2014&lt;/a&gt;)
216
+
217
+ The Government of Tonga developed a &lt;a href=&quot;http://reliefweb.int/report/tonga/tropical-cyclone-ian-response-plan&quot;&gt;Response Plan&lt;/a&gt; with its humanitarian and development partners with a three month time frame. Based on the needs identified, priority areas of the response are in shelter, water, food security, education and safety and protection. The plan aims to facilitate coordination of the humanitarian response and early recovery by documenting cluster response plans and identifying gaps/requirements for response. The immediate requirements over the next three months are TOP 28.4 million of which TOP 23.7 million remains unmet. The total requirements over the next 12-18 months including immediate, recovery and initial reconstruction needs identified are TOP 90.2 million of which TOP 83.4 million remains unmet.
218
+
219
+ Useful links
220
+
221
+ &lt;ul&gt;
222
+ &lt;li&gt;&lt;a href=&quot;http://www.phtpacific.org/disaster-emergency/2014-01-tropical-cyclone-ian&quot;&gt;Pacific Humanitarian Team&lt;/a&gt;&lt;/li&gt;
223
+ &lt;/ul&gt;&lt;br /&gt;
224
+ &lt;br /&gt;
225
+ Date: 11 Jan 2014&lt;br /&gt;</description>
226
+ <guid isPermaLink="false">http://reliefweb.int/disaster/tc-2014-000003-ton</guid>
227
+ <pubDate>Sat, 11 Jan 2014 00:00:00 +0000</pubDate>
228
+ <source url="http://reliefweb.int/disasters/rss.xml?sl=environment-disaster_listing">Disasters</source>
229
+ <dc:title>Tropical Cyclone Ian - Jan 2014</dc:title>
230
+ <dc:description>GLIDE number: TC-2014-000003-TON&lt;br /&gt;
231
+ Disaster type: Tropical Cyclone&lt;br /&gt;
232
+ Affected countries: Tonga&lt;br /&gt;
233
+ &lt;br /&gt;
234
+ Tropical Cyclone Ian passed east of Tonga&#039;s Vava’u group (population 15,000) in the morning of 11 Jan 2014 before the eye passed directly over Ha&#039;apai (population 6,600) in the afternoon. The Prime Minister declared a state of emergency for Vava’u and Ha’apai the same day. There was one confirmed death, 14 injuries, and extensive damage to houses, infrastructure and agriculture across the northeast islands of Ha’apai. Over 50 per cent of the 1,130 affected buildings in Ha’apai were destroyed, with 34 per cent suffering major damage. Around 2,335 people sought shelter in 51 formal and informal shelters. On 21 Jan, the Government accepted international assistance from the Pacific Humanitarian Team. (&lt;a href=&quot;http://reliefweb.int/report/tonga/tonga-tropical-cyclone-ian-situation-report-no-3-23-january-2014&quot;&gt;OCHA, 23 Jan 2014&lt;/a&gt;)
235
+
236
+ The Government of Tonga developed a &lt;a href=&quot;http://reliefweb.int/report/tonga/tropical-cyclone-ian-response-plan&quot;&gt;Response Plan&lt;/a&gt; with its humanitarian and development partners with a three month time frame. Based on the needs identified, priority areas of the response are in shelter, water, food security, education and safety and protection. The plan aims to facilitate coordination of the humanitarian response and early recovery by documenting cluster response plans and identifying gaps/requirements for response. The immediate requirements over the next three months are TOP 28.4 million of which TOP 23.7 million remains unmet. The total requirements over the next 12-18 months including immediate, recovery and initial reconstruction needs identified are TOP 90.2 million of which TOP 83.4 million remains unmet.
237
+
238
+ Useful links
239
+
240
+ &lt;ul&gt;
241
+ &lt;li&gt;&lt;a href=&quot;http://www.phtpacific.org/disaster-emergency/2014-01-tropical-cyclone-ian&quot;&gt;Pacific Humanitarian Team&lt;/a&gt;&lt;/li&gt;
242
+ &lt;/ul&gt;&lt;br /&gt;
243
+ &lt;br /&gt;
244
+ Date: 11 Jan 2014&lt;br /&gt;</dc:description>
245
+ <dc:date>Sat, 11 Jan 2014 00:00:00 +0000</dc:date>
246
+ <reliefweb:country>Tonga</reliefweb:country>
247
+ <reliefweb:iso3>ton</reliefweb:iso3>
248
+ <reliefweb:disaster_type>Tropical Cyclone</reliefweb:disaster_type>
249
+ <reliefweb:glide>TC-2014-000003-TON</reliefweb:glide>
250
+ <reliefweb:current>1</reliefweb:current>
251
+ </item>
252
+ <item> <title>El Salvador: Chaparrastique Volcano - Dec 2013</title>
253
+ <link>http://reliefweb.int/disaster/vo-2013-000160-slv</link>
254
+ <description>GLIDE number: VO-2013-000160-SLV&lt;br /&gt;
255
+ Disaster type: Volcano&lt;br /&gt;
256
+ Affected countries: El Salvador&lt;br /&gt;
257
+ &lt;br /&gt;
258
+ El Salvador&#039;s Chaparrastique volcano erupted on 29 Dec 2013, spewing a column of ash that rose
259
+ more than 5 km above the volcano. Falling ash affected the population living on the volcano&#039;s western side, where 2,300 people were relocated to 16 collective centers set up by the authorities while an unknown number moved to homes of relatives living in safe areas. Ash and gas emissions continue, and authorities will consider it a risk situation until sulfur dioxide emissions show a significant and sustained decrease. (&lt;a href=&quot;http://reliefweb.int/report/el-salvador/el-salvador-volcanic-eruption-emergency-plan-action-epoa-dref-operation-mdrsv006&quot;&gt;IFRC, 6 Jan 2014&lt;/a&gt;)&lt;br /&gt;
260
+ &lt;br /&gt;
261
+ Date: 29 Dec 2013&lt;br /&gt;</description>
262
+ <guid isPermaLink="false">http://reliefweb.int/disaster/vo-2013-000160-slv</guid>
263
+ <pubDate>Sun, 29 Dec 2013 00:00:00 +0000</pubDate>
264
+ <source url="http://reliefweb.int/disasters/rss.xml?sl=environment-disaster_listing">Disasters</source>
265
+ <dc:title>El Salvador: Chaparrastique Volcano - Dec 2013</dc:title>
266
+ <dc:description>GLIDE number: VO-2013-000160-SLV&lt;br /&gt;
267
+ Disaster type: Volcano&lt;br /&gt;
268
+ Affected countries: El Salvador&lt;br /&gt;
269
+ &lt;br /&gt;
270
+ El Salvador&#039;s Chaparrastique volcano erupted on 29 Dec 2013, spewing a column of ash that rose
271
+ more than 5 km above the volcano. Falling ash affected the population living on the volcano&#039;s western side, where 2,300 people were relocated to 16 collective centers set up by the authorities while an unknown number moved to homes of relatives living in safe areas. Ash and gas emissions continue, and authorities will consider it a risk situation until sulfur dioxide emissions show a significant and sustained decrease. (&lt;a href=&quot;http://reliefweb.int/report/el-salvador/el-salvador-volcanic-eruption-emergency-plan-action-epoa-dref-operation-mdrsv006&quot;&gt;IFRC, 6 Jan 2014&lt;/a&gt;)&lt;br /&gt;
272
+ &lt;br /&gt;
273
+ Date: 29 Dec 2013&lt;br /&gt;</dc:description>
274
+ <dc:date>Sun, 29 Dec 2013 00:00:00 +0000</dc:date>
275
+ <reliefweb:country>El Salvador</reliefweb:country>
276
+ <reliefweb:iso3>slv</reliefweb:iso3>
277
+ <reliefweb:disaster_type>Volcano</reliefweb:disaster_type>
278
+ <reliefweb:glide>VO-2013-000160-SLV</reliefweb:glide>
279
+ <reliefweb:current>1</reliefweb:current>
280
+ </item>
281
+ <item> <title>Eastern Caribbean: Floods and Landslides - Dec 2013</title>
282
+ <link>http://reliefweb.int/disaster/fl-2013-000159-vct</link>
283
+ <description>GLIDE number: FL-2013-000159-VCT&lt;br /&gt;
284
+ Disaster type: Flood, Flash Flood, Land Slide&lt;br /&gt;
285
+ Affected countries: Dominica, Saint Lucia, Saint Vincent and the Grenadines&lt;br /&gt;
286
+ &lt;br /&gt;
287
+ Severe rains and high winds due to a low level trough system caused floods and landslides in St. Vincent and the Grenadines, Saint Lucia and Dominica from 23-25 Dec 2013. St. Vincent and the Grenadines reported nine deaths and over five hundred persons affected, of which 237 were provided with emergency shelter. According to preliminary reports from initial assessments 30 homes were destroyed and a further 135 damaged. Assessments are on-going and these numbers are expected to increase. The Government declared a level two disaster. A level two disaster is declared when the damage is severe and for which local resources and response capacity are limited and specialized external assistance is requested. In Saint Lucia, six people were killed, and Dominica reported 185 people affected. (&lt;a href=&quot;http://reliefweb.int/report/saint-vincent-and-grenadines/situation-report-4-deadly-low-level-trough-system-impacts&quot;&gt;CDEMA, 3 Jan 2014&lt;/a&gt;)
288
+
289
+ OCHA approved emergency funds for Saint Lucia ($35,000), Dominica ($15,000) and Saint Vincent and the Grenadines ($35,000). The funds will support national authorities in their efforts to attend to the immediate needs faced by the health sector and for the provision of medical supplies, food and cleaning supplies. Other humanitarian actors have also approved funds. (&lt;a href=&quot;http://reliefweb.int/report/bolivia/redlac-weekly-note-emergencies-latin-america-caribbean-year-7-volume-339&quot;&gt;OCHA, 6 Jan 2014&lt;/a&gt;)
290
+
291
+ Useful links
292
+
293
+ &lt;ul&gt;
294
+ &lt;li&gt;&lt;a href=&quot;http://www.cdema.org/&quot;&gt;Caribbean Disaster Emergency Management Agency&lt;/a&gt;&lt;/li&gt;
295
+ &lt;/ul&gt;&lt;br /&gt;
296
+ &lt;br /&gt;
297
+ Date: 25 Dec 2013&lt;br /&gt;</description>
298
+ <guid isPermaLink="false">http://reliefweb.int/disaster/fl-2013-000159-vct</guid>
299
+ <pubDate>Wed, 25 Dec 2013 00:00:00 +0000</pubDate>
300
+ <source url="http://reliefweb.int/disasters/rss.xml?sl=environment-disaster_listing">Disasters</source>
301
+ <dc:title>Eastern Caribbean: Floods and Landslides - Dec 2013</dc:title>
302
+ <dc:description>GLIDE number: FL-2013-000159-VCT&lt;br /&gt;
303
+ Disaster type: Flood, Flash Flood, Land Slide&lt;br /&gt;
304
+ Affected countries: Dominica, Saint Lucia, Saint Vincent and the Grenadines&lt;br /&gt;
305
+ &lt;br /&gt;
306
+ Severe rains and high winds due to a low level trough system caused floods and landslides in St. Vincent and the Grenadines, Saint Lucia and Dominica from 23-25 Dec 2013. St. Vincent and the Grenadines reported nine deaths and over five hundred persons affected, of which 237 were provided with emergency shelter. According to preliminary reports from initial assessments 30 homes were destroyed and a further 135 damaged. Assessments are on-going and these numbers are expected to increase. The Government declared a level two disaster. A level two disaster is declared when the damage is severe and for which local resources and response capacity are limited and specialized external assistance is requested. In Saint Lucia, six people were killed, and Dominica reported 185 people affected. (&lt;a href=&quot;http://reliefweb.int/report/saint-vincent-and-grenadines/situation-report-4-deadly-low-level-trough-system-impacts&quot;&gt;CDEMA, 3 Jan 2014&lt;/a&gt;)
307
+
308
+ OCHA approved emergency funds for Saint Lucia ($35,000), Dominica ($15,000) and Saint Vincent and the Grenadines ($35,000). The funds will support national authorities in their efforts to attend to the immediate needs faced by the health sector and for the provision of medical supplies, food and cleaning supplies. Other humanitarian actors have also approved funds. (&lt;a href=&quot;http://reliefweb.int/report/bolivia/redlac-weekly-note-emergencies-latin-america-caribbean-year-7-volume-339&quot;&gt;OCHA, 6 Jan 2014&lt;/a&gt;)
309
+
310
+ Useful links
311
+
312
+ &lt;ul&gt;
313
+ &lt;li&gt;&lt;a href=&quot;http://www.cdema.org/&quot;&gt;Caribbean Disaster Emergency Management Agency&lt;/a&gt;&lt;/li&gt;
314
+ &lt;/ul&gt;&lt;br /&gt;
315
+ &lt;br /&gt;
316
+ Date: 25 Dec 2013&lt;br /&gt;</dc:description>
317
+ <dc:date>Wed, 25 Dec 2013 00:00:00 +0000</dc:date>
318
+ <reliefweb:country>Dominica</reliefweb:country>
319
+ <reliefweb:country>Saint Lucia</reliefweb:country>
320
+ <reliefweb:country>Saint Vincent and the Grenadines</reliefweb:country>
321
+ <reliefweb:iso3>dma</reliefweb:iso3>
322
+ <reliefweb:iso3>lca</reliefweb:iso3>
323
+ <reliefweb:iso3>vct</reliefweb:iso3>
324
+ <reliefweb:disaster_type>Flood</reliefweb:disaster_type>
325
+ <reliefweb:disaster_type>Flash Flood</reliefweb:disaster_type>
326
+ <reliefweb:disaster_type>Land Slide</reliefweb:disaster_type>
327
+ <reliefweb:glide>FL-2013-000159-VCT</reliefweb:glide>
328
+ <reliefweb:current>1</reliefweb:current>
329
+ </item>
330
+ <item> <title>Brazil: Floods and Landslides - Dec 2013</title>
331
+ <link>http://reliefweb.int/disaster/fl-2013-000157-bra</link>
332
+ <description>GLIDE number: FL-2013-000157-BRA&lt;br /&gt;
333
+ Disaster type: Flood, Flash Flood, Land Slide&lt;br /&gt;
334
+ Affected countries: Brazil&lt;br /&gt;
335
+ &lt;br /&gt;
336
+ Heavy seasonal rainfall started to affect parts of eastern Brazil on 7 Dec 2013, causing floods and landslides.
337
+
338
+ By 16 Dec, 15 people had been killed in the southeastern states of Río de Janeiro and Bahía (&lt;a href=&quot;http://reliefweb.int/report/bolivia/redlac-weekly-note-emergencies-latin-america-caribbean-year-6-volume-336&quot;&gt;OCHA, 16 Dec 2013&lt;/a&gt;).
339
+
340
+ By 23 Dec, an emergency had been declared in the southeastern State of Espíritu Santo due to flooding and landslides. The army mobilized humanitarian assistance in the form of blankets, cushions and food stuffs to the most affected areas. (&lt;a href=&quot;http://reliefweb.int/report/guatemala/redlac-weekly-note-emergencies-latin-america-caribbean-year-6-volume-337&quot;&gt;OCHA, 23 Dec 2013&lt;/a&gt;) At least 44 people have died and more than 60,000 have been left homeless, officials said on 26 Dec (&lt;a href=&quot;http://reliefweb.int/report/brazil/least-44-dead-brazils-flooding-and-landslides&quot;&gt;AFP, 26 Dec 2013&lt;/a&gt;).&lt;br /&gt;
341
+ &lt;br /&gt;
342
+ Date: 23 Dec 2013&lt;br /&gt;</description>
343
+ <guid isPermaLink="false">http://reliefweb.int/disaster/fl-2013-000157-bra</guid>
344
+ <pubDate>Mon, 23 Dec 2013 00:00:00 +0000</pubDate>
345
+ <source url="http://reliefweb.int/disasters/rss.xml?sl=environment-disaster_listing">Disasters</source>
346
+ <dc:title>Brazil: Floods and Landslides - Dec 2013</dc:title>
347
+ <dc:description>GLIDE number: FL-2013-000157-BRA&lt;br /&gt;
348
+ Disaster type: Flood, Flash Flood, Land Slide&lt;br /&gt;
349
+ Affected countries: Brazil&lt;br /&gt;
350
+ &lt;br /&gt;
351
+ Heavy seasonal rainfall started to affect parts of eastern Brazil on 7 Dec 2013, causing floods and landslides.
352
+
353
+ By 16 Dec, 15 people had been killed in the southeastern states of Río de Janeiro and Bahía (&lt;a href=&quot;http://reliefweb.int/report/bolivia/redlac-weekly-note-emergencies-latin-america-caribbean-year-6-volume-336&quot;&gt;OCHA, 16 Dec 2013&lt;/a&gt;).
354
+
355
+ By 23 Dec, an emergency had been declared in the southeastern State of Espíritu Santo due to flooding and landslides. The army mobilized humanitarian assistance in the form of blankets, cushions and food stuffs to the most affected areas. (&lt;a href=&quot;http://reliefweb.int/report/guatemala/redlac-weekly-note-emergencies-latin-america-caribbean-year-6-volume-337&quot;&gt;OCHA, 23 Dec 2013&lt;/a&gt;) At least 44 people have died and more than 60,000 have been left homeless, officials said on 26 Dec (&lt;a href=&quot;http://reliefweb.int/report/brazil/least-44-dead-brazils-flooding-and-landslides&quot;&gt;AFP, 26 Dec 2013&lt;/a&gt;).&lt;br /&gt;
356
+ &lt;br /&gt;
357
+ Date: 23 Dec 2013&lt;br /&gt;</dc:description>
358
+ <dc:date>Mon, 23 Dec 2013 00:00:00 +0000</dc:date>
359
+ <reliefweb:country>Brazil</reliefweb:country>
360
+ <reliefweb:iso3>bra</reliefweb:iso3>
361
+ <reliefweb:disaster_type>Flood</reliefweb:disaster_type>
362
+ <reliefweb:disaster_type>Flash Flood</reliefweb:disaster_type>
363
+ <reliefweb:disaster_type>Land Slide</reliefweb:disaster_type>
364
+ <reliefweb:glide>FL-2013-000157-BRA</reliefweb:glide>
365
+ <reliefweb:current>1</reliefweb:current>
366
+ </item>
367
+ <item> <title>occupied Palestinian territory: Cold Wave - Dec 2013</title>
368
+ <link>http://reliefweb.int/disaster/cw-2013-000153-pse</link>
369
+ <description>GLIDE number: CW-2013-000153-PSE&lt;br /&gt;
370
+ Disaster type: Flood, Cold Wave, Severe Local Storm&lt;br /&gt;
371
+ Affected countries: occupied Palestinian territory&lt;br /&gt;
372
+ &lt;br /&gt;
373
+ The announced heavy rain fall and snow storms hit the West Bank and Gaza on 10 December 2013 and are still affecting the Palestinian population in West Bank and Palestine. The heavy rain and snow has generated floods in several parts of Palestine and thousands of families have been evacuated from their houses. The extreme weather conditions has also caused several deaths, including a baby in Gaza who was reported dead, as the family’s home was inundated. (&lt;a href=&quot;http://reliefweb.int/report/occupied-palestinian-territory/palestine-extreme-winter-conditions-dref-operation-n-mdrps008&quot;&gt;IFRC, 16 Dec 2013&lt;/a&gt;)
374
+
375
+ Useful Links
376
+
377
+ &lt;ul&gt;
378
+ &lt;li&gt;&lt;a href=&quot;http://www.ochaopt.org/content.aspx?id=1010267&quot;&gt;OCHA oPt: Winter Storm Online System&lt;/a&gt;&lt;/li&gt;
379
+ &lt;li&gt;&lt;a href=&quot;http://www.palestinercs.org/en/&quot;&gt;Palestinian Red Crescent Society&lt;/a&gt;&lt;/li&gt;
380
+ &lt;/ul&gt;&lt;br /&gt;
381
+ &lt;br /&gt;
382
+ Date: 10 Dec 2013&lt;br /&gt;</description>
383
+ <guid isPermaLink="false">http://reliefweb.int/disaster/cw-2013-000153-pse</guid>
384
+ <pubDate>Tue, 10 Dec 2013 00:00:00 +0000</pubDate>
385
+ <source url="http://reliefweb.int/disasters/rss.xml?sl=environment-disaster_listing">Disasters</source>
386
+ <dc:title>occupied Palestinian territory: Cold Wave - Dec 2013</dc:title>
387
+ <dc:description>GLIDE number: CW-2013-000153-PSE&lt;br /&gt;
388
+ Disaster type: Flood, Cold Wave, Severe Local Storm&lt;br /&gt;
389
+ Affected countries: occupied Palestinian territory&lt;br /&gt;
390
+ &lt;br /&gt;
391
+ The announced heavy rain fall and snow storms hit the West Bank and Gaza on 10 December 2013 and are still affecting the Palestinian population in West Bank and Palestine. The heavy rain and snow has generated floods in several parts of Palestine and thousands of families have been evacuated from their houses. The extreme weather conditions has also caused several deaths, including a baby in Gaza who was reported dead, as the family’s home was inundated. (&lt;a href=&quot;http://reliefweb.int/report/occupied-palestinian-territory/palestine-extreme-winter-conditions-dref-operation-n-mdrps008&quot;&gt;IFRC, 16 Dec 2013&lt;/a&gt;)
392
+
393
+ Useful Links
394
+
395
+ &lt;ul&gt;
396
+ &lt;li&gt;&lt;a href=&quot;http://www.ochaopt.org/content.aspx?id=1010267&quot;&gt;OCHA oPt: Winter Storm Online System&lt;/a&gt;&lt;/li&gt;
397
+ &lt;li&gt;&lt;a href=&quot;http://www.palestinercs.org/en/&quot;&gt;Palestinian Red Crescent Society&lt;/a&gt;&lt;/li&gt;
398
+ &lt;/ul&gt;&lt;br /&gt;
399
+ &lt;br /&gt;
400
+ Date: 10 Dec 2013&lt;br /&gt;</dc:description>
401
+ <dc:date>Tue, 10 Dec 2013 00:00:00 +0000</dc:date>
402
+ <reliefweb:country>occupied Palestinian territory</reliefweb:country>
403
+ <reliefweb:iso3>pse</reliefweb:iso3>
404
+ <reliefweb:disaster_type>Flood</reliefweb:disaster_type>
405
+ <reliefweb:disaster_type>Cold Wave</reliefweb:disaster_type>
406
+ <reliefweb:disaster_type>Severe Local Storm</reliefweb:disaster_type>
407
+ <reliefweb:glide>CW-2013-000153-PSE</reliefweb:glide>
408
+ <reliefweb:current>1</reliefweb:current>
409
+ </item>
410
+ <item> <title>Indonesia: Floods and Landslides - Dec 2013</title>
411
+ <link>http://reliefweb.int/disaster/fl-2014-000005-idn</link>
412
+ <description>GLIDE number: FL-2014-000005-IDN&lt;br /&gt;
413
+ Disaster type: Flood, Land Slide&lt;br /&gt;
414
+ Affected countries: Indonesia&lt;br /&gt;
415
+ &lt;br /&gt;
416
+ After a prolonged 2012-2013 wet season that continued into August, Indonesia experienced a brief dry season which transitioned into the 2013-2014 wet season in most parts of the country by the end of October. Floods and landslides killed 35 people in November and affected almost 20,000. (&lt;a href=&quot;http://reliefweb.int/report/indonesia/indonesia-humanitarian-bulletin-issue-05-september-november-2013&quot;&gt;OCHA, 30 Nov 2013&lt;/a&gt;)
417
+
418
+ Heavy rains continued to trigger floods and landslides in December and January. At the end of December, around 18,000 people had to leave their homes after two rivers burst their banks and flooded thousands of houses on Sumatra island (&lt;a href=&quot;http://reliefweb.int/report/indonesia/flood-displaces-18000-indonesia&quot;&gt;AFP, 30 Dec 2013&lt;/a&gt;).
419
+
420
+ As of 21 Jan 2014 in Jakarta and outlying areas, approximately 134,662 persons or 38,672 households in 100 urban villages are directly affected by floods, with 12 casualties. At least 62,819 persons are displaced and staying in 253 displacement centers. The government indicated that it has the capacity to respond to both short and longer term needs created by the floods. It also welcomes technical assistance from the international community in the country, particularly for relief aid logistic management. In the North Sulawesi Province, as of 19 Jan, at least 15,000 persons from two cities and six districts are displaced. 19 casualties are reported. (&lt;a href=&quot;http://reliefweb.int/report/indonesia/indonesia-situation-updates-21-january-2014&quot;&gt;OCHA, 22 Jan 2014&lt;/a&gt;)&lt;br /&gt;
421
+ &lt;br /&gt;
422
+ Date: 01 Dec 2013&lt;br /&gt;</description>
423
+ <guid isPermaLink="false">http://reliefweb.int/disaster/fl-2014-000005-idn</guid>
424
+ <pubDate>Sun, 01 Dec 2013 00:00:00 +0000</pubDate>
425
+ <source url="http://reliefweb.int/disasters/rss.xml?sl=environment-disaster_listing">Disasters</source>
426
+ <dc:title>Indonesia: Floods and Landslides - Dec 2013</dc:title>
427
+ <dc:description>GLIDE number: FL-2014-000005-IDN&lt;br /&gt;
428
+ Disaster type: Flood, Land Slide&lt;br /&gt;
429
+ Affected countries: Indonesia&lt;br /&gt;
430
+ &lt;br /&gt;
431
+ After a prolonged 2012-2013 wet season that continued into August, Indonesia experienced a brief dry season which transitioned into the 2013-2014 wet season in most parts of the country by the end of October. Floods and landslides killed 35 people in November and affected almost 20,000. (&lt;a href=&quot;http://reliefweb.int/report/indonesia/indonesia-humanitarian-bulletin-issue-05-september-november-2013&quot;&gt;OCHA, 30 Nov 2013&lt;/a&gt;)
432
+
433
+ Heavy rains continued to trigger floods and landslides in December and January. At the end of December, around 18,000 people had to leave their homes after two rivers burst their banks and flooded thousands of houses on Sumatra island (&lt;a href=&quot;http://reliefweb.int/report/indonesia/flood-displaces-18000-indonesia&quot;&gt;AFP, 30 Dec 2013&lt;/a&gt;).
434
+
435
+ As of 21 Jan 2014 in Jakarta and outlying areas, approximately 134,662 persons or 38,672 households in 100 urban villages are directly affected by floods, with 12 casualties. At least 62,819 persons are displaced and staying in 253 displacement centers. The government indicated that it has the capacity to respond to both short and longer term needs created by the floods. It also welcomes technical assistance from the international community in the country, particularly for relief aid logistic management. In the North Sulawesi Province, as of 19 Jan, at least 15,000 persons from two cities and six districts are displaced. 19 casualties are reported. (&lt;a href=&quot;http://reliefweb.int/report/indonesia/indonesia-situation-updates-21-january-2014&quot;&gt;OCHA, 22 Jan 2014&lt;/a&gt;)&lt;br /&gt;
436
+ &lt;br /&gt;
437
+ Date: 01 Dec 2013&lt;br /&gt;</dc:description>
438
+ <dc:date>Sun, 01 Dec 2013 00:00:00 +0000</dc:date>
439
+ <reliefweb:country>Indonesia</reliefweb:country>
440
+ <reliefweb:iso3>idn</reliefweb:iso3>
441
+ <reliefweb:disaster_type>Flood</reliefweb:disaster_type>
442
+ <reliefweb:disaster_type>Land Slide</reliefweb:disaster_type>
443
+ <reliefweb:glide>FL-2014-000005-IDN</reliefweb:glide>
444
+ <reliefweb:current>1</reliefweb:current>
445
+ </item>
446
+ <item> <title>Iran: Earthquake - Nov 2013</title>
447
+ <link>http://reliefweb.int/disaster/eq-2013-000147-irn</link>
448
+ <description>GLIDE number: EQ-2013-000147-IRN&lt;br /&gt;
449
+ Disaster type: Earthquake&lt;br /&gt;
450
+ Affected countries: Iran (Islamic Republic of)&lt;br /&gt;
451
+ &lt;br /&gt;
452
+ A 5.7 magnitude earthquake struck in Iran&#039;s southeastern Bushehr province on 28 Nov 2013, killing seven people and injuring 203. 200 houses were damaged in Borazjan town and Dehghayd village. 1,520 people were sheltered in 20 camps. (&lt;a href=&quot;http://reliefweb.int/report/iran-islamic-republic/information-bulletin-n-2-iran-earthquake-28-november-2013-bushehr&quot;&gt;Iranian Red Crescent, 28 Nov 2013&lt;/a&gt;)&lt;br /&gt;
453
+ &lt;br /&gt;
454
+ Date: 28 Nov 2013&lt;br /&gt;</description>
455
+ <guid isPermaLink="false">http://reliefweb.int/disaster/eq-2013-000147-irn</guid>
456
+ <pubDate>Thu, 28 Nov 2013 00:00:00 +0000</pubDate>
457
+ <source url="http://reliefweb.int/disasters/rss.xml?sl=environment-disaster_listing">Disasters</source>
458
+ <dc:title>Iran: Earthquake - Nov 2013</dc:title>
459
+ <dc:description>GLIDE number: EQ-2013-000147-IRN&lt;br /&gt;
460
+ Disaster type: Earthquake&lt;br /&gt;
461
+ Affected countries: Iran (Islamic Republic of)&lt;br /&gt;
462
+ &lt;br /&gt;
463
+ A 5.7 magnitude earthquake struck in Iran&#039;s southeastern Bushehr province on 28 Nov 2013, killing seven people and injuring 203. 200 houses were damaged in Borazjan town and Dehghayd village. 1,520 people were sheltered in 20 camps. (&lt;a href=&quot;http://reliefweb.int/report/iran-islamic-republic/information-bulletin-n-2-iran-earthquake-28-november-2013-bushehr&quot;&gt;Iranian Red Crescent, 28 Nov 2013&lt;/a&gt;)&lt;br /&gt;
464
+ &lt;br /&gt;
465
+ Date: 28 Nov 2013&lt;br /&gt;</dc:description>
466
+ <dc:date>Thu, 28 Nov 2013 00:00:00 +0000</dc:date>
467
+ <reliefweb:country>Iran (Islamic Republic of)</reliefweb:country>
468
+ <reliefweb:iso3>irn</reliefweb:iso3>
469
+ <reliefweb:disaster_type>Earthquake</reliefweb:disaster_type>
470
+ <reliefweb:glide>EQ-2013-000147-IRN</reliefweb:glide>
471
+ </item>
472
+ <item> <title>Sudan: Yellow Fever Outbreak - Nov 2013</title>
473
+ <link>http://reliefweb.int/disaster/ep-2013-000146-sdn</link>
474
+ <description>GLIDE number: EP-2013-000146-SDN&lt;br /&gt;
475
+ Disaster type: Epidemic&lt;br /&gt;
476
+ Affected countries: Sudan&lt;br /&gt;
477
+ &lt;br /&gt;
478
+ Between 3 Oct and 5 Nov 2013, 22 cases and seven deaths of suspected viral hemorrhagic fever
479
+ were reported in Sudan&#039;s West Kordofan state. The Federal Ministry of Health declared an outbreak on 31 Oct. (&lt;a href=&quot;http://reliefweb.int/report/sudan/yellow-fever-outbreak-sudan-situation-report-no-1-7-november-2013&quot;&gt;WHO/Govt, 7 Nov 2013&lt;/a&gt;).
480
+
481
+ The Institute Pasteur in Dakar reconfirmed the outbreak as yellow fever. By 24 Nov, 44 suspected cases and 14 deaths had been reported from West and South Kordofan. WHO is supporting the Ministry of Health in a vaccination campaign. (&lt;a href=&quot;http://reliefweb.int/report/sudan/yellow-fever-sudan-situation-report-no-4-27-november-2013&quot;&gt;WHO/Govt, 26 Nov 2013&lt;/a&gt;)&lt;br /&gt;
482
+ &lt;br /&gt;
483
+ Date: 26 Nov 2013&lt;br /&gt;</description>
484
+ <guid isPermaLink="false">http://reliefweb.int/disaster/ep-2013-000146-sdn</guid>
485
+ <pubDate>Tue, 26 Nov 2013 00:00:00 +0000</pubDate>
486
+ <source url="http://reliefweb.int/disasters/rss.xml?sl=environment-disaster_listing">Disasters</source>
487
+ <dc:title>Sudan: Yellow Fever Outbreak - Nov 2013</dc:title>
488
+ <dc:description>GLIDE number: EP-2013-000146-SDN&lt;br /&gt;
489
+ Disaster type: Epidemic&lt;br /&gt;
490
+ Affected countries: Sudan&lt;br /&gt;
491
+ &lt;br /&gt;
492
+ Between 3 Oct and 5 Nov 2013, 22 cases and seven deaths of suspected viral hemorrhagic fever
493
+ were reported in Sudan&#039;s West Kordofan state. The Federal Ministry of Health declared an outbreak on 31 Oct. (&lt;a href=&quot;http://reliefweb.int/report/sudan/yellow-fever-outbreak-sudan-situation-report-no-1-7-november-2013&quot;&gt;WHO/Govt, 7 Nov 2013&lt;/a&gt;).
494
+
495
+ The Institute Pasteur in Dakar reconfirmed the outbreak as yellow fever. By 24 Nov, 44 suspected cases and 14 deaths had been reported from West and South Kordofan. WHO is supporting the Ministry of Health in a vaccination campaign. (&lt;a href=&quot;http://reliefweb.int/report/sudan/yellow-fever-sudan-situation-report-no-4-27-november-2013&quot;&gt;WHO/Govt, 26 Nov 2013&lt;/a&gt;)&lt;br /&gt;
496
+ &lt;br /&gt;
497
+ Date: 26 Nov 2013&lt;br /&gt;</dc:description>
498
+ <dc:date>Tue, 26 Nov 2013 00:00:00 +0000</dc:date>
499
+ <reliefweb:country>Sudan</reliefweb:country>
500
+ <reliefweb:iso3>sdn</reliefweb:iso3>
501
+ <reliefweb:disaster_type>Epidemic</reliefweb:disaster_type>
502
+ <reliefweb:glide>EP-2013-000146-SDN</reliefweb:glide>
503
+ <reliefweb:current>1</reliefweb:current>
504
+ </item>
505
+ <item> <title>Somalia: Floods - Nov 2013</title>
506
+ <link>http://reliefweb.int/disaster/fl-2013-000141-som</link>
507
+ <description>GLIDE number: FL-2013-000141-SOM&lt;br /&gt;
508
+ Disaster type: Flood&lt;br /&gt;
509
+ Affected countries: Somalia&lt;br /&gt;
510
+ &lt;br /&gt;
511
+ Seasonal rains started at the end of September 2013 across Somalia, contributing to flooding, especially in and around Jowhar town in Middle Shabelle region, where flooding had already started in mid-August due to rains in the Ethiopian highlands, the source of the Shabelle River. Heavy downpours in October and early November exacerbated the flooding in Jowhar district and parts of neighbouring Balcad district. (&lt;a href=&quot;http://reliefweb.int/report/somalia/somalia-humanitarian-bulletin-november-2013-issued-18-november-2013&quot;&gt;OCHA, 18 Nov 2013&lt;/a&gt;)
512
+
513
+ A joint multi-cluster rapid assessment mission carried out from 7-10 Nov identified 33 villages affected by the flooding and corroborated the approximately 11,000 households displaced reported by the local authorities, while FSNAU has a more conservative number of 7,000 household distributed along 28 villages (&lt;a href=&quot;http://reliefweb.int/report/somalia/jowhar-middle-shabelle-region-jowhar-flood-brief-17-november-2013&quot;&gt;OCHA, 17 Nov 2013&lt;/a&gt;).&lt;br /&gt;
514
+ &lt;br /&gt;
515
+ Date: 17 Nov 2013&lt;br /&gt;</description>
516
+ <guid isPermaLink="false">http://reliefweb.int/disaster/fl-2013-000141-som</guid>
517
+ <pubDate>Sun, 17 Nov 2013 00:00:00 +0000</pubDate>
518
+ <source url="http://reliefweb.int/disasters/rss.xml?sl=environment-disaster_listing">Disasters</source>
519
+ <dc:title>Somalia: Floods - Nov 2013</dc:title>
520
+ <dc:description>GLIDE number: FL-2013-000141-SOM&lt;br /&gt;
521
+ Disaster type: Flood&lt;br /&gt;
522
+ Affected countries: Somalia&lt;br /&gt;
523
+ &lt;br /&gt;
524
+ Seasonal rains started at the end of September 2013 across Somalia, contributing to flooding, especially in and around Jowhar town in Middle Shabelle region, where flooding had already started in mid-August due to rains in the Ethiopian highlands, the source of the Shabelle River. Heavy downpours in October and early November exacerbated the flooding in Jowhar district and parts of neighbouring Balcad district. (&lt;a href=&quot;http://reliefweb.int/report/somalia/somalia-humanitarian-bulletin-november-2013-issued-18-november-2013&quot;&gt;OCHA, 18 Nov 2013&lt;/a&gt;)
525
+
526
+ A joint multi-cluster rapid assessment mission carried out from 7-10 Nov identified 33 villages affected by the flooding and corroborated the approximately 11,000 households displaced reported by the local authorities, while FSNAU has a more conservative number of 7,000 household distributed along 28 villages (&lt;a href=&quot;http://reliefweb.int/report/somalia/jowhar-middle-shabelle-region-jowhar-flood-brief-17-november-2013&quot;&gt;OCHA, 17 Nov 2013&lt;/a&gt;).&lt;br /&gt;
527
+ &lt;br /&gt;
528
+ Date: 17 Nov 2013&lt;br /&gt;</dc:description>
529
+ <dc:date>Sun, 17 Nov 2013 00:00:00 +0000</dc:date>
530
+ <reliefweb:country>Somalia</reliefweb:country>
531
+ <reliefweb:iso3>som</reliefweb:iso3>
532
+ <reliefweb:disaster_type>Flood</reliefweb:disaster_type>
533
+ <reliefweb:glide>FL-2013-000141-SOM</reliefweb:glide>
534
+ <reliefweb:current>1</reliefweb:current>
535
+ </item>
536
+ <item> <title>Viet Nam: Floods - Nov 2013</title>
537
+ <link>http://reliefweb.int/disaster/fl-2013-000142-vnm</link>
538
+ <description>GLIDE number: FL-2013-000142-VNM&lt;br /&gt;
539
+ Disaster type: Flood, Flash Flood&lt;br /&gt;
540
+ Affected countries: Viet Nam&lt;br /&gt;
541
+ &lt;br /&gt;
542
+ On the evening of 14 Nov, the tropical storm 15 weakens into tropical depression and hit the south-central provinces of Viet Nam, bringing heavy rainfall and strong winds. From 14 November at 7 PM to 17 November at 7 PM, the coastal areas from Quang Tri to Ninh Thuan and the Central Highlands have been affected by torrential rains, with total rainfall of 401 to 973 mm. As a consequence of the heavy rain brought by the tropical depression, extensive flooding has hit the central provinces of Quang Nam, Quang Ngai, Da Nang, Phu Yen and Binh Dinh. (&lt;a href=&quot;http://reliefweb.int/report/viet-nam/viet-nam-flooding-central-provinces-situation-report-no1-20-november-2013&quot;&gt;UN Country Team in Viet Nam, 20 Nov 2013&lt;/a&gt;)&lt;br /&gt;
543
+ &lt;br /&gt;
544
+ Date: 14 Nov 2013&lt;br /&gt;</description>
545
+ <guid isPermaLink="false">http://reliefweb.int/disaster/fl-2013-000142-vnm</guid>
546
+ <pubDate>Thu, 14 Nov 2013 00:00:00 +0000</pubDate>
547
+ <source url="http://reliefweb.int/disasters/rss.xml?sl=environment-disaster_listing">Disasters</source>
548
+ <dc:title>Viet Nam: Floods - Nov 2013</dc:title>
549
+ <dc:description>GLIDE number: FL-2013-000142-VNM&lt;br /&gt;
550
+ Disaster type: Flood, Flash Flood&lt;br /&gt;
551
+ Affected countries: Viet Nam&lt;br /&gt;
552
+ &lt;br /&gt;
553
+ On the evening of 14 Nov, the tropical storm 15 weakens into tropical depression and hit the south-central provinces of Viet Nam, bringing heavy rainfall and strong winds. From 14 November at 7 PM to 17 November at 7 PM, the coastal areas from Quang Tri to Ninh Thuan and the Central Highlands have been affected by torrential rains, with total rainfall of 401 to 973 mm. As a consequence of the heavy rain brought by the tropical depression, extensive flooding has hit the central provinces of Quang Nam, Quang Ngai, Da Nang, Phu Yen and Binh Dinh. (&lt;a href=&quot;http://reliefweb.int/report/viet-nam/viet-nam-flooding-central-provinces-situation-report-no1-20-november-2013&quot;&gt;UN Country Team in Viet Nam, 20 Nov 2013&lt;/a&gt;)&lt;br /&gt;
554
+ &lt;br /&gt;
555
+ Date: 14 Nov 2013&lt;br /&gt;</dc:description>
556
+ <dc:date>Thu, 14 Nov 2013 00:00:00 +0000</dc:date>
557
+ <reliefweb:country>Viet Nam</reliefweb:country>
558
+ <reliefweb:iso3>vnm</reliefweb:iso3>
559
+ <reliefweb:disaster_type>Flood</reliefweb:disaster_type>
560
+ <reliefweb:disaster_type>Flash Flood</reliefweb:disaster_type>
561
+ <reliefweb:glide>FL-2013-000142-VNM</reliefweb:glide>
562
+ </item>
563
+ <item> <title>Somalia: Tropical Cyclone - Nov 2013</title>
564
+ <link>http://reliefweb.int/disaster/tc-2013-000140-som</link>
565
+ <description>GLIDE number: TC-2013-000140-SOM&lt;br /&gt;
566
+ Disaster type: Flood, Tropical Cyclone, Flash Flood&lt;br /&gt;
567
+ Affected countries: Somalia&lt;br /&gt;
568
+ &lt;br /&gt;
569
+ The State of Puntland in the North Eastern part of Somalia was hit by a tropical cyclone on 10
570
+ Nov 2013. The cyclone and the subsequent flash floods caused massive destruction resulting in the deaths of 162 people, displacement of tens of hundreds of nomads, decimation of approximately 1 million livestock and destruction of over 1,000 houses according to Government statistics.
571
+
572
+ Livelihoods for the pastoralists, agro-pastoralists and fishermen suffered severe losses with the
573
+ pastoralists losing between 70 to 90 percent of their entire livestock. The farmers who depended on
574
+ irrigation lost their entire crops and equipment used for pumping water. The fishermen had their boats
575
+ damaged and their fishing gear destroyed by the flood waters.
576
+
577
+ The Government of Puntland declared a natural disaster on 11 Nov and requested international assistance to assist the people of Puntland. Critical assistance required by the affected people started arriving on 14 November 2013, with contributions received from major humanitarian organizations led by the Government of Puntland.
578
+
579
+ By the beginning of December, the focus was on recovery efforts. Most of the roads, which were previously cut off, are now accessible and donations of food and non-food items are streaming into the affected communities. As of 24 Nov, over 5,000 households had received food and NFIs from various agencies including the World Food Programme (WFP), the International Committee of the Red Cross (ICRC), the International Organization for Migration, Puntland Government, the local and Somalia Diaspora community. (&lt;a href=&quot;http://reliefweb.int/report/somalia/somalia-tropical-cyclone-dref-operation-n-mdrso002-update-no-1&quot;&gt;IFRC, 11 Dec 2013&lt;/a&gt;)&lt;br /&gt;
580
+ &lt;br /&gt;
581
+ Date: 10 Nov 2013&lt;br /&gt;</description>
582
+ <guid isPermaLink="false">http://reliefweb.int/disaster/tc-2013-000140-som</guid>
583
+ <pubDate>Sun, 10 Nov 2013 00:00:00 +0000</pubDate>
584
+ <source url="http://reliefweb.int/disasters/rss.xml?sl=environment-disaster_listing">Disasters</source>
585
+ <dc:title>Somalia: Tropical Cyclone - Nov 2013</dc:title>
586
+ <dc:description>GLIDE number: TC-2013-000140-SOM&lt;br /&gt;
587
+ Disaster type: Flood, Tropical Cyclone, Flash Flood&lt;br /&gt;
588
+ Affected countries: Somalia&lt;br /&gt;
589
+ &lt;br /&gt;
590
+ The State of Puntland in the North Eastern part of Somalia was hit by a tropical cyclone on 10
591
+ Nov 2013. The cyclone and the subsequent flash floods caused massive destruction resulting in the deaths of 162 people, displacement of tens of hundreds of nomads, decimation of approximately 1 million livestock and destruction of over 1,000 houses according to Government statistics.
592
+
593
+ Livelihoods for the pastoralists, agro-pastoralists and fishermen suffered severe losses with the
594
+ pastoralists losing between 70 to 90 percent of their entire livestock. The farmers who depended on
595
+ irrigation lost their entire crops and equipment used for pumping water. The fishermen had their boats
596
+ damaged and their fishing gear destroyed by the flood waters.
597
+
598
+ The Government of Puntland declared a natural disaster on 11 Nov and requested international assistance to assist the people of Puntland. Critical assistance required by the affected people started arriving on 14 November 2013, with contributions received from major humanitarian organizations led by the Government of Puntland.
599
+
600
+ By the beginning of December, the focus was on recovery efforts. Most of the roads, which were previously cut off, are now accessible and donations of food and non-food items are streaming into the affected communities. As of 24 Nov, over 5,000 households had received food and NFIs from various agencies including the World Food Programme (WFP), the International Committee of the Red Cross (ICRC), the International Organization for Migration, Puntland Government, the local and Somalia Diaspora community. (&lt;a href=&quot;http://reliefweb.int/report/somalia/somalia-tropical-cyclone-dref-operation-n-mdrso002-update-no-1&quot;&gt;IFRC, 11 Dec 2013&lt;/a&gt;)&lt;br /&gt;
601
+ &lt;br /&gt;
602
+ Date: 10 Nov 2013&lt;br /&gt;</dc:description>
603
+ <dc:date>Sun, 10 Nov 2013 00:00:00 +0000</dc:date>
604
+ <reliefweb:country>Somalia</reliefweb:country>
605
+ <reliefweb:iso3>som</reliefweb:iso3>
606
+ <reliefweb:disaster_type>Flood</reliefweb:disaster_type>
607
+ <reliefweb:disaster_type>Tropical Cyclone</reliefweb:disaster_type>
608
+ <reliefweb:disaster_type>Flash Flood</reliefweb:disaster_type>
609
+ <reliefweb:glide>TC-2013-000140-SOM</reliefweb:glide>
610
+ <reliefweb:current>1</reliefweb:current>
611
+ </item>
612
+ <item> <title>Typhoon Haiyan - Nov 2013</title>
613
+ <link>http://reliefweb.int/disaster/tc-2013-000139-phl</link>
614
+ <description>GLIDE number: TC-2013-000139-PHL&lt;br /&gt;
615
+ Disaster type: Flood, Tropical Cyclone, Flash Flood, Land Slide, Storm Surge&lt;br /&gt;
616
+ Affected countries: China, Micronesia (Federated States of), Palau, Philippines, Viet Nam&lt;br /&gt;
617
+ &lt;br /&gt;
618
+ Key Content
619
+
620
+ &lt;ul&gt;
621
+ &lt;li&gt;&lt;a href=&quot;http://reliefweb.int/report/philippines/philippines-typhoon-haiyan-situation-report-no-34-28-january-2014&quot;&gt;OCHA Typhoon Haiyan Situation Report No. 34 (as of 28 Jan 2014)&lt;/a&gt;&lt;/li&gt;
622
+ &lt;li&gt;&lt;a href=&quot;http://reliefweb.int/report/philippines/philippines-typhoon-haiyan-revised-emergency-appeal-n-mdrph014&quot;&gt;IFRC: Typhoon Haiyan - Revised emergency appeal n° MDRPH014&lt;/a&gt;&lt;/li&gt;
623
+ &lt;li&gt;&lt;a href=&quot;http://reliefweb.int/report/philippines/philippines-typhoon-haiyan-multi-cluster-needs-assessment-december-2013&quot;&gt;Multi-Cluster Needs Assessment, December 2013&lt;/a&gt;&lt;/li&gt;
624
+ &lt;/ul&gt;
625
+
626
+ Appeals &amp;amp; Funding
627
+
628
+ &lt;ul&gt;
629
+ &lt;li&gt;&lt;strong&gt;Typhoon Haiyan (Yolanda) Strategic Response Plan, November 2013 – November 2014&lt;/strong&gt; &lt;a href=&quot;http://reliefweb.int/report/philippines/typhoon-haiyan-yolanda-strategic-response-plan-november-2013-november-2014&quot;&gt;&lt;/a&gt;&lt;/li&gt;
630
+ &lt;li&gt;&lt;a href=&quot;http://fts.unocha.org/pageloader.aspx?page=emerg-emergencyDetails&amp;amp;appealID=1043&quot;&gt;&lt;/a&gt;&lt;/li&gt;
631
+ &lt;li&gt;&lt;a href=&quot;http://logik.unocha.org/SitePages/SummaryReport.aspx?eid=99997&quot;&gt;LogIK - Logistics information about in-kind relief aid&lt;/a&gt;&lt;/li&gt;
632
+ &lt;li&gt;&lt;a href=&quot;http://reliefweb.int/report/philippines/philippines-typhoon-haiyan-yolanda-action-plan-november-2013-may-2014-how-you-can&quot;&gt;How you can help people in need&lt;/a&gt;&lt;/li&gt;
633
+ &lt;li&gt;&lt;a href=&quot;http://www.gov.ph/faith/&quot;&gt;Govt. of the Philippines: Foreign Aid Transparency Hub (FAiTH)&lt;/a&gt;&lt;/li&gt;
634
+ &lt;/ul&gt;
635
+
636
+ Useful Links
637
+
638
+ &lt;ul&gt;
639
+ &lt;li&gt;&lt;strong&gt;Philippines&lt;/strong&gt;&lt;a href=&quot;http://philippines.humanitarianresponse.info/&quot;&gt;&lt;/a&gt;&lt;/li&gt;
640
+ &lt;li&gt;&lt;a href=&quot;http://www.ndrrmc.gov.ph/&quot;&gt;Philippines National Disaster Risk Reduction &amp;amp; Management Council (NDRRMC)&lt;/a&gt;&lt;/li&gt;
641
+ &lt;li&gt;&lt;a href=&quot;http://www.gov.ph/crisis-response/updates-typhoon-yolanda/&quot;&gt;Philippines Official Gazette - Updates typhoon Yolanda&lt;/a&gt;&lt;/li&gt;
642
+ &lt;li&gt;&lt;a href=&quot;https://twitter.com/search?q=%23YolandaPH&amp;amp;src=hash&quot;&gt;Use and follow Twitter #YolandaPH&lt;/a&gt;&lt;/li&gt;
643
+ &lt;li&gt;&lt;a href=&quot;https://unosatgis.cern.ch/webmap/UNOSAT_LIVE/Operative/?config=config_TC_20131108_PHL.xml&quot;&gt;GDACS/UNOSAT Live Map&lt;/a&gt;&lt;/li&gt;
644
+ &lt;/ul&gt;&lt;br /&gt;
645
+ &lt;br /&gt;
646
+ Date: 07 Nov 2013&lt;br /&gt;</description>
647
+ <guid isPermaLink="false">http://reliefweb.int/disaster/tc-2013-000139-phl</guid>
648
+ <pubDate>Thu, 07 Nov 2013 00:00:00 +0000</pubDate>
649
+ <source url="http://reliefweb.int/disasters/rss.xml?sl=environment-disaster_listing">Disasters</source>
650
+ <dc:title>Typhoon Haiyan - Nov 2013</dc:title>
651
+ <dc:description>GLIDE number: TC-2013-000139-PHL&lt;br /&gt;
652
+ Disaster type: Flood, Tropical Cyclone, Flash Flood, Land Slide, Storm Surge&lt;br /&gt;
653
+ Affected countries: China, Micronesia (Federated States of), Palau, Philippines, Viet Nam&lt;br /&gt;
654
+ &lt;br /&gt;
655
+ Key Content
656
+
657
+ &lt;ul&gt;
658
+ &lt;li&gt;&lt;a href=&quot;http://reliefweb.int/report/philippines/philippines-typhoon-haiyan-situation-report-no-34-28-january-2014&quot;&gt;OCHA Typhoon Haiyan Situation Report No. 34 (as of 28 Jan 2014)&lt;/a&gt;&lt;/li&gt;
659
+ &lt;li&gt;&lt;a href=&quot;http://reliefweb.int/report/philippines/philippines-typhoon-haiyan-revised-emergency-appeal-n-mdrph014&quot;&gt;IFRC: Typhoon Haiyan - Revised emergency appeal n° MDRPH014&lt;/a&gt;&lt;/li&gt;
660
+ &lt;li&gt;&lt;a href=&quot;http://reliefweb.int/report/philippines/philippines-typhoon-haiyan-multi-cluster-needs-assessment-december-2013&quot;&gt;Multi-Cluster Needs Assessment, December 2013&lt;/a&gt;&lt;/li&gt;
661
+ &lt;/ul&gt;
662
+
663
+ Appeals &amp;amp; Funding
664
+
665
+ &lt;ul&gt;
666
+ &lt;li&gt;&lt;strong&gt;Typhoon Haiyan (Yolanda) Strategic Response Plan, November 2013 – November 2014&lt;/strong&gt; &lt;a href=&quot;http://reliefweb.int/report/philippines/typhoon-haiyan-yolanda-strategic-response-plan-november-2013-november-2014&quot;&gt;&lt;/a&gt;&lt;/li&gt;
667
+ &lt;li&gt;&lt;a href=&quot;http://fts.unocha.org/pageloader.aspx?page=emerg-emergencyDetails&amp;amp;appealID=1043&quot;&gt;&lt;/a&gt;&lt;/li&gt;
668
+ &lt;li&gt;&lt;a href=&quot;http://logik.unocha.org/SitePages/SummaryReport.aspx?eid=99997&quot;&gt;LogIK - Logistics information about in-kind relief aid&lt;/a&gt;&lt;/li&gt;
669
+ &lt;li&gt;&lt;a href=&quot;http://reliefweb.int/report/philippines/philippines-typhoon-haiyan-yolanda-action-plan-november-2013-may-2014-how-you-can&quot;&gt;How you can help people in need&lt;/a&gt;&lt;/li&gt;
670
+ &lt;li&gt;&lt;a href=&quot;http://www.gov.ph/faith/&quot;&gt;Govt. of the Philippines: Foreign Aid Transparency Hub (FAiTH)&lt;/a&gt;&lt;/li&gt;
671
+ &lt;/ul&gt;
672
+
673
+ Useful Links
674
+
675
+ &lt;ul&gt;
676
+ &lt;li&gt;&lt;strong&gt;Philippines&lt;/strong&gt;&lt;a href=&quot;http://philippines.humanitarianresponse.info/&quot;&gt;&lt;/a&gt;&lt;/li&gt;
677
+ &lt;li&gt;&lt;a href=&quot;http://www.ndrrmc.gov.ph/&quot;&gt;Philippines National Disaster Risk Reduction &amp;amp; Management Council (NDRRMC)&lt;/a&gt;&lt;/li&gt;
678
+ &lt;li&gt;&lt;a href=&quot;http://www.gov.ph/crisis-response/updates-typhoon-yolanda/&quot;&gt;Philippines Official Gazette - Updates typhoon Yolanda&lt;/a&gt;&lt;/li&gt;
679
+ &lt;li&gt;&lt;a href=&quot;https://twitter.com/search?q=%23YolandaPH&amp;amp;src=hash&quot;&gt;Use and follow Twitter #YolandaPH&lt;/a&gt;&lt;/li&gt;
680
+ &lt;li&gt;&lt;a href=&quot;https://unosatgis.cern.ch/webmap/UNOSAT_LIVE/Operative/?config=config_TC_20131108_PHL.xml&quot;&gt;GDACS/UNOSAT Live Map&lt;/a&gt;&lt;/li&gt;
681
+ &lt;/ul&gt;&lt;br /&gt;
682
+ &lt;br /&gt;
683
+ Date: 07 Nov 2013&lt;br /&gt;</dc:description>
684
+ <dc:date>Thu, 07 Nov 2013 00:00:00 +0000</dc:date>
685
+ <reliefweb:country>China</reliefweb:country>
686
+ <reliefweb:country>Micronesia (Federated States of)</reliefweb:country>
687
+ <reliefweb:country>Palau</reliefweb:country>
688
+ <reliefweb:country>Philippines</reliefweb:country>
689
+ <reliefweb:country>Viet Nam</reliefweb:country>
690
+ <reliefweb:iso3>chn</reliefweb:iso3>
691
+ <reliefweb:iso3>fsm</reliefweb:iso3>
692
+ <reliefweb:iso3>plw</reliefweb:iso3>
693
+ <reliefweb:iso3>phl</reliefweb:iso3>
694
+ <reliefweb:iso3>vnm</reliefweb:iso3>
695
+ <reliefweb:disaster_type>Flood</reliefweb:disaster_type>
696
+ <reliefweb:disaster_type>Tropical Cyclone</reliefweb:disaster_type>
697
+ <reliefweb:disaster_type>Flash Flood</reliefweb:disaster_type>
698
+ <reliefweb:disaster_type>Land Slide</reliefweb:disaster_type>
699
+ <reliefweb:disaster_type>Storm Surge</reliefweb:disaster_type>
700
+ <reliefweb:glide>TC-2013-000139-PHL</reliefweb:glide>
701
+ <reliefweb:current>1</reliefweb:current>
702
+ </item>
703
+ <item> <title>Togo: Cholera Outbreak - Nov 2013</title>
704
+ <link>http://reliefweb.int/disaster/ep-2013-000138-tgo</link>
705
+ <description>GLIDE number: EP-2013-000138-TGO&lt;br /&gt;
706
+ Disaster type: Epidemic&lt;br /&gt;
707
+ Affected countries: Togo&lt;br /&gt;
708
+ &lt;br /&gt;
709
+ Starting on 30 Aug 2013, cases of cholera were recorded in Lomé municipality in the Maritime region of Togo. The outbreak spread to six of the seven districts in the Maritime region as well as the Central region. As of 28 Oct, the situation had worsened significantly, with a total number of 95 cases and four deaths reported. The continued rainfall in the regions and poor hygiene conditions escalated concerns of a serious outbreak by the country’s health authorities. (&lt;a href=&quot;http://reliefweb.int/report/togo/togo-cholera-outbreak-dref-operation-no-mdrtg004&quot;&gt;IFRC, 4 Nov 2013&lt;/a&gt;)&lt;br /&gt;
710
+ &lt;br /&gt;
711
+ Date: 04 Nov 2013&lt;br /&gt;</description>
712
+ <guid isPermaLink="false">http://reliefweb.int/disaster/ep-2013-000138-tgo</guid>
713
+ <pubDate>Mon, 04 Nov 2013 00:00:00 +0000</pubDate>
714
+ <source url="http://reliefweb.int/disasters/rss.xml?sl=environment-disaster_listing">Disasters</source>
715
+ <dc:title>Togo: Cholera Outbreak - Nov 2013</dc:title>
716
+ <dc:description>GLIDE number: EP-2013-000138-TGO&lt;br /&gt;
717
+ Disaster type: Epidemic&lt;br /&gt;
718
+ Affected countries: Togo&lt;br /&gt;
719
+ &lt;br /&gt;
720
+ Starting on 30 Aug 2013, cases of cholera were recorded in Lomé municipality in the Maritime region of Togo. The outbreak spread to six of the seven districts in the Maritime region as well as the Central region. As of 28 Oct, the situation had worsened significantly, with a total number of 95 cases and four deaths reported. The continued rainfall in the regions and poor hygiene conditions escalated concerns of a serious outbreak by the country’s health authorities. (&lt;a href=&quot;http://reliefweb.int/report/togo/togo-cholera-outbreak-dref-operation-no-mdrtg004&quot;&gt;IFRC, 4 Nov 2013&lt;/a&gt;)&lt;br /&gt;
721
+ &lt;br /&gt;
722
+ Date: 04 Nov 2013&lt;br /&gt;</dc:description>
723
+ <dc:date>Mon, 04 Nov 2013 00:00:00 +0000</dc:date>
724
+ <reliefweb:country>Togo</reliefweb:country>
725
+ <reliefweb:iso3>tgo</reliefweb:iso3>
726
+ <reliefweb:disaster_type>Epidemic</reliefweb:disaster_type>
727
+ <reliefweb:glide>EP-2013-000138-TGO</reliefweb:glide>
728
+ </item>
729
+ <item> <title>Thailand: Floods - Oct 2013</title>
730
+ <link>http://reliefweb.int/disaster/fl-2013-000083-tha</link>
731
+ <description>GLIDE number: FL-2013-000083-THA&lt;br /&gt;
732
+ Disaster type: Flood&lt;br /&gt;
733
+ Affected countries: Thailand&lt;br /&gt;
734
+ &lt;br /&gt;
735
+ Since late July 2013, Thailand has been facing sporadic flooding, mainly in the north and north-eastern provinces. From late September, seasonal rainfall was further exacerbated by the combined impact of several tropical storms resulting in climatic depressions over Thailand that led to heavy rainfall in many provinces throughout the country. By early October, 45 of 76 provinces were affected by floods, with 25 provinces considered severely affected. The reported death toll from these floods has risen to 61 people, and more than 3.5 million are affected. &lt;a href=&quot;http://reliefweb.int/report/thailand/thailand-floods-information-bulletin-n%C2%B0-1-0&quot;&gt;(IFRC, 17 Oct 2013)&lt;/a&gt;
736
+
737
+ Useful Links
738
+
739
+ &lt;ul&gt;
740
+ &lt;li&gt;&lt;a href=&quot;http://flood.gistda.or.th/&quot;&gt;Thai Flood Monitoring System&lt;/a&gt;&lt;/li&gt;
741
+ &lt;/ul&gt;&lt;br /&gt;
742
+ &lt;br /&gt;
743
+ Date: 17 Oct 2013&lt;br /&gt;</description>
744
+ <guid isPermaLink="false">http://reliefweb.int/disaster/fl-2013-000083-tha</guid>
745
+ <pubDate>Thu, 17 Oct 2013 00:00:00 +0000</pubDate>
746
+ <source url="http://reliefweb.int/disasters/rss.xml?sl=environment-disaster_listing">Disasters</source>
747
+ <dc:title>Thailand: Floods - Oct 2013</dc:title>
748
+ <dc:description>GLIDE number: FL-2013-000083-THA&lt;br /&gt;
749
+ Disaster type: Flood&lt;br /&gt;
750
+ Affected countries: Thailand&lt;br /&gt;
751
+ &lt;br /&gt;
752
+ Since late July 2013, Thailand has been facing sporadic flooding, mainly in the north and north-eastern provinces. From late September, seasonal rainfall was further exacerbated by the combined impact of several tropical storms resulting in climatic depressions over Thailand that led to heavy rainfall in many provinces throughout the country. By early October, 45 of 76 provinces were affected by floods, with 25 provinces considered severely affected. The reported death toll from these floods has risen to 61 people, and more than 3.5 million are affected. &lt;a href=&quot;http://reliefweb.int/report/thailand/thailand-floods-information-bulletin-n%C2%B0-1-0&quot;&gt;(IFRC, 17 Oct 2013)&lt;/a&gt;
753
+
754
+ Useful Links
755
+
756
+ &lt;ul&gt;
757
+ &lt;li&gt;&lt;a href=&quot;http://flood.gistda.or.th/&quot;&gt;Thai Flood Monitoring System&lt;/a&gt;&lt;/li&gt;
758
+ &lt;/ul&gt;&lt;br /&gt;
759
+ &lt;br /&gt;
760
+ Date: 17 Oct 2013&lt;br /&gt;</dc:description>
761
+ <dc:date>Thu, 17 Oct 2013 00:00:00 +0000</dc:date>
762
+ <reliefweb:country>Thailand</reliefweb:country>
763
+ <reliefweb:iso3>tha</reliefweb:iso3>
764
+ <reliefweb:disaster_type>Flood</reliefweb:disaster_type>
765
+ <reliefweb:glide>FL-2013-000083-THA</reliefweb:glide>
766
+ <reliefweb:current>1</reliefweb:current>
767
+ </item>
768
+ <item> <title>Pakistan: Dengue Outbreak - Oct 2013</title>
769
+ <link>http://reliefweb.int/disaster/ep-2013-000136-pak</link>
770
+ <description>GLIDE number: EP-2013-000136-PAK&lt;br /&gt;
771
+ Disaster type: Epidemic&lt;br /&gt;
772
+ Affected countries: Pakistan&lt;br /&gt;
773
+ &lt;br /&gt;
774
+ More than 7,000 people have tested positive for dengue fever in Swat District of Pakistan&#039;s Khyber Pakhtunkhwa province since September 2013. At least 26 people have died from the disease. (&lt;a href=&quot;http://reliefweb.int/report/pakistan/humanitarian-bulletin-pakistan-issue-19-16-september-%E2%80%93-15-october-2013&quot;&gt;OCHA, 15 Oct 2013&lt;/a&gt;). As of 20 Oct, the number of cases stood at 8,546 and 33 deaths had been reported (&lt;a href=&quot;http://reliefweb.int/report/pakistan/swat-dengue-fever-snapshot-7-august-20-october-2013&quot;&gt;WHO, 20 Oct 2013&lt;/a&gt;).
775
+
776
+ Although dengue fever outbreaks have been reported cyclically in Pakistan since 1994, one of the major striking feature of this year’s trend is that cases have been reported from areas that do not fall in the traditional endemic belt of the country, such as Khyber Pakthunkhwa and Balochistan province. (&lt;a href=&quot;http://reliefweb.int/report/pakistan/who-emro-weekly-epidemiological-monitor-volume-volume-6-issue-37-dengue-fever-0&quot;&gt;WHO, 15 Sep 2013&lt;/a&gt;).&lt;br /&gt;
777
+ &lt;br /&gt;
778
+ Date: 15 Oct 2013&lt;br /&gt;</description>
779
+ <guid isPermaLink="false">http://reliefweb.int/disaster/ep-2013-000136-pak</guid>
780
+ <pubDate>Tue, 15 Oct 2013 00:00:00 +0000</pubDate>
781
+ <source url="http://reliefweb.int/disasters/rss.xml?sl=environment-disaster_listing">Disasters</source>
782
+ <dc:title>Pakistan: Dengue Outbreak - Oct 2013</dc:title>
783
+ <dc:description>GLIDE number: EP-2013-000136-PAK&lt;br /&gt;
784
+ Disaster type: Epidemic&lt;br /&gt;
785
+ Affected countries: Pakistan&lt;br /&gt;
786
+ &lt;br /&gt;
787
+ More than 7,000 people have tested positive for dengue fever in Swat District of Pakistan&#039;s Khyber Pakhtunkhwa province since September 2013. At least 26 people have died from the disease. (&lt;a href=&quot;http://reliefweb.int/report/pakistan/humanitarian-bulletin-pakistan-issue-19-16-september-%E2%80%93-15-october-2013&quot;&gt;OCHA, 15 Oct 2013&lt;/a&gt;). As of 20 Oct, the number of cases stood at 8,546 and 33 deaths had been reported (&lt;a href=&quot;http://reliefweb.int/report/pakistan/swat-dengue-fever-snapshot-7-august-20-october-2013&quot;&gt;WHO, 20 Oct 2013&lt;/a&gt;).
788
+
789
+ Although dengue fever outbreaks have been reported cyclically in Pakistan since 1994, one of the major striking feature of this year’s trend is that cases have been reported from areas that do not fall in the traditional endemic belt of the country, such as Khyber Pakthunkhwa and Balochistan province. (&lt;a href=&quot;http://reliefweb.int/report/pakistan/who-emro-weekly-epidemiological-monitor-volume-volume-6-issue-37-dengue-fever-0&quot;&gt;WHO, 15 Sep 2013&lt;/a&gt;).&lt;br /&gt;
790
+ &lt;br /&gt;
791
+ Date: 15 Oct 2013&lt;br /&gt;</dc:description>
792
+ <dc:date>Tue, 15 Oct 2013 00:00:00 +0000</dc:date>
793
+ <reliefweb:country>Pakistan</reliefweb:country>
794
+ <reliefweb:iso3>pak</reliefweb:iso3>
795
+ <reliefweb:disaster_type>Epidemic</reliefweb:disaster_type>
796
+ <reliefweb:glide>EP-2013-000136-PAK</reliefweb:glide>
797
+ <reliefweb:current>1</reliefweb:current>
798
+ </item>
799
+ <item> <title>Philippines: Earthquake - Oct 2013</title>
800
+ <link>http://reliefweb.int/disaster/eq-2013-000134-phl</link>
801
+ <description>GLIDE number: EQ-2013-000134-PHL&lt;br /&gt;
802
+ Disaster type: Earthquake, Land Slide&lt;br /&gt;
803
+ Affected countries: Philippines&lt;br /&gt;
804
+ &lt;br /&gt;
805
+ A major emergency response operation is underway in central Philippines following the 7.2 magnitude earthquake that struck Bohol island on 15 Oct 2013. It was felt across the Central Visayas
806
+ region (population of 6.8 million) and is the strongest earthquake that hit Bohol in nearly 25 years, possibly caused by a fault line unknown until this disaster. There were at least 2,500 aftershocks since the first powerful earthquake and 64 of them were strong enough to be felt. A total of 195 people died, 651 were injured and 12 missing. The earthquake caused landslides and extensive damage to housing, hospitals, schools, infrastructure and utilities, with more than 53,300 houses severely damaged or destroyed. More than 344,300 people were displaced, of whom 71,400 people (or 20 per cent) stayed in 99 evacuation centres. An action plan was launched on 25 Oct, seeking $46.8 million to implement 23 projects across 13 sectors over a three to six month period to deliver aid to 344,300 people. (&lt;a href=&quot;http://reliefweb.int/report/philippines/bohol-earthquake-action-plan-october-2013&quot;&gt;Humanitarian Country Team, 25 Oct 2013&lt;/a&gt;)
807
+
808
+ Appeals &amp;amp; Funding
809
+
810
+ &lt;ul&gt;
811
+ &lt;li&gt;&lt;strong&gt;Bohol Earthquake Action Plan October 2013&lt;/strong&gt; &lt;a href=&quot;http://reliefweb.int/report/philippines/bohol-earthquake-action-plan-october-2013&quot;&gt;&lt;/a&gt;&lt;/li&gt;
812
+ &lt;li&gt;&lt;a href=&quot;http://fts.unocha.org/pageloader.aspx?page=emerg-emergencyDetails&amp;amp;appealID=1041&quot;&gt;&lt;/a&gt;&lt;/li&gt;
813
+ &lt;/ul&gt;
814
+
815
+ Useful Links
816
+
817
+ &lt;ul&gt;
818
+ &lt;li&gt;&lt;a href=&quot;http://philippines.humanitarianresponse.info/&quot;&gt;&lt;/a&gt;&lt;/li&gt;
819
+ &lt;li&gt;&lt;a href=&quot;http://www.ndrrmc.gov.ph/&quot;&gt;National Disaster Risk Reduction &amp;amp; Management Council (NDRRMC)&lt;/a&gt;&lt;/li&gt;
820
+ &lt;/ul&gt;&lt;br /&gt;
821
+ &lt;br /&gt;
822
+ Date: 15 Oct 2013&lt;br /&gt;</description>
823
+ <guid isPermaLink="false">http://reliefweb.int/disaster/eq-2013-000134-phl</guid>
824
+ <pubDate>Tue, 15 Oct 2013 00:00:00 +0000</pubDate>
825
+ <source url="http://reliefweb.int/disasters/rss.xml?sl=environment-disaster_listing">Disasters</source>
826
+ <dc:title>Philippines: Earthquake - Oct 2013</dc:title>
827
+ <dc:description>GLIDE number: EQ-2013-000134-PHL&lt;br /&gt;
828
+ Disaster type: Earthquake, Land Slide&lt;br /&gt;
829
+ Affected countries: Philippines&lt;br /&gt;
830
+ &lt;br /&gt;
831
+ A major emergency response operation is underway in central Philippines following the 7.2 magnitude earthquake that struck Bohol island on 15 Oct 2013. It was felt across the Central Visayas
832
+ region (population of 6.8 million) and is the strongest earthquake that hit Bohol in nearly 25 years, possibly caused by a fault line unknown until this disaster. There were at least 2,500 aftershocks since the first powerful earthquake and 64 of them were strong enough to be felt. A total of 195 people died, 651 were injured and 12 missing. The earthquake caused landslides and extensive damage to housing, hospitals, schools, infrastructure and utilities, with more than 53,300 houses severely damaged or destroyed. More than 344,300 people were displaced, of whom 71,400 people (or 20 per cent) stayed in 99 evacuation centres. An action plan was launched on 25 Oct, seeking $46.8 million to implement 23 projects across 13 sectors over a three to six month period to deliver aid to 344,300 people. (&lt;a href=&quot;http://reliefweb.int/report/philippines/bohol-earthquake-action-plan-october-2013&quot;&gt;Humanitarian Country Team, 25 Oct 2013&lt;/a&gt;)
833
+
834
+ Appeals &amp;amp; Funding
835
+
836
+ &lt;ul&gt;
837
+ &lt;li&gt;&lt;strong&gt;Bohol Earthquake Action Plan October 2013&lt;/strong&gt; &lt;a href=&quot;http://reliefweb.int/report/philippines/bohol-earthquake-action-plan-october-2013&quot;&gt;&lt;/a&gt;&lt;/li&gt;
838
+ &lt;li&gt;&lt;a href=&quot;http://fts.unocha.org/pageloader.aspx?page=emerg-emergencyDetails&amp;amp;appealID=1041&quot;&gt;&lt;/a&gt;&lt;/li&gt;
839
+ &lt;/ul&gt;
840
+
841
+ Useful Links
842
+
843
+ &lt;ul&gt;
844
+ &lt;li&gt;&lt;a href=&quot;http://philippines.humanitarianresponse.info/&quot;&gt;&lt;/a&gt;&lt;/li&gt;
845
+ &lt;li&gt;&lt;a href=&quot;http://www.ndrrmc.gov.ph/&quot;&gt;National Disaster Risk Reduction &amp;amp; Management Council (NDRRMC)&lt;/a&gt;&lt;/li&gt;
846
+ &lt;/ul&gt;&lt;br /&gt;
847
+ &lt;br /&gt;
848
+ Date: 15 Oct 2013&lt;br /&gt;</dc:description>
849
+ <dc:date>Tue, 15 Oct 2013 00:00:00 +0000</dc:date>
850
+ <reliefweb:country>Philippines</reliefweb:country>
851
+ <reliefweb:iso3>phl</reliefweb:iso3>
852
+ <reliefweb:disaster_type>Earthquake</reliefweb:disaster_type>
853
+ <reliefweb:disaster_type>Land Slide</reliefweb:disaster_type>
854
+ <reliefweb:glide>EQ-2013-000134-PHL</reliefweb:glide>
855
+ <reliefweb:current>1</reliefweb:current>
856
+ </item>
857
+ <item> <title>Tropical Cyclone Phailin - Oct 2013</title>
858
+ <link>http://reliefweb.int/disaster/tc-2013-000133-ind</link>
859
+ <description>GLIDE number: TC-2013-000133-IND&lt;br /&gt;
860
+ Disaster type: Flood, Tropical Cyclone, Flash Flood&lt;br /&gt;
861
+ Affected countries: India&lt;br /&gt;
862
+ &lt;br /&gt;
863
+ Cyclone Phailin left a trail of destruction along India&#039;s east coast and at least seven people dead after making landfall on 12 Oct 2013 in Orissa state. Officials in Orissa said 873,000 people moved before the cyclone made landfall, while at least another 100,000 were evacuated further south in the state of Andhra Pradesh. Residents were also evacuated from coastal regions of West Bengal state. As emergency teams began assessing damage from the country&#039;s biggest cyclone in 14 years, a massive relief effort went into full swing to distribute food to an estimated one million evacuees, clear roads and help the injured. Some 600,000 people were left homeless after the ferocious storm swept through 14,000 villages mainly in coastal districts. (&lt;a href=&quot;http://reliefweb.int/report/india/cyclone-phailin-pummels-india-half-million-evacuated&quot;&gt;AFP, 13 Oct 2013&lt;/a&gt;)
864
+
865
+ Useful Links
866
+
867
+ &lt;ul&gt;
868
+ &lt;li&gt;&lt;a href=&quot;http://www.imd.gov.in/&quot;&gt;India Meteorological Department&lt;/a&gt;&lt;/li&gt;
869
+ &lt;/ul&gt;&lt;br /&gt;
870
+ &lt;br /&gt;
871
+ Date: 12 Oct 2013&lt;br /&gt;</description>
872
+ <guid isPermaLink="false">http://reliefweb.int/disaster/tc-2013-000133-ind</guid>
873
+ <pubDate>Sat, 12 Oct 2013 00:00:00 +0000</pubDate>
874
+ <source url="http://reliefweb.int/disasters/rss.xml?sl=environment-disaster_listing">Disasters</source>
875
+ <dc:title>Tropical Cyclone Phailin - Oct 2013</dc:title>
876
+ <dc:description>GLIDE number: TC-2013-000133-IND&lt;br /&gt;
877
+ Disaster type: Flood, Tropical Cyclone, Flash Flood&lt;br /&gt;
878
+ Affected countries: India&lt;br /&gt;
879
+ &lt;br /&gt;
880
+ Cyclone Phailin left a trail of destruction along India&#039;s east coast and at least seven people dead after making landfall on 12 Oct 2013 in Orissa state. Officials in Orissa said 873,000 people moved before the cyclone made landfall, while at least another 100,000 were evacuated further south in the state of Andhra Pradesh. Residents were also evacuated from coastal regions of West Bengal state. As emergency teams began assessing damage from the country&#039;s biggest cyclone in 14 years, a massive relief effort went into full swing to distribute food to an estimated one million evacuees, clear roads and help the injured. Some 600,000 people were left homeless after the ferocious storm swept through 14,000 villages mainly in coastal districts. (&lt;a href=&quot;http://reliefweb.int/report/india/cyclone-phailin-pummels-india-half-million-evacuated&quot;&gt;AFP, 13 Oct 2013&lt;/a&gt;)
881
+
882
+ Useful Links
883
+
884
+ &lt;ul&gt;
885
+ &lt;li&gt;&lt;a href=&quot;http://www.imd.gov.in/&quot;&gt;India Meteorological Department&lt;/a&gt;&lt;/li&gt;
886
+ &lt;/ul&gt;&lt;br /&gt;
887
+ &lt;br /&gt;
888
+ Date: 12 Oct 2013&lt;br /&gt;</dc:description>
889
+ <dc:date>Sat, 12 Oct 2013 00:00:00 +0000</dc:date>
890
+ <reliefweb:country>India</reliefweb:country>
891
+ <reliefweb:iso3>ind</reliefweb:iso3>
892
+ <reliefweb:disaster_type>Flood</reliefweb:disaster_type>
893
+ <reliefweb:disaster_type>Tropical Cyclone</reliefweb:disaster_type>
894
+ <reliefweb:disaster_type>Flash Flood</reliefweb:disaster_type>
895
+ <reliefweb:glide>TC-2013-000133-IND</reliefweb:glide>
896
+ </item>
897
+ <item> <title>Typhoon Nari - Oct 2013</title>
898
+ <link>http://reliefweb.int/disaster/tc-2013-000132-phl</link>
899
+ <description>GLIDE number: TC-2013-000132-PHL&lt;br /&gt;
900
+ Disaster type: Flood, Tropical Cyclone, Flash Flood&lt;br /&gt;
901
+ Affected countries: Philippines, Viet Nam&lt;br /&gt;
902
+ &lt;br /&gt;
903
+ Typhoon Nari (locally known as Santi) hit the northern Philippines early on 12 Oct 2013, killing 13 people and affecting more than 200,000. More than 43,000 people (or 9,000 families) were displaced, some living with host families and others in evacuation centres. More than 16,500 homes were damaged. Bulacan province suffered extensive damage from flooding, with several villages submerged and rice and vegetable farms damaged or destroyed. (&lt;a href=&quot;http://reliefweb.int/report/philippines/ocha-flash-update-philippines-typhoon-nari-santi-13-october-2013&quot;&gt;OCHA, 13 Oct 2013&lt;/a&gt;).
904
+
905
+ Nari, the 11th storm to hit Viet Nam this year, made landfall in Danang and Quang Nam areas with a Category 1 level on 15 Oct, causing severe and extensive flooding between 15-19 Oct in the three northern-central provinces of Nghe An, Ha Tinh and Quang Binh. 27 people were killed, and over 96,000 houses flooded. As of 25 Oct, the water had receded from the flooded provinces.
906
+ (&lt;a href=&quot;http://reliefweb.int/report/viet-nam/vietnam-typhoon-nari-and-update-typhoon-wutip-situation-report-no-3-25-october-2013&quot;&gt;UNCT, 25 Oct 2013&lt;/a&gt;)
907
+
908
+ After Vietnam, Nari moved over central Lao PDR and eastern Thailand, weakening, but still producing heavy rainfall. In southern Lao 65mm in 24 hours were measured on 15 October and 97mm in the north. In Thailand, where 21 provinces are already suffering from floods, 50 to 100mm of rain in 24 hours were measured in numerous places in the eastern parts. (&lt;a href=&quot;http://reliefweb.int/report/viet-nam/vietnam-tropical-cyclone-nari-echo-daily-flash-16-october-2013&quot;&gt;ECHO, 16 Oct 2013&lt;/a&gt;)
909
+
910
+ Useful Links
911
+
912
+ &lt;ul&gt;
913
+ &lt;li&gt;&lt;a href=&quot;http://philippines.humanitarianresponse.info/&quot;&gt;&lt;/a&gt;&lt;/li&gt;
914
+ &lt;li&gt;&lt;a href=&quot;http://www.ndrrmc.gov.ph/&quot;&gt;National Disaster Risk Reduction &amp;amp; Management Council (NDRRMC)&lt;/a&gt; &lt;/li&gt;
915
+ &lt;/ul&gt;&lt;br /&gt;
916
+ &lt;br /&gt;
917
+ Date: 12 Oct 2013&lt;br /&gt;</description>
918
+ <guid isPermaLink="false">http://reliefweb.int/disaster/tc-2013-000132-phl</guid>
919
+ <pubDate>Sat, 12 Oct 2013 00:00:00 +0000</pubDate>
920
+ <source url="http://reliefweb.int/disasters/rss.xml?sl=environment-disaster_listing">Disasters</source>
921
+ <dc:title>Typhoon Nari - Oct 2013</dc:title>
922
+ <dc:description>GLIDE number: TC-2013-000132-PHL&lt;br /&gt;
923
+ Disaster type: Flood, Tropical Cyclone, Flash Flood&lt;br /&gt;
924
+ Affected countries: Philippines, Viet Nam&lt;br /&gt;
925
+ &lt;br /&gt;
926
+ Typhoon Nari (locally known as Santi) hit the northern Philippines early on 12 Oct 2013, killing 13 people and affecting more than 200,000. More than 43,000 people (or 9,000 families) were displaced, some living with host families and others in evacuation centres. More than 16,500 homes were damaged. Bulacan province suffered extensive damage from flooding, with several villages submerged and rice and vegetable farms damaged or destroyed. (&lt;a href=&quot;http://reliefweb.int/report/philippines/ocha-flash-update-philippines-typhoon-nari-santi-13-october-2013&quot;&gt;OCHA, 13 Oct 2013&lt;/a&gt;).
927
+
928
+ Nari, the 11th storm to hit Viet Nam this year, made landfall in Danang and Quang Nam areas with a Category 1 level on 15 Oct, causing severe and extensive flooding between 15-19 Oct in the three northern-central provinces of Nghe An, Ha Tinh and Quang Binh. 27 people were killed, and over 96,000 houses flooded. As of 25 Oct, the water had receded from the flooded provinces.
929
+ (&lt;a href=&quot;http://reliefweb.int/report/viet-nam/vietnam-typhoon-nari-and-update-typhoon-wutip-situation-report-no-3-25-october-2013&quot;&gt;UNCT, 25 Oct 2013&lt;/a&gt;)
930
+
931
+ After Vietnam, Nari moved over central Lao PDR and eastern Thailand, weakening, but still producing heavy rainfall. In southern Lao 65mm in 24 hours were measured on 15 October and 97mm in the north. In Thailand, where 21 provinces are already suffering from floods, 50 to 100mm of rain in 24 hours were measured in numerous places in the eastern parts. (&lt;a href=&quot;http://reliefweb.int/report/viet-nam/vietnam-tropical-cyclone-nari-echo-daily-flash-16-october-2013&quot;&gt;ECHO, 16 Oct 2013&lt;/a&gt;)
932
+
933
+ Useful Links
934
+
935
+ &lt;ul&gt;
936
+ &lt;li&gt;&lt;a href=&quot;http://philippines.humanitarianresponse.info/&quot;&gt;&lt;/a&gt;&lt;/li&gt;
937
+ &lt;li&gt;&lt;a href=&quot;http://www.ndrrmc.gov.ph/&quot;&gt;National Disaster Risk Reduction &amp;amp; Management Council (NDRRMC)&lt;/a&gt; &lt;/li&gt;
938
+ &lt;/ul&gt;&lt;br /&gt;
939
+ &lt;br /&gt;
940
+ Date: 12 Oct 2013&lt;br /&gt;</dc:description>
941
+ <dc:date>Sat, 12 Oct 2013 00:00:00 +0000</dc:date>
942
+ <reliefweb:country>Philippines</reliefweb:country>
943
+ <reliefweb:country>Viet Nam</reliefweb:country>
944
+ <reliefweb:iso3>phl</reliefweb:iso3>
945
+ <reliefweb:iso3>vnm</reliefweb:iso3>
946
+ <reliefweb:disaster_type>Flood</reliefweb:disaster_type>
947
+ <reliefweb:disaster_type>Tropical Cyclone</reliefweb:disaster_type>
948
+ <reliefweb:disaster_type>Flash Flood</reliefweb:disaster_type>
949
+ <reliefweb:glide> TC-2013-000132-PHL</reliefweb:glide>
950
+ </item>
951
+ <item> <title>Benin: Cholera Outbreak - Oct 2013</title>
952
+ <link>http://reliefweb.int/disaster/ep-2013-000130-ben</link>
953
+ <description>GLIDE number: EP-2013-000130-BEN&lt;br /&gt;
954
+ Disaster type: Epidemic&lt;br /&gt;
955
+ Affected countries: Benin&lt;br /&gt;
956
+ &lt;br /&gt;
957
+ Since August 2013 a cholera epidemic has been on-going in Benin. The epidemic was declared in the Sô-Ava municipality in the department of the Atlantic in the south of Benin in September, and as of 2 Oct, a total of 129 confirmed cases were reported in the municipality. Since then, cases have been reported in 13 municipalities with a concentration n Cotonou (196 cases, 4 deaths), Sô-Ava (234 cases) and Acomey-Calawi (22 cases). As of 27 Jan 2014, the total of registered cases is 438 with 6 deaths. During December 2013 no new cases were reported, but since early January 2014, new cases have been reported in So-Ava. This is most likely related to the same outbreak, but increased surveillance and monitoring is necessary to guide the response. (&lt;a href=&quot;http://reliefweb.int/report/benin/benin-cholera-outbreak-mdrbj013-dref-operation-update-no-2&quot;&gt;IFRC, 30 Jan 2014&lt;/a&gt;)&lt;br /&gt;
958
+ &lt;br /&gt;
959
+ Date: 10 Oct 2013&lt;br /&gt;</description>
960
+ <guid isPermaLink="false">http://reliefweb.int/disaster/ep-2013-000130-ben</guid>
961
+ <pubDate>Thu, 10 Oct 2013 00:00:00 +0000</pubDate>
962
+ <source url="http://reliefweb.int/disasters/rss.xml?sl=environment-disaster_listing">Disasters</source>
963
+ <dc:title>Benin: Cholera Outbreak - Oct 2013</dc:title>
964
+ <dc:description>GLIDE number: EP-2013-000130-BEN&lt;br /&gt;
965
+ Disaster type: Epidemic&lt;br /&gt;
966
+ Affected countries: Benin&lt;br /&gt;
967
+ &lt;br /&gt;
968
+ Since August 2013 a cholera epidemic has been on-going in Benin. The epidemic was declared in the Sô-Ava municipality in the department of the Atlantic in the south of Benin in September, and as of 2 Oct, a total of 129 confirmed cases were reported in the municipality. Since then, cases have been reported in 13 municipalities with a concentration n Cotonou (196 cases, 4 deaths), Sô-Ava (234 cases) and Acomey-Calawi (22 cases). As of 27 Jan 2014, the total of registered cases is 438 with 6 deaths. During December 2013 no new cases were reported, but since early January 2014, new cases have been reported in So-Ava. This is most likely related to the same outbreak, but increased surveillance and monitoring is necessary to guide the response. (&lt;a href=&quot;http://reliefweb.int/report/benin/benin-cholera-outbreak-mdrbj013-dref-operation-update-no-2&quot;&gt;IFRC, 30 Jan 2014&lt;/a&gt;)&lt;br /&gt;
969
+ &lt;br /&gt;
970
+ Date: 10 Oct 2013&lt;br /&gt;</dc:description>
971
+ <dc:date>Thu, 10 Oct 2013 00:00:00 +0000</dc:date>
972
+ <reliefweb:country>Benin</reliefweb:country>
973
+ <reliefweb:iso3>ben</reliefweb:iso3>
974
+ <reliefweb:disaster_type>Epidemic</reliefweb:disaster_type>
975
+ <reliefweb:glide>EP-2013-000130-BEN</reliefweb:glide>
976
+ </item>
977
+ <item> <title>Burkina Faso: Floods - Oct 2013</title>
978
+ <link>http://reliefweb.int/disaster/fl-2013-000125-bfa</link>
979
+ <description>GLIDE number: FL-2013-000125-BFA&lt;br /&gt;
980
+ Disaster type: Flood, Flash Flood&lt;br /&gt;
981
+ Affected countries: Burkina Faso&lt;br /&gt;
982
+ &lt;br /&gt;
983
+ Starting in August 2013, severe floods were reported in many countries across the Sahel. In Burkina Faso, four regions were affected: Est, Boucle de Mouhoun, Sahel and Hauts-Bassins. At least 751 homes and 6,712 people were affected. (&lt;a href=&quot;http://reliefweb.int/report/burkina-faso/burkina-faso-aper%C3%A7u-humanitaire-sur-les-inondations-de-2013-27-a%C3%B4ut-2013&quot;&gt;OCHA, 27 Aug 2013&lt;/a&gt;)&lt;br /&gt;
984
+ &lt;br /&gt;
985
+ Date: 03 Oct 2013&lt;br /&gt;</description>
986
+ <guid isPermaLink="false">http://reliefweb.int/disaster/fl-2013-000125-bfa</guid>
987
+ <pubDate>Thu, 03 Oct 2013 00:00:00 +0000</pubDate>
988
+ <source url="http://reliefweb.int/disasters/rss.xml?sl=environment-disaster_listing">Disasters</source>
989
+ <dc:title>Burkina Faso: Floods - Oct 2013</dc:title>
990
+ <dc:description>GLIDE number: FL-2013-000125-BFA&lt;br /&gt;
991
+ Disaster type: Flood, Flash Flood&lt;br /&gt;
992
+ Affected countries: Burkina Faso&lt;br /&gt;
993
+ &lt;br /&gt;
994
+ Starting in August 2013, severe floods were reported in many countries across the Sahel. In Burkina Faso, four regions were affected: Est, Boucle de Mouhoun, Sahel and Hauts-Bassins. At least 751 homes and 6,712 people were affected. (&lt;a href=&quot;http://reliefweb.int/report/burkina-faso/burkina-faso-aper%C3%A7u-humanitaire-sur-les-inondations-de-2013-27-a%C3%B4ut-2013&quot;&gt;OCHA, 27 Aug 2013&lt;/a&gt;)&lt;br /&gt;
995
+ &lt;br /&gt;
996
+ Date: 03 Oct 2013&lt;br /&gt;</dc:description>
997
+ <dc:date>Thu, 03 Oct 2013 00:00:00 +0000</dc:date>
998
+ <reliefweb:country>Burkina Faso</reliefweb:country>
999
+ <reliefweb:iso3>bfa</reliefweb:iso3>
1000
+ <reliefweb:disaster_type>Flood</reliefweb:disaster_type>
1001
+ <reliefweb:disaster_type>Flash Flood</reliefweb:disaster_type>
1002
+ <reliefweb:glide>FL-2013-000125-BFA</reliefweb:glide>
1003
+ </item>
1004
+ <item> <title>Cameroon: Floods - Oct 2013</title>
1005
+ <link>http://reliefweb.int/disaster/fl-2013-000123-cmr</link>
1006
+ <description>GLIDE number: FL-2013-000123-CMR&lt;br /&gt;
1007
+ Disaster type: Flood, Flash Flood&lt;br /&gt;
1008
+ Affected countries: Cameroon&lt;br /&gt;
1009
+ &lt;br /&gt;
1010
+ On the night of 17-18 Sep 2013, heavy rains caused the rupture of the dam along the Logone River at the town of Dougui, Kai Kai District in the Far North Region of Cameroon. This caused initial evacuations of people to the banks of the dam. On 27 Sep, a second rupture in the dam 4 km from the first rupture started flooding the area and nearly 9,000 people were displaced and resided in the open air along the banks of the dam. (&lt;a href=&quot;http://reliefweb.int/report/cameroon/cameroon-flash-floods-dref-operation-n%C2%B0-mdrcm016&quot;&gt;IFRC, 1 Oct 2013&lt;/a&gt;).&lt;br /&gt;
1011
+ &lt;br /&gt;
1012
+ Date: 02 Oct 2013&lt;br /&gt;</description>
1013
+ <guid isPermaLink="false">http://reliefweb.int/disaster/fl-2013-000123-cmr</guid>
1014
+ <pubDate>Wed, 02 Oct 2013 00:00:00 +0000</pubDate>
1015
+ <source url="http://reliefweb.int/disasters/rss.xml?sl=environment-disaster_listing">Disasters</source>
1016
+ <dc:title>Cameroon: Floods - Oct 2013</dc:title>
1017
+ <dc:description>GLIDE number: FL-2013-000123-CMR&lt;br /&gt;
1018
+ Disaster type: Flood, Flash Flood&lt;br /&gt;
1019
+ Affected countries: Cameroon&lt;br /&gt;
1020
+ &lt;br /&gt;
1021
+ On the night of 17-18 Sep 2013, heavy rains caused the rupture of the dam along the Logone River at the town of Dougui, Kai Kai District in the Far North Region of Cameroon. This caused initial evacuations of people to the banks of the dam. On 27 Sep, a second rupture in the dam 4 km from the first rupture started flooding the area and nearly 9,000 people were displaced and resided in the open air along the banks of the dam. (&lt;a href=&quot;http://reliefweb.int/report/cameroon/cameroon-flash-floods-dref-operation-n%C2%B0-mdrcm016&quot;&gt;IFRC, 1 Oct 2013&lt;/a&gt;).&lt;br /&gt;
1022
+ &lt;br /&gt;
1023
+ Date: 02 Oct 2013&lt;br /&gt;</dc:description>
1024
+ <dc:date>Wed, 02 Oct 2013 00:00:00 +0000</dc:date>
1025
+ <reliefweb:country>Cameroon</reliefweb:country>
1026
+ <reliefweb:iso3>cmr</reliefweb:iso3>
1027
+ <reliefweb:disaster_type>Flood</reliefweb:disaster_type>
1028
+ <reliefweb:disaster_type>Flash Flood</reliefweb:disaster_type>
1029
+ <reliefweb:glide>FL-2013-000123-CMR</reliefweb:glide>
1030
+ </item>
1031
+ <item> <title>Typhoon Wutip - Oct 2013</title>
1032
+ <link>http://reliefweb.int/disaster/tc-2013-000122-vnm</link>
1033
+ <description>GLIDE number: TC-2013-000122-VNM&lt;br /&gt;
1034
+ Disaster type: Flood, Tropical Cyclone, Flash Flood&lt;br /&gt;
1035
+ Affected countries: China, Lao People&amp;#039;s Democratic Republic (the), Philippines, Thailand, Viet Nam&lt;br /&gt;
1036
+ &lt;br /&gt;
1037
+ After making landfall as Category 1 Typhoon on 30 Sep 2013 on the central provinces of Viet Nam, Wutip passed over Laos on 1 Oct and then moved to Thailand, where it weakened from a typhoon to a tropical depression, bringing heavy rain to the northern regions of the country.
1038
+
1039
+ The most affected provinces in Viet Nam were Quảng Bình and Quảng Trị, followed by Thanh Hóa, Nghệ An, Hà Tĩnh, and Thừa Thiên Huế. 13 people were killed. Over 200,000 houses were unroofed, and 528 houses collapsed. 843 schools, 120 health centers and almost 19,000 hectares paddy, cash-crop and perennial trees damaged were damaged. (&lt;a href=&quot;http://reliefweb.int/report/viet-nam/vietnam-typhoon-wutip-situation-report-no-3-9-october-2013&quot;&gt;UNCT, 9 Oct 2013&lt;/a&gt;)
1040
+
1041
+ Two weeks later, &lt;a href=&quot;http://reliefweb.int/disaster/tc-2013-000132-phl&quot;&gt;Typhoon Nari&lt;/a&gt; made landfall in Viet Nam.
1042
+
1043
+ As of 25 Oct, the water had receded from the flooded provinces (&lt;a href=&quot;http://reliefweb.int/report/viet-nam/vietnam-typhoon-nari-and-update-typhoon-wutip-situation-report-no-3-25-october-2013&quot;&gt;UNCT, 25 Oct 2013&lt;/a&gt;).&lt;br /&gt;
1044
+ &lt;br /&gt;
1045
+ Date: 01 Oct 2013&lt;br /&gt;</description>
1046
+ <guid isPermaLink="false">http://reliefweb.int/disaster/tc-2013-000122-vnm</guid>
1047
+ <pubDate>Tue, 01 Oct 2013 00:00:00 +0000</pubDate>
1048
+ <source url="http://reliefweb.int/disasters/rss.xml?sl=environment-disaster_listing">Disasters</source>
1049
+ <dc:title>Typhoon Wutip - Oct 2013</dc:title>
1050
+ <dc:description>GLIDE number: TC-2013-000122-VNM&lt;br /&gt;
1051
+ Disaster type: Flood, Tropical Cyclone, Flash Flood&lt;br /&gt;
1052
+ Affected countries: China, Lao People&amp;#039;s Democratic Republic (the), Philippines, Thailand, Viet Nam&lt;br /&gt;
1053
+ &lt;br /&gt;
1054
+ After making landfall as Category 1 Typhoon on 30 Sep 2013 on the central provinces of Viet Nam, Wutip passed over Laos on 1 Oct and then moved to Thailand, where it weakened from a typhoon to a tropical depression, bringing heavy rain to the northern regions of the country.
1055
+
1056
+ The most affected provinces in Viet Nam were Quảng Bình and Quảng Trị, followed by Thanh Hóa, Nghệ An, Hà Tĩnh, and Thừa Thiên Huế. 13 people were killed. Over 200,000 houses were unroofed, and 528 houses collapsed. 843 schools, 120 health centers and almost 19,000 hectares paddy, cash-crop and perennial trees damaged were damaged. (&lt;a href=&quot;http://reliefweb.int/report/viet-nam/vietnam-typhoon-wutip-situation-report-no-3-9-october-2013&quot;&gt;UNCT, 9 Oct 2013&lt;/a&gt;)
1057
+
1058
+ Two weeks later, &lt;a href=&quot;http://reliefweb.int/disaster/tc-2013-000132-phl&quot;&gt;Typhoon Nari&lt;/a&gt; made landfall in Viet Nam.
1059
+
1060
+ As of 25 Oct, the water had receded from the flooded provinces (&lt;a href=&quot;http://reliefweb.int/report/viet-nam/vietnam-typhoon-nari-and-update-typhoon-wutip-situation-report-no-3-25-october-2013&quot;&gt;UNCT, 25 Oct 2013&lt;/a&gt;).&lt;br /&gt;
1061
+ &lt;br /&gt;
1062
+ Date: 01 Oct 2013&lt;br /&gt;</dc:description>
1063
+ <dc:date>Tue, 01 Oct 2013 00:00:00 +0000</dc:date>
1064
+ <reliefweb:country>China</reliefweb:country>
1065
+ <reliefweb:country>Lao People&amp;#039;s Democratic Republic (the)</reliefweb:country>
1066
+ <reliefweb:country>Philippines</reliefweb:country>
1067
+ <reliefweb:country>Thailand</reliefweb:country>
1068
+ <reliefweb:country>Viet Nam</reliefweb:country>
1069
+ <reliefweb:iso3>chn</reliefweb:iso3>
1070
+ <reliefweb:iso3>lao</reliefweb:iso3>
1071
+ <reliefweb:iso3>phl</reliefweb:iso3>
1072
+ <reliefweb:iso3>tha</reliefweb:iso3>
1073
+ <reliefweb:iso3>vnm</reliefweb:iso3>
1074
+ <reliefweb:disaster_type>Flood</reliefweb:disaster_type>
1075
+ <reliefweb:disaster_type>Tropical Cyclone</reliefweb:disaster_type>
1076
+ <reliefweb:disaster_type>Flash Flood</reliefweb:disaster_type>
1077
+ <reliefweb:glide>TC-2013-000122-VNM</reliefweb:glide>
1078
+ </item>
1079
+ <item> <title>Cambodia: Floods - Sep 2013</title>
1080
+ <link>http://reliefweb.int/disaster/fl-2013-000131-khm</link>
1081
+ <description>GLIDE number: FL-2013-000131-KHM&lt;br /&gt;
1082
+ Disaster type: Flood, Flash Flood&lt;br /&gt;
1083
+ Affected countries: Cambodia&lt;br /&gt;
1084
+ &lt;br /&gt;
1085
+ Heavy rains starting in the third week of September 2013 resulted in floods in 20 provinces throughout the north-west and along the Mekong River in central and southern Cambodia, killing 188 people and affecting more than 1.7 million. At the height of the floods, more than 144,000 people had been evacuated. As of 8 Nov, waters had receded in the majority of the provinces, although extended areas remained flooded particularly in Banteay Meancheay and Battambang, as well in the central provinces like Kampong Cham and Prey Veng. (&lt;a href=&quot;http://reliefweb.int/report/cambodia/floods-humanitarian-response-forum-hrf-situation-report-no-06-08-november-2013&quot;&gt;Cambodia Humanitarian Response Forum, 8 Nov 2013&lt;/a&gt;)
1086
+
1087
+ By the end of November, waters had mostly receded from all provinces, with the exception of Kampong Chhnang, where the impact of Tropical Storm Krosa at the end of October caused longer stagnation of water. With the recession of waters, people resumed their livelihood activities, in particular farming. Compared to the events in 2011, floods in 2013 appear to have been less extensive in scale, although in some provinces the impact – including number of evacuated families, damaged crops, damaged infrastructure - was more significant due to a combination of factors such as: unexpected gravity of the floods, both in extent and intensity, longer time for waters to recede, repeated floods and flash floods, limited preparedness undertaken in advance, limited early warning. (&lt;a href=&quot;http://reliefweb.int/report/cambodia/floods-humanitarian-response-forum-hrf-final-report-no-07-07-december-2013&quot;&gt;Cambodia Humanitarian Response Forum, 7 Dec 2013&lt;/a&gt;)&lt;br /&gt;
1088
+ &lt;br /&gt;
1089
+ Date: 30 Sep 2013&lt;br /&gt;</description>
1090
+ <guid isPermaLink="false">http://reliefweb.int/disaster/fl-2013-000131-khm</guid>
1091
+ <pubDate>Mon, 30 Sep 2013 00:00:00 +0000</pubDate>
1092
+ <source url="http://reliefweb.int/disasters/rss.xml?sl=environment-disaster_listing">Disasters</source>
1093
+ <dc:title>Cambodia: Floods - Sep 2013</dc:title>
1094
+ <dc:description>GLIDE number: FL-2013-000131-KHM&lt;br /&gt;
1095
+ Disaster type: Flood, Flash Flood&lt;br /&gt;
1096
+ Affected countries: Cambodia&lt;br /&gt;
1097
+ &lt;br /&gt;
1098
+ Heavy rains starting in the third week of September 2013 resulted in floods in 20 provinces throughout the north-west and along the Mekong River in central and southern Cambodia, killing 188 people and affecting more than 1.7 million. At the height of the floods, more than 144,000 people had been evacuated. As of 8 Nov, waters had receded in the majority of the provinces, although extended areas remained flooded particularly in Banteay Meancheay and Battambang, as well in the central provinces like Kampong Cham and Prey Veng. (&lt;a href=&quot;http://reliefweb.int/report/cambodia/floods-humanitarian-response-forum-hrf-situation-report-no-06-08-november-2013&quot;&gt;Cambodia Humanitarian Response Forum, 8 Nov 2013&lt;/a&gt;)
1099
+
1100
+ By the end of November, waters had mostly receded from all provinces, with the exception of Kampong Chhnang, where the impact of Tropical Storm Krosa at the end of October caused longer stagnation of water. With the recession of waters, people resumed their livelihood activities, in particular farming. Compared to the events in 2011, floods in 2013 appear to have been less extensive in scale, although in some provinces the impact – including number of evacuated families, damaged crops, damaged infrastructure - was more significant due to a combination of factors such as: unexpected gravity of the floods, both in extent and intensity, longer time for waters to recede, repeated floods and flash floods, limited preparedness undertaken in advance, limited early warning. (&lt;a href=&quot;http://reliefweb.int/report/cambodia/floods-humanitarian-response-forum-hrf-final-report-no-07-07-december-2013&quot;&gt;Cambodia Humanitarian Response Forum, 7 Dec 2013&lt;/a&gt;)&lt;br /&gt;
1101
+ &lt;br /&gt;
1102
+ Date: 30 Sep 2013&lt;br /&gt;</dc:description>
1103
+ <dc:date>Mon, 30 Sep 2013 00:00:00 +0000</dc:date>
1104
+ <reliefweb:country>Cambodia</reliefweb:country>
1105
+ <reliefweb:iso3>khm</reliefweb:iso3>
1106
+ <reliefweb:disaster_type>Flood</reliefweb:disaster_type>
1107
+ <reliefweb:disaster_type>Flash Flood</reliefweb:disaster_type>
1108
+ <reliefweb:glide>FL-2013-000131-KHM</reliefweb:glide>
1109
+ </item>
1110
+ <item> <title>Colombia: Rainy Season - Sep 2013-Jan 2014</title>
1111
+ <link>http://reliefweb.int/disaster/fl-2013-000145-col</link>
1112
+ <description>GLIDE number: FL-2013-000145-COL&lt;br /&gt;
1113
+ Disaster type: Flood, Flash Flood&lt;br /&gt;
1114
+ Affected countries: Colombia&lt;br /&gt;
1115
+ &lt;br /&gt;
1116
+ Colombia’s second rainy season began on 15 Sep 2013. It typically lasts through mid-December, and forecasts indicate a likelihood of increased rainfall in central Colombia and along the Pacific and Caribbean coasts. The highest precipitation is likely to occur in October and November, with wind storms also predicted. A total of 37,834 people were affected in September, the vast majority due to flooding and wind storms along the Caribbean and Pacific coasts. (&lt;a href=&quot;http://reliefweb.int/report/colombia/colombia-monthly-humanitarian-bulletin-issue-20-01-%E2%80%93-30-september-2013&quot;&gt;OCHA, 30 Sep 2013&lt;/a&gt;)
1117
+
1118
+ In October, floods and windstorms affected 18,000 people (&lt;a href=&quot;http://reliefweb.int/report/colombia/colombia-monthly-humanitarian-bulletin-issue-21-01-31-october-2013&quot;&gt;OCHA, 31 Oct 2013&lt;/a&gt;).
1119
+
1120
+ In November, 4,315 people were affected by flooding in the Department of Chocó (&lt;a href=&quot;http://reliefweb.int/report/brazil/redlac-weekly-note-emergencies-latin-america-caribbean-year-6-volume-333&quot;&gt;OCHA, 25 Nov 2013&lt;/a&gt;).
1121
+
1122
+ Useful Links
1123
+
1124
+ &lt;ul&gt;
1125
+ &lt;li&gt;&lt;a href=&quot;http://www.salahumanitaria.co/&quot;&gt;&lt;/a&gt;&lt;/li&gt;
1126
+ &lt;/ul&gt;&lt;br /&gt;
1127
+ &lt;br /&gt;
1128
+ Date: 30 Sep 2013&lt;br /&gt;</description>
1129
+ <guid isPermaLink="false">http://reliefweb.int/disaster/fl-2013-000145-col</guid>
1130
+ <pubDate>Mon, 30 Sep 2013 00:00:00 +0000</pubDate>
1131
+ <source url="http://reliefweb.int/disasters/rss.xml?sl=environment-disaster_listing">Disasters</source>
1132
+ <dc:title>Colombia: Rainy Season - Sep 2013-Jan 2014</dc:title>
1133
+ <dc:description>GLIDE number: FL-2013-000145-COL&lt;br /&gt;
1134
+ Disaster type: Flood, Flash Flood&lt;br /&gt;
1135
+ Affected countries: Colombia&lt;br /&gt;
1136
+ &lt;br /&gt;
1137
+ Colombia’s second rainy season began on 15 Sep 2013. It typically lasts through mid-December, and forecasts indicate a likelihood of increased rainfall in central Colombia and along the Pacific and Caribbean coasts. The highest precipitation is likely to occur in October and November, with wind storms also predicted. A total of 37,834 people were affected in September, the vast majority due to flooding and wind storms along the Caribbean and Pacific coasts. (&lt;a href=&quot;http://reliefweb.int/report/colombia/colombia-monthly-humanitarian-bulletin-issue-20-01-%E2%80%93-30-september-2013&quot;&gt;OCHA, 30 Sep 2013&lt;/a&gt;)
1138
+
1139
+ In October, floods and windstorms affected 18,000 people (&lt;a href=&quot;http://reliefweb.int/report/colombia/colombia-monthly-humanitarian-bulletin-issue-21-01-31-october-2013&quot;&gt;OCHA, 31 Oct 2013&lt;/a&gt;).
1140
+
1141
+ In November, 4,315 people were affected by flooding in the Department of Chocó (&lt;a href=&quot;http://reliefweb.int/report/brazil/redlac-weekly-note-emergencies-latin-america-caribbean-year-6-volume-333&quot;&gt;OCHA, 25 Nov 2013&lt;/a&gt;).
1142
+
1143
+ Useful Links
1144
+
1145
+ &lt;ul&gt;
1146
+ &lt;li&gt;&lt;a href=&quot;http://www.salahumanitaria.co/&quot;&gt;&lt;/a&gt;&lt;/li&gt;
1147
+ &lt;/ul&gt;&lt;br /&gt;
1148
+ &lt;br /&gt;
1149
+ Date: 30 Sep 2013&lt;br /&gt;</dc:description>
1150
+ <dc:date>Mon, 30 Sep 2013 00:00:00 +0000</dc:date>
1151
+ <reliefweb:country>Colombia</reliefweb:country>
1152
+ <reliefweb:iso3>col</reliefweb:iso3>
1153
+ <reliefweb:disaster_type>Flood</reliefweb:disaster_type>
1154
+ <reliefweb:disaster_type>Flash Flood</reliefweb:disaster_type>
1155
+ <reliefweb:glide>FL-2013-000145-COL</reliefweb:glide>
1156
+ <reliefweb:current>1</reliefweb:current>
1157
+ </item>
1158
+ <item> <title>South Sudan: Measles Outbreak - Sep 2013</title>
1159
+ <link>http://reliefweb.int/disaster/ep-2013-000126-ssd</link>
1160
+ <description>GLIDE number: EP-2013-000126-SSD&lt;br /&gt;
1161
+ Disaster type: Epidemic&lt;br /&gt;
1162
+ Affected countries: South Sudan&lt;br /&gt;
1163
+ &lt;br /&gt;
1164
+ A total of 43 suspected cases of measles were reported in Malakal County in South Sudan&#039;s Upper Nile State since August 2013, according to the Upper Nile State Ministry of Health and WHO. A mass measles vaccination campaign was launched targeting over 31,300 children. (&lt;a href=&quot;http://reliefweb.int/report/south-sudan-republic/south-sudan-humanitarian-bulletin-23-29-september-2013&quot;&gt;OCHA, 29 Sep 2013&lt;/a&gt;)&lt;br /&gt;
1165
+ &lt;br /&gt;
1166
+ Date: 29 Sep 2013&lt;br /&gt;</description>
1167
+ <guid isPermaLink="false">http://reliefweb.int/disaster/ep-2013-000126-ssd</guid>
1168
+ <pubDate>Sun, 29 Sep 2013 00:00:00 +0000</pubDate>
1169
+ <source url="http://reliefweb.int/disasters/rss.xml?sl=environment-disaster_listing">Disasters</source>
1170
+ <dc:title>South Sudan: Measles Outbreak - Sep 2013</dc:title>
1171
+ <dc:description>GLIDE number: EP-2013-000126-SSD&lt;br /&gt;
1172
+ Disaster type: Epidemic&lt;br /&gt;
1173
+ Affected countries: South Sudan&lt;br /&gt;
1174
+ &lt;br /&gt;
1175
+ A total of 43 suspected cases of measles were reported in Malakal County in South Sudan&#039;s Upper Nile State since August 2013, according to the Upper Nile State Ministry of Health and WHO. A mass measles vaccination campaign was launched targeting over 31,300 children. (&lt;a href=&quot;http://reliefweb.int/report/south-sudan-republic/south-sudan-humanitarian-bulletin-23-29-september-2013&quot;&gt;OCHA, 29 Sep 2013&lt;/a&gt;)&lt;br /&gt;
1176
+ &lt;br /&gt;
1177
+ Date: 29 Sep 2013&lt;br /&gt;</dc:description>
1178
+ <dc:date>Sun, 29 Sep 2013 00:00:00 +0000</dc:date>
1179
+ <reliefweb:country>South Sudan</reliefweb:country>
1180
+ <reliefweb:iso3>ssd</reliefweb:iso3>
1181
+ <reliefweb:disaster_type>Epidemic</reliefweb:disaster_type>
1182
+ <reliefweb:glide>EP-2013-000126-SSD</reliefweb:glide>
1183
+ </item>
1184
+ </channel>
1185
+ </rss>