csvhuman 1.0.1 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -57,53 +57,32 @@ class Tag
57
57
  end
58
58
 
59
59
 
60
- def self.guess_type( name, attributes )
61
60
 
62
- if name == 'date'
63
- Date
64
- ## todo/fix: add more well-known names with num required!!!
65
- elsif ['affected', 'inneed', 'targeted', 'reached', 'population'].include?( name )
66
- Integer
67
- else
68
- ## check attributes
69
- if attributes.nil? || attributes.empty?
70
- String ## assume (default to) string
71
- elsif attributes.include?( 'num' ) ||
72
- attributes.include?( 'id') ## assume id is (always) a rowid - why? why not?
73
- Integer
74
- elsif attributes.include?( 'date' ) ### todo/check: exists +date?
75
- Date
76
- elsif name == 'geo' && (attributes.include?('lat') ||
77
- attributes.include?('lon') ||
78
- attributes.include?('elevation'))
79
- Float
80
- elsif attributes.include?( 'killed' ) ||
81
- attributes.include?( 'injured' ) ||
82
- attributes.include?( 'infected' ) ||
83
- attributes.include?( 'displaced' ) ||
84
- attributes.include?( 'idps' ) ||
85
- attributes.include?( 'refugees' ) ||
86
- attributes.include?( 'abducted' ) ||
87
- attributes.include?( 'threatened' ) ||
88
- attributes.include?( 'affected' ) ||
89
- attributes.include?( 'inneed' ) ||
90
- attributes.include?( 'targeted' ) ||
91
- attributes.include?( 'reached' )
92
- Integer
93
- else
94
- String ## assume (default to) string
95
- end
96
- end
97
- end
98
-
99
-
100
-
101
- def self.parse( value )
61
+ ## todo/check: find a better name for optional types keyword/option - why? why not?
62
+ def self.parse( value, types: nil )
102
63
  parts = split( value )
103
64
 
104
65
  name = parts[0]
105
66
  attributes = parts[1..-1] ## todo/fix: check if nil (make it empty array [] always) - why? why not?
106
- type = guess_type( name, attributes )
67
+
68
+
69
+ ## fix!!!!
70
+ ## move types up to parser itself (only one lookup for datafile)!!!
71
+
72
+ ## guess / map type
73
+ types = :default if types.nil?
74
+
75
+ if types.is_a?( Proc ) ## allow/support "custom" mapping procs
76
+ guess_type = types
77
+ else ## assume symbol (for lookup pre-built/known mapping procs)
78
+ guess_type = TYPE_MAPPINGS[ types ]
79
+ if guess_type.nil?
80
+ ## todo/check: issue warning only (and fallback to none/String) - why? why not?
81
+ raise ArgumentError, "missing type mapping >#{types.inspect}< for tag >#{name}<"
82
+ end
83
+ end
84
+
85
+ type = guess_type.call( name, attributes )
107
86
 
108
87
  new( name, attributes, type )
109
88
  end
@@ -115,11 +94,38 @@ class Tag
115
94
  attr_reader :attributes ## use attribs or something shorter - why? why not?
116
95
  attr_reader :type
117
96
 
97
+
118
98
  def initialize( name, attributes=nil, type=String )
119
99
  @name = name
120
100
  ## sorted a-z - note: make sure attributes is [] NOT nil if empty - why? why not?
121
101
  @attributes = attributes || []
122
- @type = type ## type class (defaults to String)
102
+ ## todo/check attributes:
103
+ ## "extract" two-letter language codes e.g. en, etc. - why? why not?
104
+ ## "extract" type codes e.g. num, date - why? why not?
105
+
106
+ ## type as
107
+ ## - class (defaults to String) or
108
+ ## - "custom" symbol (e.g. :geo, :geo_lat_lon,:geo_coords,:code,:id, etc.)
109
+ @type = type
110
+
111
+ if @type == String ## note: String gets passed through as-is 1:1 (no converter required)
112
+ @conv = nil
113
+ else
114
+ @conv = TYPE_CONVERTERS[ @type ]
115
+
116
+ if @conv.nil?
117
+ ## todo/check: use a different exception - why? why not?
118
+ ## default to string (and warning only) - why? why not?
119
+ raise ArgumentError, "missing type converter >#{type.inspect}< for tag >#{to_s}<"
120
+ end
121
+ end
122
+ end
123
+
124
+
125
+ ## todo/check: rename to/use convert or call - why? why not?
126
+ def typecast( value )
127
+ ## note: if conv is nil/null - pass value through as is (1:1); used for Strings (by default)
128
+ @conv ? @conv.call( value ) : value
123
129
  end
124
130
 
125
131
 
@@ -153,49 +159,6 @@ class Tag
153
159
  buf
154
160
  end
155
161
 
156
-
157
- def typecast( value ) ## use convert or call - why? why not?
158
- if @type == Integer
159
- conv_to_i( value )
160
- elsif @type == Float
161
- conv_to_f( value )
162
- elsif @type == Date
163
- conv_to_date( value )
164
- else ## assume String
165
- # pass through as is
166
- value
167
- end
168
- end
169
-
170
-
171
- private
172
- def conv_to_i( value )
173
- if value.nil? || value.empty?
174
- nil ## return nil - why? why not?
175
- else
176
- Integer( value )
177
- end
178
- end
179
-
180
- def conv_to_f( value )
181
- if value.nil? || value.empty?
182
- nil ## return nil - why? why not?
183
- else
184
- ## todo/fix: add support for NaN, Inf, -Inf etc.
185
- ## how to deal with conversion errors (throw exception? ignore? NaN? why? why not?)
186
- Float( value )
187
- end
188
- end
189
-
190
- def conv_to_date( value )
191
- if value.nil? || value.empty?
192
- nil ## return nil - why? why not?
193
- else
194
- ## todo/fix: add support for more formats
195
- ## how to deal with conversion errors (throw exception? ignore? why? why not?)
196
- Date.strptime( value, "%Y-%m-%d" )
197
- end
198
- end
199
162
  end # class Tag
200
163
 
201
164
 
@@ -4,8 +4,8 @@
4
4
  class CsvHuman
5
5
 
6
6
  MAJOR = 1
7
- MINOR = 0
8
- PATCH = 1
7
+ MINOR = 1
8
+ PATCH = 0
9
9
  VERSION = [MAJOR,MINOR,PATCH].join('.')
10
10
 
11
11
 
@@ -0,0 +1,6 @@
1
+ id,ident,type,name,latitude_deg,longitude_deg,elevation_ft,continent,iso_country,iso_region,municipality,scheduled_service,gps_code,iata_code,local_code,home_link,wikipedia_link,keywords,score,last_updated
2
+ "#meta +id","#meta +code","#loc +airport +type","#loc +airport +name","#geo +lat","#geo +lon","#geo +elevation +ft","#region +continent +code","#country +code +iso2","#adm1 +code +iso","#loc +municipality +name","#status +scheduled","#loc +airport +code +gps","#loc +airport +code +iata","#loc +airport +code +local","#meta +url +airport","#meta +url +wikipedia","#meta +keywords","#meta +score","#date +updated"
3
+ 4976,NSFA,medium_airport,"Faleolo International Airport",-13.829999923706055,-172.00799560546875,58,OC,WS,WS-AA,Apia,1,NSFA,APW,,,http://en.wikipedia.org/wiki/Faleolo_International_Airport,,1050,2009-08-31T16:22:49+00:00
4
+ 35173,NSMA,small_airport,"Maota Airport",-13.742300033569336,-172.25799560546875,,OC,WS,WS-PA,Maota,1,NSMA,MXS,,,http://en.wikipedia.org/wiki/Maota_Airport,"Savaii Island",450,2009-08-31T16:13:53+00:00
5
+ 31127,NSFI,small_airport,"Fagali'i Airport",-13.848699569699999,-171.740005493,131,OC,WS,WS-TU,Apia,0,NSFI,FGI,,,http://en.wikipedia.org/wiki/Fagali'i_Airport,,50,2012-11-26T12:09:24+00:00
6
+ 30608,NSAU,small_airport,"Asau Airport",-13.505132,-172.627888,,OC,WS,WS-VS,Asau,1,NSAU,AAU,,,http://en.wikipedia.org/wiki/Asau_Airport,,50,2016-06-01T06:17:22+00:00
@@ -0,0 +1,76 @@
1
+ %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2
+ % HXL Lat Long Mapper Sample Data
3
+ % see http://simonbjohnson.github.io/HXL-Lat-Long-Mapper/
4
+
5
+
6
+ Status,Country,Primary Organisation,Type,Latitude,Longitude
7
+ #status,#country,#org,#activity,#lat_deg,#lon_deg
8
+ Functional,Liberia,Samaritans Purse,ETC,8.36164,-10.21038
9
+ Functional,Liberia,MSF,ETC,8.35454,-10.20037
10
+ Functional,Liberia,MSF,Triage,8.42277,-9.7532264
11
+ Functional,Liberia,Samaritans Purse,ETC,6.2393809,-10.6965137
12
+ Functional,Liberia,MOH,ETC,6.2393809,-10.6965137
13
+ Functional,Liberia,MSF,ETC,6.24415,-10.69957
14
+ Functional,Liberia,MOH,Triage,6.32445,-10.8073
15
+ Functional,Liberia,MOH,ETC,6.28723,-10.77325
16
+ Functional,Liberia,MOH,Triage,6.3697076,-10.7919744
17
+ Functional,Liberia,MOH,ETC,6.3843716,-10.7871135
18
+ Pending,Liberia,,ETC,6.30892,-10.80411
19
+ Pending,Liberia,,ETC,6.25697,-10.70202
20
+ Pending,Liberia,,ETC,6.26969,-10.7347
21
+ Pending,Liberia,No Partner Identified,ETC,6.3279815,-10.79777
22
+ Pending,Liberia,No Partner Identified,ETC,6.3279815,-10.79777
23
+ Pending,Liberia,No Partner Identified,ETC,6.3279815,-10.79777
24
+ Pending,Liberia,No Partner Identified,ETC,6.2734,-10.79777
25
+ Closed,Liberia,Saint John of God,Hospital,6.2734,-10.75509
26
+ Pending,Liberia,No Partner Identified,ETC,7.35261,-8.71733
27
+ Functional,Liberia,No Partner Identified,ETC,7.2203,-8.9813
28
+ Functional,Liberia,No Partner Identified,ETC,7.02794,-9.55329
29
+ Functional,Liberia,IMC,ETC,6.9622195,-9.7134459
30
+ Functional,Liberia,MOH,Triage,6.8665,-10.8257
31
+ Pending,Liberia,Save the Children,ETC,6.5267,-10.3412
32
+ Pending,Liberia,No Partner Identified,ETC,5.8161533,-8.0995537
33
+ Functional,Guinea,MSF,ETC,9.53564,-13.6832
34
+ Functional,Guinea,MSF,ETC,8.56152,-10.13236
35
+ Functional,Guinea,MOH,Holding Centre,8.53688,-9.46481
36
+ Closed,Guinea,MSF,ETC,10.9115,-13.0299
37
+ Pending,Guinea,N/A,Holding Centre,7.7621,-8.8143
38
+ Pending,Guinea,N/A,Holding Centre,7.5695786,-9.2597491
39
+ Functional,Guinea,MSF,Triage,10.74207,-11.10646
40
+ Functional,Guinea,MSF,Triage,9.19844,-10.10352
41
+ Pending,Guinea,No Partner Identified,Holding Centre,9.4312135,-13.0918656
42
+ Functional,Sierra Leone,MOH,ETC,7.87517,-11.18473
43
+ Functional,Sierra Leone,IFRC,ETC,7.9390302,-11.1422825
44
+ Functional,Sierra Leone,MSF,ETC,8.27685,-10.56647
45
+ Functional,Sierra Leone,MSF,Triage,8.4616449,-10.3363192
46
+ Functional,Sierra Leone,MSF,Triage,8.2808305,-10.372805
47
+ Functional,Sierra Leone,MSF,Triage,7.4941267,-11.1693745
48
+ Functional,Sierra Leone,King's Health Partners UK,Triage,8.48823,-13.2384
49
+ Pending,Sierra Leone,No Partner Identified,Triage,8.4790017,-13.2680158
50
+ Functional,Sierra Leone,,Triage,8.387303,-13.1387201
51
+ Functional,Sierra Leone,,Triage,8.3362545,-13.0071441
52
+ Functional,Sierra Leone,MSF,ETC,7.9620299,-11.7364775
53
+ Functional,Sierra Leone,MSF,Triage,7.86568,-11.70837
54
+ Pending,Sierra Leone,EMERGENCY,Holding Centre,8.3973667,-13.2635501
55
+ Pending,Sierra Leone,UKDFID,ETC,8.2693344,-13.0878517
56
+ Pending,Sierra Leone,IMC,ETC,8.6868342,-12.543584
57
+ Pending,Sierra Leone,Addax Bio Energy Sierra Leone,ETC,8.8882804,-12.0439135
58
+ Functional,Sierra Leone,,Holding Centre,9.323289,-12.1955
59
+ Functional,Sierra Leone,,Holding Centre,9.323289,-12.1955
60
+ Functional,Sierra Leone,,Holding Centre,9.323289,-12.1955
61
+ Functional,Sierra Leone,,Holding Centre,8.7651729,-12.7849451
62
+ Closed,Nigeria,MOH,Hospital,6.4485325,3.4108534
63
+ Functional,Nigeria,MOH,ETC,6.497892,3.382923
64
+ Functional,Nigeria,MOH,Triage,4.8178445,6.9119515
65
+ Pending,Nigeria,MOH,Triage,9.6187093,6.5475752
66
+ Pending,Nigeria,MOH,Triage,5.517,5.75
67
+ Pending,Nigeria,MOH,Triage,5.4941876,5.9953209
68
+ Pending,Nigeria,MOH,Triage,5.894053,5.67666
69
+ Pending,Nigeria,MOH,Triage,6.264399,6.147732
70
+ Pending,Nigeria,MOH,Triage,5.483333,6.183333
71
+ Pending,Nigeria,MOH,Triage,5.7439387,5.9904916
72
+ Pending,Nigeria,MOH,Triage,5.483333,6.1
73
+ Functional,Senegal,MOH,Hospital,14.69287,-17.46639
74
+ Pending,Senegal,MOH,ETC,14.69287,-17.46639
75
+ Functional,Togo,,Triage,6.12586,1.22485
76
+ Pending,Mali,,Triage,12.6500083,-8.0000014
@@ -0,0 +1,94 @@
1
+ %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2
+ % Ebola - West Africa - Ebola Treatment Centres, Isolation Wards Hospitals and Transit Centres
3
+ % see https://data.humdata.org/dataset/ebola-west-africa-ebola-treatment-centres-isolation-wards-hospitals-and-transit-centres
4
+
5
+
6
+ Please see: https://data.hdx.rwlabs.org/dataset/ebola-treatment-centers,,,,,,,,,,,,,,,,,,,,,,,,,,
7
+ THIS DATASET IS NO LONGER BEING UPDATED,,,,,,,,,,,,,,,,,,,,,,,,,,
8
+ Ebola - West Africa - ETCs,,,,,,,,,,,,,,,,,,,,,,,,,,
9
+ ETCs ,,,,,,,,,,,,,Type Colour Key WHO (21 Oct 2014),,Type Colour Key DoD (06 Nov 2014),,,,,,,,,,,
10
+ Short URL of this: http://goo.gl/pVb4GC,,,,,,,,,,,,,,ETC is planned for this site but there is no Partner yet,.,No partner interest,,,,,,,,,,
11
+ This on GitHub as GeoJson: https://github.com/BrcMapsTeam/Ebola_2014_West_Africa_medical_centres/blob/master/Ebola_medical_centres_open_closed_pending.geojson,,,,,,,,,,,,,,ETC is planned with a Partner identified,.,Partner registered interest but no MOU signed,,,,,,,,,,
12
+ N.B. Not all health facilities may be recorded. Subject to update as more information becomes avaliable.,,,,,,,,,,,,,,ETC is open,.,"Partner confirmed (MOU signed, funding allocated)",,,,,,,,,,
13
+ Feedback to simon_b_johnson on skype,,,,,,,,,,,,,,No Information,.,No Information,,,,,,OSM Colour Key,,,,
14
+ ,,,,,,,,,,,,,,,,ETC Open,,,,,,,Verified Coordinates,,,
15
+ Last full update 19/11/2014,,,,,,,,,,,,,Further Information,,,,,,,,,,County Centroid,,,
16
+ ,,,,,,,,,,,,,Triage,Includes referral and Isolation,,,,,,,,,Town Centroid,,,
17
+ ,,,,,,,,,,,,,ETC,"Treatment centre, some include isolation areas",,,,,,,,,,,,
18
+ Status,"ID [left(B5,3)&left(E5,3)]",Country,Adm1,Adm1 P-Code,Adm2,Adm2 P-Code,Location,Centre Name,Primary Organisation (Clinical Management),Secondary Organisation,Third Organisation,Fourth Organisation,Type1,Type2,WHO Status (SLE & GIN: 21/10/14) & DoD Status (LBR: 06/11/14),Capacity (Current/ planned total beds),Notes,Last updated,"Source (Capacity, Notes, Opening/ Closing)",Centre opening date,Centre closing date,OSM,Latitude,Longitude,Coordinates_Loc,Staff Numbers
19
+ #status,#loc+code,#country,#adm1,#adm1+code,#adm2,#adm2+code,#loc,#loc,#org,#org,#org,#org,#loc+type,#loc+type,#status,#indicator+status,#meta+notes,#date+report,#meta+source+url,#date+from,#date+to,#meta+url,#geo+lat,#geo+lng,#status,#indicator+staff
20
+ Functional,LibTub2,Liberia,Bomi,LR01,Senjeh,,Tubmanburg,Tubmanburg ETC,IOM,AFL,,,ETC,,"Partner confirmed (MOU signed, funding allocated)",100,Operational. As of 11 Nov had 27 of its planned 100 beds in operation. Construction finished 13 Nov 2014 (USA Site build). ,19/11/2014,"https://community.apan.org/apcn/ern/m/intelligence/140104.aspx; InternationalSOS; https://data.hdx.rwlabs.org/dataset/usg-etu-build-out-as-12-nov; https://community.apan.org/apcn/ern/m/civ-mil/139562.aspx; http://reliefweb.int/sites/reliefweb.int/files/resources/Regional%20Map.pdf; https://data.hdx.rwlabs.org/dataset/etc-overview-21-october; DoD; http://www.mohsw.gov.lr/documents/SITRep%20146%20Oct%208th,%202014.pdf; http://reliefweb.int/sites/reliefweb.int/files/resources/MA012_EbolaResponseUnits_v5-300dpi.pdf.pdf; http://reliefweb.int/sites/reliefweb.int/files/resources/www.mapaction.org__component_mapcat_mapdetail_index_2.pdf",09/11/2014,-,http://www.openstreetmap.org/search?query=6.8673361%09-10.8309449#map=11/6.8673/-10.8309,6.8673361,-10.8309449,verified,
21
+ Functional,LibBon,Liberia,Bong,LR02,Suakoko,,Gbarnga,Bong County ETC,IMC,,,,ETC,Triage,ETC Open,70,"Operational. Current 70, Potenetial capacity 70.. Open. USG Supported. May expand later. Expected to open 08 September",19/11/2014,"https://data.hdx.rwlabs.org/dataset/usg-etu-build-out-as-12-nov; https://community.apan.org/apcn/ern/m/civ-mil/139562.aspx; http://reliefweb.int/sites/reliefweb.int/files/resources/Regional%20Map.pdf; https://data.hdx.rwlabs.org/dataset/etc-overview-21-october; DoD; http://reliefweb.int/sites/reliefweb.int/files/resources/Liberia%20Ebola%20Situation%20Report%2005.pdf; http://reliefweb.int/sites/reliefweb.int/files/resources/Liberia%20Ebola%20Situation%20Report%2006%20.pdf; WHO Foreign Medical Teams International Response; http://reliefweb.int/sites/reliefweb.int/files/resources/UNICEF%20Liberia%20Ebola%20Virus%20Disease%20Epidemic%20SitRep%20No.%2050,%205%20September%202014.pdf",15/09/2014,-,http://www.openstreetmap.org/search?query=6.9999996%09-9.5549977#map=11/7.0000/-9.5550,6.9999996,-9.5549977,verified,
22
+ Functional,LibPhe,Liberia,Bong,LR02,Suakoko,,Suakoko,Phebe Hospital,No Partner Identified,,,,ETC,Triage,,52,"Operational. A 7-bed Isolation Centre has been added to the Phebe Hospital in Suakoko.. The new 50 bed facility has been handed over to the County Authority and is awaiting admissions, as at 10 September. Hospital to ETC. As at 22 August, a new ETU is being constructed however it is not determined how the clinic services will be run",19/11/2014,https://community.apan.org/apcn/ern/m/intelligence/140104.aspx; https://www.internationalsos.com/ebola/index.cfm?content_id=396&language_id=ENG,10/09/2014,-,http://www.openstreetmap.org/node/2985105315#map=19/7.02794/-9.55329,7.02794,-9.55329,verified,
23
+ Pending,LibBop,Liberia,Gbarpolu,LR03,Bopolu,,Bopolu,Gbarpolu ETC,USAID Contract,,,,ETC,,No partner interest,50,Site surveyed. Opening with 10 beds week 23-29 Nov; Reach full capacity week 11-17 Jan. Construction finished 19 Dec 2014 (USA Site build).,19/11/2014,https://community.apan.org/apcn/ern/m/intelligence/140104.aspx; https://data.hdx.rwlabs.org/dataset/usg-etu-build-out-as-12-nov; https://community.apan.org/apcn/ern/m/civ-mil/139562.aspx; http://reliefweb.int/sites/reliefweb.int/files/resources/Regional%20Map.pdf; https://data.hdx.rwlabs.org/dataset/etc-overview-status;https://data.hdx.rwlabs.org/dataset/etc-overview-21-october; DoD,N/A,N/A,http://www.openstreetmap.org/search?query=7.06667%09-10.48750#map=13/7.0667/-10.4875,7.06667,-10.4875,town_centroid,
24
+ Pending,LibBuc,Liberia,Grand Bassa,LR04,Neekreen,,Buchanan,Arcelor Mittal Hospital (India),IOM,AFL,,,ETC,,"Partner confirmed (MOU signed, funding allocated)",50,Site surveyed. Opening with 10 beds week 14-20 Dec; Reach full capacity week >31 Jan. Construction finished 02 Dec 2014 (USA Ste build). ,19/11/2014,https://community.apan.org/apcn/ern/m/intelligence/140104.aspx; https://data.hdx.rwlabs.org/dataset/usg-etu-build-out-as-12-nov; https://community.apan.org/apcn/ern/m/civ-mil/139562.aspx; http://reliefweb.int/sites/reliefweb.int/files/resources/Regional%20Map.pdf; https://data.hdx.rwlabs.org/dataset/etc-overview-21-october; DoD; http://reliefweb.int/sites/reliefweb.int/files/resources/www.mapaction.org__component_mapcat_mapdetail_index_2.pdf,N/A,N/A,http://www.openstreetmap.org/search?query=5.875708%09-10.0200361#map=11/5.8757/-10.0200,5.875708,-10.0200361,verified,
25
+ Pending,LibSin,Liberia,Grand Cape Mount,LR05,Garwula,,Sinje,Sinje ETC,IOM,AFL,,,ETC,,"Partner confirmed (MOU signed, funding allocated)",100,Under construction. Opening with 10 beds week 30 Nov - 6 Dec; Reach full capacity week 18-24 Jan.USG Supported Ground breaking ceremony was held for the Holding center on 8 Oct.,19/11/2014,"https://community.apan.org/apcn/ern/m/intelligence/140104.aspx; https://data.hdx.rwlabs.org/dataset/usg-etu-build-out-as-12-nov; https://community.apan.org/apcn/ern/m/civ-mil/139562.aspx; http://reliefweb.int/sites/reliefweb.int/files/resources/Regional%20Map.pdf; https://data.hdx.rwlabs.org/dataset/etc-overview-21-october; DoD; http://www.mohsw.gov.lr/documents/SITRep%20146%20Oct%208th,%202014.pdf; http://reliefweb.int/sites/reliefweb.int/files/resources/MA012_EbolaResponseUnits_v5-300dpi.pdf.pdf; http://reliefweb.int/sites/reliefweb.int/files/resources/www.mapaction.org__component_mapcat_mapdetail_index_2.pdf",N/A,N/A,http://www.openstreetmap.org/search?query=6.8163865%09-11.1389492#map=11/6.8164/-11.1389,6.8163865,-11.1389492,verified,
26
+ Pending,Libzwe,Liberia,Grand Gedeh,LR06,Tchien,,Zwedru,Zwedru ETC,Partners in Health,,,,ETC,,"Partner confirmed (MOU signed, funding allocated)",50,Site Surveyed. Opening with 10 beds week 07-13 Dec; Reach full capacity week 11-17 Jan. Construction finished 10 Dec 2014. Start with 10 beds increasing to 60. Planned. USG Supported. Site location TBD,19/11/2014,https://data.hdx.rwlabs.org/dataset/usg-etu-build-out-as-12-nov; https://community.apan.org/apcn/ern/m/civ-mil/139562.aspx; http://reliefweb.int/sites/reliefweb.int/files/resources/Regional%20Map.pdf; https://data.hdx.rwlabs.org/dataset/etc-overview-21-october; DoD; http://reliefweb.int/sites/reliefweb.int/files/resources/MA012_EbolaResponseUnits_v5-300dpi.pdf.pdf: http://reliefweb.int/sites/reliefweb.int/files/resources/www.mapaction.org__component_mapcat_mapdetail_index_2.pdf,N/A,N/A,http://www.openstreetmap.org/search?query=06.0666608%2C%20-008.1280599#map=11/6.0668/-8.1278,6.0666608,-8.1280599,verified,
27
+ Pending,LibGrG,Liberia,Grand Gedeh,LR06,,,Grand Gedeh,Grand Gedeh ETC,NGO,,,,ETC,,,50,Planned,19/11/2014,https://community.apan.org/apcn/ern/m/intelligence/140104.aspx,N/A,N/A,,,,,
28
+ Pending,,Liberia,Grand Kru,LR07,Barclayville,,Barclayville,Barclayville ETC,USAID Contract,,,,ETC,,No partner interest,50,Site surveyed - Site confirmed by JFC-UA recon team. Opening with 10 beds week 14-20 Dec; Reach full capacity week >31 Jan. Construction finished 30 Dec 2014 (USA Site build). USG Supported. Start at 10 beds increasing to 50. Planned,19/11/2014,https://community.apan.org/apcn/ern/m/intelligence/140104.aspx; https://data.hdx.rwlabs.org/dataset/usg-etu-build-out-as-12-nov; https://community.apan.org/apcn/ern/m/civ-mil/139562.aspx; http://reliefweb.int/sites/reliefweb.int/files/resources/Regional%20Map.pdf; https://data.hdx.rwlabs.org/dataset/etc-overview-21-october; http://reliefweb.int/sites/reliefweb.int/files/resources/www.mapaction.org__component_mapcat_mapdetail_index_2.pdf,N/A,N/A,http://www.openstreetmap.org/search?query=04.6874017%2C%20-008.2400582#map=11/4.6874/-8.2401,4.6874017,-8.2400582,verified,
29
+ Functional,LibFoy,Liberia,Lofa,LR08,Foya,,Foya,Foya Case Management Centre (CMC Foya MSF),MSF,Samaritans Purse,,,ETC,Triage,,30,Samaritan’s Purse assumed responsibility for the CMC in Foya from MSF on July 8. The facility has been expanded and can now serve a maximum of 30 patients. ,25/09/2014,http://reliefweb.int/sites/reliefweb.int/files/resources/Situation%20Report%20for%20ReliefWeb.pdf http://www.samaritans-purse.org.uk/battling-an-ebola-outbreak/,08/07/2014,-,http://www.openstreetmap.org/search?query=8.378911%20-10.205757#map=14/8.3789/-10.2058,8.378911,-10.205757,verified,
30
+ Functional,LibBor,Liberia,Lofa,LR08,Foya,,Foya,Borma Hospital,MSF,,,,ETC,Triage,ETC Open,70,"Current beds 70, planned (potential) beds 140 - 31/10/14. Borma Hospital Ebola Treatment Unit (ETU) being run by Medecins Sans Frontieres (MSF) has a capacity of 100 beds. Expansion to 80 beds underway",13/11/2014,https://data.hdx.rwlabs.org/dataset/usg-etu-build-out-as-12-nov; https://community.apan.org/apcn/ern/m/civ-mil/139562.aspx; https://data.hdx.rwlabs.org/dataset/etc-overview-21-october; https://www.internationalsos.com/ebola/index.cfm?content_id=396&language_id=ENG,15/08/2014,-,http://www.openstreetmap.org/search?query=8.35454%2C-10.20037#map=18/8.35454/-10.20037,8.35454,-10.20037,town_centroid,
31
+ Pending,LibVoi,Liberia,Lofa,LR08,Voinjama,,Vonjama,Voinjama ETC,GOAL,AFL,,,ETC,,Partner registered interest but no MOU signed,50,Under construction. Opening with 10 beds week 30 Nov - 6 Dec; Reach full capacity week 18-24 Jan. Construction finished 30 Nov 2014 (USA Site build).,19/11/2014,https://community.apan.org/apcn/ern/m/intelligence/140104.aspx; https://data.hdx.rwlabs.org/dataset/usg-etu-build-out-as-12-nov; https://community.apan.org/apcn/ern/m/civ-mil/139562.aspx; http://reliefweb.int/sites/reliefweb.int/files/resources/Regional%20Map.pdf; https://data.hdx.rwlabs.org/dataset/etc-overview-21-october; DoD,N/A,N/A,http://www.openstreetmap.org/search?query=08.4123824%2C%20-009.7692426#map=10/8.4126/-9.7696,8.4123824,-9.7692426,verified,
32
+ Pending,LibZor,Liberia,Lofa,LR08,Zorzor,,Zorzor,Zorzor ETC,USAID Contract,AFL,,,ETC,,No partner interest,50,Site surveyed. Opening with 10 beds week 07-13 Dec; Reach full capacity week 25-31 Jan. Construction finished 29 Nov 2014 (USA Site build).,19/11/2014,https://community.apan.org/apcn/ern/m/intelligence/140104.aspx; https://data.hdx.rwlabs.org/dataset/usg-etu-build-out-as-12-nov; https://community.apan.org/apcn/ern/m/civ-mil/139562.aspx: http://reliefweb.int/sites/reliefweb.int/files/resources/Regional%20Map.pdf; https://data.hdx.rwlabs.org/dataset/etc-overview-21-october; DoD; http://reliefweb.int/sites/reliefweb.int/files/resources/www.mapaction.org__component_mapcat_mapdetail_index_2.pdf,N/A,N/A,http://www.openstreetmap.org/search?query=07.7771365%2C%20-009.4286082#map=10/7.7771/-9.4286,7.7771365,-9.4286082,verified,
33
+ Functional,LibFir,Liberia,Margibi,LR09,Firestone,,Firestone,Firestone Medical Center,Firestone Company,,,,ETC,,ETC Open,31,Liberia Ebola SitRep no. 123,21/10/2014,https://data.hdx.rwlabs.org/dataset/etc-overview-21-october; DoD; Liberia Ebola SitRep no. 123,?,-,http://www.openstreetmap.org/search?query=06.3530546%2C%20-010.4697211#map=15/6.3511/-10.4675,6.3530546,-10.4697211,verified,
34
+ Functional,LibKak1,Liberia,Margibi,LR09,Kakata,,Kakata 1,Kakata 1 (Save the Children),IMC,NGO,,,ETC,,"Partner confirmed (MOU signed, funding allocated)",50,Opening with 10 beds 20 Nov; Reach full capacity week 11-17 Jan.Construction finished 10 Nov 2014. Save the Children is the constructing the ETU in Margibi County.,19/11/2014,https://community.apan.org/apcn/ern/m/intelligence/140104.aspx; https://data.hdx.rwlabs.org/dataset/usg-etu-build-out-as-12-nov; https://community.apan.org/apcn/ern/m/civ-mil/139562.aspx; https://data.hdx.rwlabs.org/dataset/etc-overview-21-october; DoD; http://reliefweb.int/sites/reliefweb.int/files/resources/MA012_Ebola_Treatment_Units_v4-300dpi.pdf.pdf; Liberia Ebola SitRep Sept 4.; WHO Foreign Medical Teams International Response,20/11/2014,-,http://www.openstreetmap.org/search?query=6.56250%09-10.32194#map=19/6.56250/-10.32194,6.5625,-10.32194,verified,
35
+ Pending,LibKak2,Liberia,Margibi,LR09,Kakata,,Kakata 1,Kakata 2 AFL,AFL,,,,ETC,,,100,Under construction,19/11/2014,https://community.apan.org/apcn/ern/m/intelligence/140104.aspx,N/A,N/A,http://www.openstreetmap.org/search?query=06.5445702%2C%20-010.3546904#map=14/6.5446/-10.3547,6.5445702,-10.3546904,verified,
36
+ Pending,LibMar,Liberia,Maryland,LR10,,,Harper,Harper ETC,USAID Contract,,,,ETC,,"Partner confirmed (MOU signed, funding allocated)",50,Site surveyed. Opening with 10 beds week 21-27 Dec; Reach full capacity week 25-31 Jan. Construction finished 30 Dec 2014. (USA Site build). USG Supported. Start at 10 beds increasing to 60. Planned. Location site TBD,19/11/2014,https://community.apan.org/apcn/ern/m/intelligence/140104.aspx; https://data.hdx.rwlabs.org/dataset/usg-etu-build-out-as-12-nov; https://community.apan.org/apcn/ern/m/civ-mil/139562.aspx; http://reliefweb.int/sites/reliefweb.int/files/resources/Regional%20Map.pdf; https://data.hdx.rwlabs.org/dataset/etc-overview-21-october; http://reliefweb.int/sites/reliefweb.int/files/resources/www.mapaction.org__component_mapcat_mapdetail_index_2.pdf,N/A,N/A,http://www.openstreetmap.org/search?query=04.4239296%2C%20-007.6801905#map=10/4.4245/-7.6808,4.4239296,-7.6801905,verified,
37
+ Pending,LibMar2,Liberia,Maryland,LR10,,,Maryland,Maryland ETC,USAID Contract,,,,ETC,,,,Suggested,19/11/2014,https://community.apan.org/apcn/ern/m/intelligence/140104.aspx,N/A,N/A,,,,,
38
+ Functional,LibUni,Liberia,Montserrado,LR11,,,Banjao,Unity Convention Centre,MoH Liberia,,,,ETC,,No partner interest,96,Operational. Opening with 10 beds week 09-15 Nov; Reach full capacity week 21-27 Dec,19/11/2014,https://community.apan.org/apcn/ern/m/intelligence/140104.aspx; https://data.hdx.rwlabs.org/dataset/usg-etu-build-out-as-12-nov; https://community.apan.org/apcn/ern/m/civ-mil/139562.aspx; https://data.hdx.rwlabs.org/dataset/etc-overview-21-october; DoD,?,-,http://www.openstreetmap.org/way/142141782#map=19/6.38906/-10.79286,6.38906,-10.79286,verified,
39
+ Functional,LibELW1,Liberia,Montserrado,LR11,,,Monrovia,ELWA1 Hospital,Samaritans Purse,MSF,,,ETC,,,60,"Operational. Unknown capacity. In Monrovia, an MSF emergency team is building a new tented treatment center with capacity for 40–60 beds. It is scheduled to open on July 27 and will also be run by Samaritan’s Purse.",19/11/2014,https://community.apan.org/apcn/ern/m/intelligence/140104.aspx; https://www.internationalsos.com/ebola/index.cfm?content_id=396&language_id=ENG http://www.doctorswithoutborders.org/our-work/medical-issues/ebola,27/07/2014,-,http://www.openstreetmap.org/node/2996153469#map=19/6.23938/-10.69651,6.2393809,-10.6965137,verified,
40
+ Functional,LibELW2,Liberia,Montserrado,LR11,,,Monrovia,ELWA2 Hospital,MOH Liberia,WHO,,,ETC,,ETC Open,40,"Operational. Total beds existing 40 (19/11/14) Total beds existing 70 (13/11/14). An estimated 200 to 400 personnel are required to run the facility, the largest Ebola Treatment Unit",19/11/2014,https://community.apan.org/apcn/ern/m/intelligence/140104.aspx; https://data.hdx.rwlabs.org/dataset/usg-etu-build-out-as-12-nov; https://community.apan.org/apcn/ern/m/civ-mil/139562.aspx; https://data.hdx.rwlabs.org/dataset/etc-overview-21-october; https://www.internationalsos.com/ebola/index.cfm?content_id=396&language_id=ENG; WHO data,17/07/2014,-,http://www.openstreetmap.org/search?query=6.23965%09-10.69600#map=17/6.23966/-10.69600,6.23965,-10.696,verified,
41
+ Functional,LibELW3,Liberia,Montserrado,LR11,,,Monrovia,ELWA3 Hospital,MSF,,,,ETC,Triage,ETC Open,200,"Operational. Beds: 200 (19/11/14) Beds: 250 (pre 19/11/14). Total planned beds: 400; 150 additional beds to be put in place to reach maximum. An estimated 200 to 400 personnel are required to run the facility, the largest Ebola Treatment Unit",19/11/2014,https://community.apan.org/apcn/ern/m/intelligence/140104.aspx; https://data.hdx.rwlabs.org/dataset/etc-overview-21-october: http://www.doctorswithoutborders.org/news-stories/field-news/liberia-msfs-new-ebola-management-centers-already-overwhelmed http://www.doctorswithoutborders.org/news-stories/field-news/msf-begins-admitting-patients-ebola-center-monrovia-liberia; WHO Foreign Medical Teams International Response; WHO data,18/08/2014,-,http://www.openstreetmap.org/search?query=6.24444%09-10.70028#map=17/6.24444/-10.70028,6.24444,-10.70028,verified,19 International; 250 National
42
+ Pending,LibELW4,Liberia,Montserrado,LR11,,,Monrovia,ELWA4 Hospital,,,,,ETC,,,,Under construction,20/10/2014,https://community.apan.org/apcn/ern/m/intelligence/140104.aspx; DoD,N/A,N/A,http://www.openstreetmap.org/search?query=6.24306%09-10.69889#map=17/6.24306/-10.69889,6.24306,-10.69889,verified,
43
+ Functional,LibOni,Liberia,Montserrado,LR11,,,Monrovia,"Island Clinic (Oniyama Specialist Hospital), Location: Bushrod Island",MOH Liberia,WHO,African Union,,ETC,,ETC Open,100,"MoHSW and WHO plan to reduce the number of beds to 100—originally planned for 160—and increase the frequency of monitoring staff as measures to improve overall infection control. Patients transferred from Redmtion Hospital. A new 100-bed Ebola Treatment Unit on Bushrod Island, Duala will be functional by Week 37. A team of doctors from Uganda are likely to treat patients at this centre. 16th Sept expected opening",13/11/2014,https://data.hdx.rwlabs.org/dataset/usg-etu-build-out-as-12-nov; http://reliefweb.int/sites/reliefweb.int/files/resources/10.22.14%20-%20USG%20West%20Africa%20Ebola%20Outbreak%20Fact%20Sheet%20%234%20FY%2015.pdf; https://data.hdx.rwlabs.org/dataset/etc-overview-21-october; https://www.internationalsos.com/ebola/index.cfm?content_id=396&language_id=ENG; WHO Foreign Medical Teams International Response; WHO data; USAID,21/09/2014,-,http://www.openstreetmap.org/node/3066992692,6.3843716,-10.7871135,verified,
44
+ CLOSED,LibJFK,Liberia,Montserrado,LR11,,,Monrovia,JFK Hospital,MOH Liberia,WHO,,,ETC,Triage,,40,ETC CLOSED. Operational as a hospital. The unit at JFK Hospital is now functioning as a full ETU. Was initially not intended as an Ebola treatment centre (closed 27/7/14). Re-established an interim isolation unit (9/8/14-28/8/14).,31/10/2014,https://data.hdx.rwlabs.org/dataset/etc-overview-21-october; https://www.internationalsos.com/ebola/index.cfm?content_id=396&language_id=ENG; WHO Foreign Medical Teams International Response,23/08/2014,30/10/2014,http://www.openstreetmap.org/way/94957267#map=18/6.28723/-10.77325,6.28723,-10.77325,verified,
45
+ Pending,LibMoH,Liberia,Montserrado,LR11,,,Monrovia,Ministry of Health,,,,,ETC,,,100,Under construction,19/11/2014,https://community.apan.org/apcn/ern/m/intelligence/140104.aspx; DoD,N/A,N/A,http://www.openstreetmap.org/search?query=6.26472%09-10.71278#map=19/6.26472/-10.71278,6.26472,-10.71278,verified,
46
+ Functional,LibChi,Liberia,Montserrado,LR11,,,Monrovia,Monrovia Medical Unit,USPHS,,,,ETC,,ETC Open,25,First patient recieved 11/11/14. Dedicated for infected heath care workers. Staffed by the US Public Health Service.,13/11/2014,https://data.hdx.rwlabs.org/dataset/usg-etu-build-out-as-12-nov; https://community.apan.org/apcn/ern/m/civ-mil/139562.aspx,11/11/2014,-,,,,,
47
+ Pending,LibSam,Liberia,Montserrado,LR11,,,Monrovia,SKD Stadium 1,IRC,,,,ETC,,"Partner confirmed (MOU signed, funding allocated)",100,Under construction. Opening with 10 beds week 16-22 Nov; Reach full capacity week 4-10 Dec. Construction finished 15 Nov 2014. ,19/11/2014,https://community.apan.org/apcn/ern/m/intelligence/140104.aspx; https://data.hdx.rwlabs.org/dataset/usg-etu-build-out-as-12-nov; https://community.apan.org/apcn/ern/m/civ-mil/139562.aspx; https://data.hdx.rwlabs.org/dataset/etc-overview-21-october; http://reliefweb.int/sites/reliefweb.int/files/resources/MA012_EbolaResponseUnits_v5-300dpi.pdf.pdf; http://www.mapaction.org/component/mapcat/mapdetail/index.php?option=com_mapcat&id=3532&view=download&fmt=pdf; WHO Foreign Medical Teams International Response,N/A,N/A,http://www.openstreetmap.org/search?query=6.256602%2C%20-10.701962#map=19/6.25660/-10.70196,6.256602,-10.701962,verified,
48
+ Pending,LibSaP,Liberia,Montserrado,LR11,,,Monrovia,SKD Stadium 2,German Red Cross,German Armed Forces,,,ETC,,"Partner confirmed (MOU signed, funding allocated)",100,Under construction. Opening with 10 beds week 16-22 Nov; Reach full capacity week 4-10 Dec. Construction finished 20 Nov 2014. ,19/11/2014,https://community.apan.org/apcn/ern/m/intelligence/140104.aspx; https://data.hdx.rwlabs.org/dataset/usg-etu-build-out-as-12-nov; https://community.apan.org/apcn/ern/m/civ-mil/139562.aspx; https://data.hdx.rwlabs.org/dataset/etc-overview-21-october: http://www.mapaction.org/component/mapcat/mapdetail/index.php?option=com_mapcat&id=3532&view=download&fmt=pdf,N/A,N/A,http://www.openstreetmap.org/search?query=6.256762%2C%20-10.703646#map=19/6.25676/-10.70364,6.256762,-10.703646,verified,
49
+ Pending,LibPLA,Liberia,Montserrado,LR11,,,Monrovia,SKD II (PLA),People's Liberation Army (China),,,,ETC,,,100,Under construction. Unknown opening,19/11/2014,https://community.apan.org/apcn/ern/m/intelligence/140104.aspx; https://data.hdx.rwlabs.org/dataset/usg-etu-build-out-as-12-nov,N/A,N/A,,,,,
50
+ Functional,LibOld,Liberia,Montserrado,LR11,,,Monrovia,"Monrovia, Congo Town - Old Ministry of Defence ETU 1",FMT,Cuba,African Union,,ETC,,ETC Open,100,Combined: 300 bedsOpening with 15 beds week 9-15 Nov; Reach full capacity week 21-27 Dec. The unit is run by the Ministry of Health with the assistance of medical staff deployed from Cuba and the African Union. Construction finished 17 Oct 2014.,19/11/2014,https://community.apan.org/apcn/ern/m/intelligence/140104.aspx; https://data.hdx.rwlabs.org/dataset/usg-etu-build-out-as-12-nov; https://community.apan.org/apcn/ern/m/civ-mil/139562.aspx http://reliefweb.int/sites/reliefweb.int/files/resources/Regional%20Map.pdf; http://reliefweb.int/sites/reliefweb.int/files/resources/SitRep%2013-19%20October%20Final.pdf; https://data.hdx.rwlabs.org/dataset/etc-overview-21-october; DoD; http://reliefweb.int/sites/reliefweb.int/files/resources/MA012_EbolaResponseUnits_v5-300dpi.pdf.pdf; https://www.internationalsos.com/ebola/index.cfm?content_id=396&language_id=ENGhttp://reliefweb.int/sites/reliefweb.int/files/resources/www.mapaction.org__component_mapcat_mapdetail_index_2.pdf,31/10/2014,-,http://www.openstreetmap.org/search?query=6.27028%09-10.73417#map=19/6.27028/-10.73417,6.27028,-10.73417,verified,
51
+ Pending,LibOld2,Liberia,Montserrado,LR11,,,Monrovia,"Monrovia, Congo Town - Old Ministry of Defence ETU 2",MSB Sweden,,,,ETC,,Partner registered interest but no MOU signed,100,Combined: 300 beds: Initial beds: 10; planned beds: 100. Opening with 10 beds 23-29 Nov; At planned capacity of 100 beds 11-17 Jan.. The unit is run by the Ministry of Health with the assistance of medical staff deployed from Cuba and the African Union. Construction finished 25 Oct 2014. Start at 15 beds increasing up to 100,19/11/2014,https://community.apan.org/apcn/ern/m/intelligence/140104.aspx; https://data.hdx.rwlabs.org/dataset/usg-etu-build-out-as-12-nov; https://community.apan.org/apcn/ern/m/civ-mil/139562.aspx; http://reliefweb.int/sites/reliefweb.int/files/resources/Regional%20Map.pdf; https://data.hdx.rwlabs.org/dataset/etc-overview-21-october,31/10/2014,-,http://www.openstreetmap.org/search?query=6.27028%09-10.73417#map=19/6.27028/-10.73417,6.27028,-10.73417,verified,
52
+ Functional,LibRed,Liberia,Montserrado,LR11,,,Monrovia,Redemption Hospital,MOH Liberia,,,,ETC,,,,Operational as an ETC (19/11/14) . There is a Holding Unit at Redemption Hospital,19/11/2014,https://community.apan.org/apcn/ern/m/intelligence/140104.aspx; https://www.internationalsos.com/ebola/index.cfm?content_id=396&language_id=ENG,31/08/2014,-,http://www.openstreetmap.org/node/3003566637,6.3697076,-10.7919744,verified,
53
+ Pending,,Liberia,Nimba,LR12,,,Ganta,Ganta ETC,PCI,AFL,,,ETC,,"Partner confirmed (MOU signed, funding allocated)",50,Site surveyed. Opening with 10 beds week 7-13 Dec; Reach full capacity week 25-31 Jan. Construction finished 01 Dec 2014 (USA Site Build). ,19/11/2014,https://community.apan.org/apcn/ern/m/intelligence/140104.aspx; https://data.hdx.rwlabs.org/dataset/usg-etu-build-out-as-12-nov; https://community.apan.org/apcn/ern/m/civ-mil/139562.aspx; http://reliefweb.int/sites/reliefweb.int/files/resources/Regional%20Map.pdf; https://data.hdx.rwlabs.org/dataset/etc-overview-21-october; DoD; http://reliefweb.int/sites/reliefweb.int/files/resources/MA012_EbolaResponseUnits_v5-300dpi.pdf.pdf,N/A,N/A,http://www.openstreetmap.org/search?query=7.24231%09-8.97900#map=14/7.2423/-8.9790,7.2423137,-8.9790023,verified,
54
+ Pending,,Liberia,Nimba,LR12,,,Tappita,Tappita ETC,Heart to Heart International,AFL,,,ETC,,"Partner confirmed (MOU signed, funding allocated)",50,Site surveyed. Opening with 10 beds week 23-29 Nov; Reach full capacity week 11-17 Jan. Construction finished 30 Nov 2014. USG Support. ,19/11/2014,https://community.apan.org/apcn/ern/m/intelligence/140104.aspx; https://data.hdx.rwlabs.org/dataset/usg-etu-build-out-as-12-nov; https://community.apan.org/apcn/ern/m/civ-mil/139562.aspx; http://reliefweb.int/sites/reliefweb.int/files/resources/Regional%20Map.pdf; https://data.hdx.rwlabs.org/dataset/etc-overview-21-october; http://reliefweb.int/sites/reliefweb.int/files/resources/MA012_EbolaResponseUnits_v5-300dpi.pdf.pdf,N/A,N/A,http://www.openstreetmap.org/search?query=6.50983%09-8.85999#map=10/6.5098/-8.8600,6.5088897,-8.8608299,verified,
55
+ Pending,,Liberia,River Gee,LR13,,,Fishtown,Fishtown ETC,American Red Cross,,,,ETC,,"Partner confirmed (MOU signed, funding allocated)",50,Site surveyed. Opening with 10 beds week 21-27 Dec; Reach full capacity week 25-31 Jan. Construction finished 30 Dec 2014 (USA Site build). ,19/11/2014,https://community.apan.org/apcn/ern/m/intelligence/140104.aspx; https://data.hdx.rwlabs.org/dataset/usg-etu-build-out-as-12-nov; https://community.apan.org/apcn/ern/m/civ-mil/139562.aspx; http://reliefweb.int/sites/reliefweb.int/files/resources/Regional%20Map.pdf; https://data.hdx.rwlabs.org/dataset/etc-overview-21-october; http://reliefweb.int/sites/reliefweb.int/files/resources/www.mapaction.org__component_mapcat_mapdetail_index_2.pdf,N/A,N/A,http://www.openstreetmap.org/search?query=05.1834557%2C%20-007.8344094#map=7/5.178/-7.833,5.1834557,-7.8344094,verified,
56
+ Pending,,Liberia,River Gee,LR13,,,RiverGee,River Gee,USAID Contract,,,,ETC,,,,Suggested,19/11/2014,https://community.apan.org/apcn/ern/m/intelligence/140104.aspx,N/A,N/A,,,,,
57
+ Pending,,Liberia,Rivercess,LR14,,,Cestos City,Cestos City ETC,USAID Contract,,,,ETC,,No partner interest,50,Site surveyed. Opening with 10 beds week 14-20 Dec; Reach full capacity week >31 Jan. Construction finished 30 Dec 2014 (USA site build).,13/11/2014,https://data.hdx.rwlabs.org/dataset/usg-etu-build-out-as-12-nov; https://community.apan.org/apcn/ern/m/civ-mil/139562.aspx; http://reliefweb.int/sites/reliefweb.int/files/resources/Regional%20Map.pdfhttps://data.hdx.rwlabs.org/dataset/etc-overview-status: https://data.hdx.rwlabs.org/dataset/etc-overview-21-october; DoD; http://www.mapaction.org/deployments/mapdetail/index.php?option=com_mapcat&id=3545&view=download&fmt=pdf; http://reliefweb.int/sites/reliefweb.int/files/resources/www.mapaction.org__component_mapcat_mapdetail_index_2.pdf,N/A,N/A,http://www.openstreetmap.org/search?query=05.4662014%2C%20-009.5814983#map=15/5.4653/-9.5765,5.4662014,-9.5814983,verified,
58
+ Pending,,Liberia,Rivercess,LR14,,,Rivercess,Rivercess,USAID Contract,,,,ETC,,,,Suggested,19/11/2014,https://community.apan.org/apcn/ern/m/intelligence/140104.aspx,N/A,N/A,,,,,
59
+ Pending,,Liberia,Sinoe,LR15,,,Sinoe,Sinoe,USAID Contract,,,,ETC,,,,Suggested,19/11/2014,https://community.apan.org/apcn/ern/m/intelligence/140104.aspx,N/A,N/A,,,,,
60
+ Pending,,Liberia,Sinoe,LR15,,,Greenville,Greenville ETC,USAID Contract,,,,ETC,,No partner interest,50,Suggested. Opening with 10 beds week 21-27 Dec; Reach full capacity week 25-31 Jan. Construction finished 30 Dec 2014 (USA Site build). ,19/11/2014,https://community.apan.org/apcn/ern/m/intelligence/140104.aspx; https://data.hdx.rwlabs.org/dataset/usg-etu-build-out-as-12-nov; https://community.apan.org/apcn/ern/m/civ-mil/139562.aspx; http://reliefweb.int/sites/reliefweb.int/files/resources/Regional%20Map.pdf; https://data.hdx.rwlabs.org/dataset/etc-overview-21-october; DoD,N/A,N/A,http://www.openstreetmap.org/search?query=5.00956%09-9.03835#map=10/5.0102/-9.0390,5.00956,-9.03835,town_centroid,
61
+ Functional,GuiDon,Guinea,Conakry,GN02,Conakry,GN0201,,Donka Hospital,MSF,,,,ETC,Triage,ETC is open,60,"Expantion underway. Media sources have reported a spike in Ebola cases at the Donka Ebola Treatment Centre in Conakry with a number of new arrivals, particularly from Coyah prefecture. Authorities are expanding the bed capacity and also training more health care workers to help cope with the increase. Public hospital",21/10/2014,https://www.internationalsos.com/ebola/index.cfm?content_id=395&language_id=ENG http://www.who.int/features/2014/ebola-healthcare-guinea/en/ http://www.msf.org/article/msf-strengthens-response-guinea-ebola-outbreak http://www.doctorswithoutborders.org/news-stories/field-news/msf-continues-ebola-response-guinea-and-liberia http://msf.fr/sites/msf.fr/files/images/Rubriques%20du%20site/Actualit%C3%A9s/ebola/140826_carte%20Ebola%20activites%20MSF.jpg; WHO data,01/04/2014,-,http://www.openstreetmap.org/node/1407326153,9.53564,-13.6832,verified,
62
+ Pending,GuiKol,Guinea,Conakry,GN02,Conakry,GN0201,,Koloma,,,,,ETC,,,,A new site in Koloma is being cleared for the Donka Hospital facility to move to.,24/10/2014,https://www.internationalsos.com/ebola/index.cfm?content_id=395&language_id=ENG,N/A,N/A,,,,,
63
+ Pending,GuiMBa,Guinea,Kankan,GN04,Kérouané,GN0402,,M’Balia,,,,,ETC,,ETC is planned for this site but there is no Partner yet,70,Construction finished TBC,05/11/2014,http://reliefweb.int/sites/reliefweb.int/files/resources/Regional%20Map.pdf; https://data.hdx.rwlabs.org/dataset/etc-overview-21-october,N/A,N/A,http://www.openstreetmap.org/node/321620007#map=13/9.2706/-9.0076,9.2705687,-9.0076196,town_centroid,
64
+ Pending,GuiCoy,Guinea,Kindia,GN05,Coyah,GN0501,,Wonkifong Centre,MSF,Cuba (?),,,ETC,Triage,ETC is planned with a Partner identified,70,Construction finished 01 Nov 2014,05/11/2014,http://reliefweb.int/sites/reliefweb.int/files/resources/Regional%20Map.pdf; WHO Data 10.09.14,?,-,http://www.openstreetmap.org/node/462036776,9.7090404,-13.388956,town_centroid,
65
+ Pending,,Guinea,Kinda,GN5,Forecariah,GN0503,,Forecariah,,,,,ETC,,,,,05/11/2014,http://reliefweb.int/sites/reliefweb.int/files/resources/Regional%20Map.pdf,N/A,N/A,http://www.openstreetmap.org/node/1848315485,9.4312135,-13.0918656,town_centroid,
66
+ Closed,GuiTel,Guinea,Kindia,GN05,Telimélé,GN0506,,Telimélé Treatment Centre,MSF,,,,ETC,,,21,"The situation has stabilized in some areas and MSF has closed its Ebola treatment center in Telimélé, in the west of the country, after no new cases were reported for 21 days",25/09/2014,http://www.msf.org/article/west-africa-msf-activities-ebola-outbreak,01/05/2014,07/07/2014,http://www.openstreetmap.org/node/321619917#map=14/10.9115/-13.0299,10.9115,-13.0299,town_centroid,
67
+ Pending,,Guinea,Mamou,GN07,Dalaba,GN0701,,,,,,,ETC,,ETC is planned for this site but there is no Partner yet,70,Construction finished TBC,21/10/2014,https://data.hdx.rwlabs.org/dataset/etc-overview-21-october,N/A,N/A,http://www.openstreetmap.org/node/2922826675,10.6913277,-12.2512595,town_centroid,
68
+ Pending,,Guinea,Mamou,GN07,Mamou,GN0702,,,,,,,ETC,,ETC is planned for this site but there is no Partner yet,70,Construction finished TBC,21/10/2014,https://data.hdx.rwlabs.org/dataset/etc-overview-21-october,N/A,N/A,http://www.openstreetmap.org/node/2173041746#map=11/10.3741/-12.0836,10.3740744,-12.0835598,town_centroid,
69
+ Functional,GuiGui,Guinea,Nzerekore ,GN08,Guéckédou,GN0802,,Guinee Forestiere (CMC Gueckedou MSF),MSF,,,,ETC,Triage,ETC is open,100,WHO deploy infection control specialist,21/10/2014,https://data.hdx.rwlabs.org/dataset/etc-overview-21-october; https://www.internationalsos.com/ebola/index.cfm?content_id=395&language_id=ENG http://www.doctorswithoutborders.org/news-stories/field-news/battling-ebola-outbreak-west-africa http://msf.fr/sites/msf.fr/files/images/Rubriques%20du%20site/Actualit%C3%A9s/ebola/140826_carte%20Ebola%20activites%20MSF.jpg; WHO Data,25/03/2014,-,http://www.openstreetmap.org/search?query=8.552229%09-10.120623#map=19/8.55223/-10.12062,8.552229,-10.120623,verified,
70
+ Pending,GuiNze,Guinea,Nzerekore ,GN08,Nzerekore ,GN0805,,Nzerekore ,Ailema (?),,,,ETC,,ETC is planned with a Partner identified,40,Construction finished 01 Nov 2014,31/10/2014,https://data.hdx.rwlabs.org/dataset/etc-overview-status; https://data.hdx.rwlabs.org/dataset/etc-overview-21-october,N/A,N/A,http://www.openstreetmap.org/way/209124751#map=13/7.7621/-8.8143,7.7621,-8.8143,town_centroid,
71
+ Pending,,Guinea,Nzerekore ,GN08,Macenta,GN0804,,,Croix-Rouge française,MSF,,,ETC,,ETC is planned with a Partner identified,50,Due to open 15 Nov 14. Opening Nov/Dec. Construction finished 31 Oct 2014. Initially 20 beds scaled to 50 bed capacity. MSF construction with hand-over to French Red Cross,05/11/2014,http://reliefweb.int/sites/reliefweb.int/files/resources/MDR_Ebola_OU7_04.11.2014.pdf; https://data.hdx.rwlabs.org/dataset/etc-overview-21-october; https://www.internationalsos.com/ebola/index.cfm?content_id=395&language_id=ENG; http://www.croix-rouge.fr/Actualite/Ouverture-d-un-Centre-de-traitement-Ebola-CTE-en-Guinee-1808,15/11/2014,N/A,http://www.openstreetmap.org/relation/3401335,8.5,-9.4167,county_centroid,
72
+ Pending,,Guinea,Nzerekore ,GN08,Yomou,GN0806,,,,,,,ETC,,ETC is planned for this site but there is no Partner yet,70,Construction finished TBC,21/10/2014,https://data.hdx.rwlabs.org/dataset/etc-overview-21-october,N/A,N/A,http://www.openstreetmap.org/node/2595412917#map=10/7.7484/-9.2422,7.5695786,-9.2594791,town_centroid,
73
+ Pending,,Guinea,Nzerekore ,GN08,Beyla,GN0801,,,,,,,ETC,,ETC is planned for this site but there is no Partner yet,70,Construction finished TBC,21/10/2014,https://data.hdx.rwlabs.org/dataset/etc-overview-21-october,N/A,N/A,http://www.openstreetmap.org/node/2595412878,8.6898481,-8.648345,town_centroid,
74
+ Functional,SieKai,Sierra Leone,Eastern,SL01,Kailahun,SL0101,Kailahun,CMC Kailahun MSF,MSF,,,,ETC,Triage,ETC is open,72,"MSF treatment centre, concidering expanding to 100 beds",19/11/2014,https://data.hdx.rwlabs.org/dataset/ebola-care-facilities-master-list; https://data.hdx.rwlabs.org/dataset/etc-overview-status; https://data.hdx.rwlabs.org/dataset/etc-overview-21-october; https://www.internationalsos.com/ebola/index.cfm?content_id=397&language_id=ENG,24/06/2014,-,http://www.openstreetmap.org/search?query=8.297871%09-10.556686#map=19/8.29787/-10.55669,8.297871,-10.556686,verified,
75
+ Functional,SieKen2,Sierra Leone,Eastern,SL01,Kenema,SL0102,Kenema,Rural Kenema Field Hospital ETC,IFRC,MOH Sierra Leone,,,ETC,,ETC is open,60,"Current: 25; planned 60 (31/10/14). Tented Structure. 2-5 beds to start, scale up to 60 later (will increase gradually by 10 patients per week) The IFRC is establishing the new facility (on 22 August, was expected to be functional ""soon""). Plan to open 10 Sept. The isolation facility in Kenema Government Hospital, is to be re-located outside the township of Kenema, a few miles from Hanga. All new cases will be treated at the centre in Kailahun until the new centre is ready.",13/11/2014,http://www.mapaction.org/deployments/mapdetail/index.php?option=com_mapcat&id=3645&view=download&fmt=pdf; https://data.hdx.rwlabs.org/dataset/etc-overview-status; https://data.hdx.rwlabs.org/dataset/etc-overview-21-october; https://www.internationalsos.com/ebola/index.cfm?content_id=397&language_id=ENG; WHO Foreign Medical Teams International Response,15/09/2014,-,http://www.openstreetmap.org/search?query=%208.005088%2C%20-11.115603#map=12/8.0052/-11.1158,8.005088,-11.115603,verified,19 international workers and 80 national employees
76
+ CLOSED,SieKen1,Sierra Leone,Eastern,SL01,Kenema,SL0102,Kenema,Kenema Government Hospital (KGH),MOH Sierra Leone,WHO,,,ETC,Triage,,100,No longer accepting. Expected to increase to 100 beds. To be re-located outside the township of Kenema,13/11/2014,http://health.gov.sl/wp-content/uploads/2014/10/Ebola-Situation-Report_Vol-133.pdf; https://www.internationalsos.com/ebola/index.cfm?content_id=397&language_id=ENG; WHO Foreign Medical Teams International Response; WHO Data,01/04/2014,07/10/2014,http://www.openstreetmap.org/node/2959065474,7.87517,-11.18473,verified,
77
+ Pending,SieKoi,Sierra Leone,Eastern,SL01,Kono,SL0103,Kono,Koidu Town,Wellbody,Parners in Health,,,ETC,,ETC is planned with a Partner identified,40,Planned operational date 30/11/14. Construction finished 30 Nov (UK build and setup); could be 50 beds,19/11/2014,https://data.hdx.rwlabs.org/dataset/ebola-care-facilities-master-list; http://www.mapaction.org/deployments/mapdetail/index.php?option=com_mapcat&id=3650&view=download&fmt=pdf; http://www.mapaction.org/deployments/mapdetail/3624.html; https://data.hdx.rwlabs.org/dataset/etc-overview-21-october,30/11/2014,N/A,http://www.openstreetmap.org/search?query=8.6422812%09-10.9716307#map=14/8.6339/-10.9595,8.633899,-10.959464,verified,
78
+ Functional,SieMak,Sierra Leone,Northern,SL02,Bombali,SL0201,Makeni,Magbenteh Hospital,MoH Sierra Leone,Addax Bio Energy Sierra Leone,African Union,WAHO,ETC,Triage,ETC is planned with a Partner identified,110,Operational. Projected opening - 16 Nov. Construction finished 20 Nov 2014 (UK Site build)A holding centre is under construction with assistance from Addax Bio Energy Sierra Leone and is expected to be finished in the first week of October.,19/11/2014,https://data.hdx.rwlabs.org/dataset/ebola-care-facilities-master-list; http://www.mapaction.org/deployments/mapdetail/index.php?option=com_mapcat&id=3650&view=download&fmt=pdf;http://www.mapaction.org/deployments/mapdetail/3624.html; http://reliefweb.int/sites/reliefweb.int/files/resources/Regional%20Map.pdf; https://data.hdx.rwlabs.org/dataset/etc-overview-21-october; WHO Data,16/11/2014,-,http://www.openstreetmap.org/search?query=8.84611%09-12.058447#map=12/8.8461/-12.0584,8.84611,-12.058447,verified,
79
+ Pending,,Sierra Leone,Northern,SL02,Bombali,SL0201,Makeni,Makeni ETU,IOM,,,,ETC,,,100,Projected opening 08/12/14,19/11/2014,https://data.hdx.rwlabs.org/dataset/ebola-care-facilities-master-list; http://www.mapaction.org/deployments/mapdetail/3624.html,08/12/2014,N/A,http://www.openstreetmap.org/search?query=8.798044%09-12.030972#map=12/8.7979/-12.0311,8.798044,-12.030972,verified,
80
+ Pending,SieRub,Sierra Leone,Northern,SL02,Port Loko,SL0204,Gbom Samba Town/ Lunsar,Lunsar ETU,IMC,,,,ETC,,ETC is planned with a Partner identified,50,"Under construction. Bed capacity 50, may expan to 130 beds. Opening date: 21/11/14. Construction finished 21 Oct 2014. Start with 40 beds increasing to 130. Land clearing 27 Sept. Projected openeing 24 Oct (as of 01/10/2014). Newly decided site to be set up (this replaces the previously planned sites at Bombali/Makeni and Port Loko); will take approx. 3 months before ready – projected opening date of 06 Dec. IMC will be in charge of 50 beds; still need a partner for other 50 beds",19/11/2014,https://data.hdx.rwlabs.org/dataset/etc-overview-21-october; http://reliefweb.int/sites/reliefweb.int/files/resources/Sierra%20Leone%20Ebola%20Situation%20Report%2004.pdf; WHO Foreign Medical Teams International Response; http://reliefweb.int/sites/reliefweb.int/files/resources/West%20Africa%20Ebola%20Situation%20Report%2001.pdf,21/11/2014,N/A,http://www.openstreetmap.org/node/543447056,8.6868342,-12.543584,town_centroid,
81
+ Pending,,Sierra Leone,Northern,SL02,Port Loko,SL0204,,Port Loko ETU,GOAL,,,,ETC,,ETC is planned with a Partner identified,100,Under construction. Projected openig - 08/12/14. GOAL will staff and manage this facility. Construction finished 30 Nov,19/11/2014,https://data.hdx.rwlabs.org/dataset/ebola-care-facilities-master-list; http://www.mapaction.org/deployments/mapdetail/index.php?option=com_mapcat&id=3650&view=download&fmt=pdf; http://www.mapaction.org/deployments/mapdetail/index.php?option=com_mapcat&id=3645&view=download&fmt=pdf; http://www.mapaction.org/deployments/mapdetail/3624.html; http://reliefweb.int/report/sierra-leone/escalation-cases-port-loko-sl-worrying-trend; http://reliefweb.int/sites/reliefweb.int/files/resources/Regional%20Map.pdf; https://data.hdx.rwlabs.org/dataset/etc-overview-21-october,08/12/2014,N/A,http://www.openstreetmap.org/search?query=8.776216%09-12.762372#map=12/8.7762/-12.7624,8.776216,-12.762372,verified,
82
+ Functional,,Sierra Leone,Northern,SL02,Port Loko,SL0204,,Maforki ETU,MoH Sierra Leone,Plan,,,ETC,,,40,Current beds: 22; full operating capacity 40. Also known as: (Former) Red Cross Vocational Centre ETU,19/11/2014,https://data.hdx.rwlabs.org/dataset/ebola-care-facilities-master-list; http://www.mapaction.org/deployments/mapdetail/index.php?option=com_mapcat&id=3650&view=download&fmt=pdf,-,-,http://www.openstreetmap.org/search?query=8.773571%09-12.796859#map=12/8.7735/-12.7970,8.773571,-12.796859,verified,
83
+ Functional,SieBo,Sierra Leone,Southern,SL03,Bo,SL0301,Bo,Bo Town SLRA,MSF,,,,ETC,,ETC is open,50,Planned beds 60. Current beds 35 Gradually increasing. MSF is constructing a 35-bed isolation centre. Will start with a few beds and slowly scale up to 35 (will gradually expand up to 70 beds),19/11/2014,https://data.hdx.rwlabs.org/dataset/ebola-care-facilities-master-list; http://www.mapaction.org/deployments/mapdetail/3624.html; https://data.hdx.rwlabs.org/dataset/etc-overview-status; https://data.hdx.rwlabs.org/dataset/etc-overview-21-october; http://reliefweb.int/report/sierra-leone/tent-city-cassava-field-msfs-newest-ebola-treatment-center-sierra-leone: https://www.internationalsos.com/ebola/index.cfm?content_id=397&language_id=ENG; WHO Data; http://reliefweb.int/report/liberia/msf-operational-update-west-africa-ebola-response,19/09/2014,-,http://www.openstreetmap.org/search?query=7.957269%09-11.732060#map=14/7.9572/-11.7320,7.957269,-11.73206,verified,
84
+ Pending,,Sierra Leone,Southern,Sl03,Moyamba,SL0303,Moyamba,Moyamba ETU,MDM,,,,ETC,,ETC is planned with a Partner identified,100,Planned opening 15/12/14. The UK is establishing a treatment facility,19/11/2014,https://data.hdx.rwlabs.org/dataset/ebola-care-facilities-master-list; http://www.mapaction.org/deployments/mapdetail/3624.html; InternationalSOS: https://data.hdx.rwlabs.org/dataset/etc-overview-21-october,15/12/2014,N/A,http://www.openstreetmap.org/search?query=8.176575%09-12.412037#map=14/8.1766/-12.4120,8.176575,-12.412037,verified,
85
+ Functional,SieHas,Sierra Leone,Western,SL04,Western Area Rural,SL0401,Hastings,Hasting Police Training School,MOH Sierra Leone,,,,ETC,Triage,ETC is open,120,"Current beds 108 - 19/11/14 [Current beds 60, Planned beds: 100] - 21/10/14. Newton and Hasting police (50-bed) isolation centres are open",19/11/2014,https://data.hdx.rwlabs.org/dataset/ebola-care-facilities-master-list; http://www.mapaction.org/deployments/mapdetail/index.php?option=com_mapcat&id=3650&view=download&fmt=pdf; https://data.hdx.rwlabs.org/dataset/etc-overview-status; https://data.hdx.rwlabs.org/dataset/etc-overview-21-october; https://www.internationalsos.com/ebola/index.cfm?content_id=397&language_id=ENG; http://health.gov.sl/wp-content/uploads/2014/09/Ebola-Situation-Report_Vol-116.pdf,25/09/2014,-,http://www.openstreetmap.org/search?query=8.382705%09-13.125851#map=16/8.3827/-13.1259,8.382705,-13.125851,verified,
86
+ Functional,SieSie,Sierra Leone,Western,SL04,Western Area Rural,SL0401,Jui,Sierra Leone-China Friendship Hospital (Jui Hospital),Chinese CDC,,,,ETC,Holding Centre,ETC is open,2,[Current beds 2 .Additional 30 beds planned to bring total beds to 32] - 31/10/14. The Chinese Government sent two airplanes carrying medical teams and a mobile laboratory to Sierra Leone on 17 September. The team includes 59 personnel; 29 medical experts from the Chinese Center for Disease Control and Prevention to run the medical laboratory and 30 doctors and nurses from 302 Military Hospital of China to run a holding centre at Sierra Leone-China Friendship Hospital.,19/11/2014,http://www.mapaction.org/deployments/mapdetail/index.php?option=com_mapcat&id=3650&view=download&fmt=pdf; http://health.gov.sl/wp-content/uploads/2014/11/Ebola-Situation-Report_Vol-157.pdf; http://health.gov.sl/wp-content/uploads/2014/10/Ebola-Situation-Report_Vol-156.pdf; http://health.gov.sl/wp-content/uploads/2014/10/Ebola-Situation-Report_Vol-148.pdf; https://www.internationalsos.com/ebola/index.cfm?content_id=397&language_id=ENG; http://sl.china-embassy.org/eng/xwdt/t1192303.htm; http://health.gov.sl/wp-content/uploads/2014/09/Ebola-Update-September-18-2014.pdf,N/A,N/A,http://www.openstreetmap.org/search?query=8.386861%09-13.149548#map=16/8.3869/-13.1495,8.386861,-13.149548,verified,
87
+ Functional,SieKer,Sierra Leone,Western,SL04,Western Area Rural,SL0401,Kerry Town,Kerry Town ETC,Save the Children,Cuba,,,ETC,,ETC is planned with a Partner identified,100,"Current beds 10. Open 05/11/14 Projected opening - Nov. Construction finished 27 Oct 2014 (UK build and set up). 100 beds for patients, plus 12 separate beds designated for staff. UK: Assistance in 3 ways: (1) UK Dept of Defense to provide 12 beds dedicated for staff-related cases. (2) UKDFID to finance Save the Children for 50 beds (3) Currently in discussion re: possibly financing IMC for other 50 beds. British military personnel will begin to survey and assess the site during week 37. Based near the capital Freetown. The UK government is working with Save the Children to design a long term plan to manage and operate the facility after it has been fully set up.",19/11/2014,https://data.hdx.rwlabs.org/dataset/ebola-care-facilities-master-list; http://www.mapaction.org/deployments/mapdetail/3624.html; http://www.mapaction.org/deployments/mapdetail/3610.html; http://blogs.savethechildren.org.uk/2014/11/sierra-leone-a-treatment-centre-for-a-country-stricken-by-ebola/; http://reliefweb.int/sites/reliefweb.int/files/resources/Regional%20Map.pdf; https://data.hdx.rwlabs.org/dataset/etc-overview-status; https://data.hdx.rwlabs.org/dataset/etc-overview-21-octoberWHO Foreign Medical Teams International Response; http://reliefweb.int/report/sierra-leone/uk-treatment-centre-tackle-ebola-sierra-leone,05/11/2014,-,http://www.openstreetmap.org/search?query=8.257095%09-13.086371#map=16/8.2571/-13.0864,8.257095,-13.086371,verified,
88
+ Functional,SieKer,Sierra Leone,Western,SL04,Western Area Rural,SL0401,Kerry Town,Kerry Town ETC - Section for care of Health Care Workers,UK MoD,Save the Children,,,ETC,,ETC is planned with a Partner identified,12,"Open 05/11/14. Projected opening - Nov. Construction finished 27 Oct 2014 (UK build and set up). 100 beds for patients, plus 12 separate beds designated for staff. UK: Assistance in 3 ways: (1) UK Dept of Defense to provide 12 beds dedicated for staff-related cases. (2) UKDFID to finance Save the Children for 50 beds (3) Currently in discussion re: possibly financing IMC for other 50 beds. British military personnel will begin to survey and assess the site during week 37. Based near the capital Freetown. The UK government is working with Save the Children to design a long term plan to manage and operate the facility after it has been fully set up.",19/11/2014,https://data.hdx.rwlabs.org/dataset/ebola-care-facilities-master-list; http://blogs.savethechildren.org.uk/2014/11/sierra-leone-a-treatment-centre-for-a-country-stricken-by-ebola/; http://reliefweb.int/sites/reliefweb.int/files/resources/Regional%20Map.pdf; https://data.hdx.rwlabs.org/dataset/etc-overview-21-october,05/11/2014,-,http://www.openstreetmap.org/search?query=8.257095%09-13.086371#map=16/8.2571/-13.0864,8.257095,-13.086371,verified,
89
+ Pending,,Sierra Leone,Western,SL04,Western Area Rural,SL0401,Newton,HIM Newton,,,,,ETC,,,120,Planned. Planned opening 15/01/2015,19/11/2014,https://data.hdx.rwlabs.org/dataset/ebola-care-facilities-master-list; http://www.mapaction.org/deployments/mapdetail/index.php?option=com_mapcat&id=3650&view=download&fmt=pdf; http://www.mapaction.org/deployments/mapdetail/3624.html,15/01/2015,N/A,http://www.openstreetmap.org/search?query=8.335112%09-13.008915#map=16/8.3351/-13.0089,8.335112,-13.008915,town_centroid,
90
+ Functional,SieAHS,Sierra Leone,Western,SL04,Western Area Rural,SL0401,,AHS - Waterloo Hospital,MOH Sierra Leone,MSF,,,ETC,,,62,Operational date 16/11/14. Also referred to as ADRA hospital,19/11/2014,https://data.hdx.rwlabs.org/dataset/ebola-care-facilities-master-list; http://www.mapaction.org/deployments/mapdetail/index.php?option=com_mapcat&id=3650&view=download&fmt=pdf; http://reliefweb.int/sites/reliefweb.int/files/resources/Weekly_UNMEER_SitRep_9Nov.pdf; http://www.mapaction.org/deployments/mapdetail/3624.html; http://www.mapaction.org/deployments/mapdetail/3610.html,16/11/2014,N/A,http://www.openstreetmap.org/search?query=8.335621%09-13.073548#map=16/8.3356/-13.0735,8.335621,-13.073548,verified,
91
+ Pending,SieHas2,Sierra Leone,Western,SL04,Western Area Rural,SL0401,Freetown,Hastings,RSLAF,Kings,,,ETC,,ETC is planned with a Partner identified,100,Under construction. Planned operational date 08/12/14. Construction finished 31 Oct (UK build),19/11/2014,https://data.hdx.rwlabs.org/dataset/ebola-care-facilities-master-list; http://www.mapaction.org/deployments/mapdetail/3624.html; http://www.mapaction.org/deployments/mapdetail/3610.html; https://data.hdx.rwlabs.org/dataset/etc-overview-status; https://data.hdx.rwlabs.org/dataset/etc-overview-21-october,08/12/2014,N/A,http://www.openstreetmap.org/search?query=8.4790017%2C%20-13.2680158#map=11/8.4792/-13.2681,8.382142,-13.140652,verified,
92
+ Pending,SieHas3,Sierra Leone,Western,SL04,Western Area Rural,SL0401,,Police Training Sch-Hastings 2,MOH Sierra Leone,RSLAF,,,ETC,,,200,Under Construction. projected operational date 24/11/14,19/11/2014,https://data.hdx.rwlabs.org/dataset/ebola-care-facilities-master-list http://www.mapaction.org/deployments/mapdetail/3610.html,24/11/2014,N/A,http://www.openstreetmap.org/search?query=8.382705%09-13.125851#map=16/8.3827/-13.1259,8.382705,-13.125851,verified,
93
+ Functional,SieDfi,Sierra Leone,Western,SL04,Western Area Urban,SL0402,Lakka,Lakka Hospital ETU,EMERGENCY Italian NGO,MOH Sierra Leone,,,ETC,Holding centre,ETC is open,6,"Current capacity: 6; Planned capacity 17. Holding Centre. Construction should be completed approx 05 Sept and will be operational on 14 Sept; EMERGENCY will provide staff, clinical management, & logistic support, & the MOH will provide nurses; Training carried out for staff on 5-6 Sept.",19/11/2014,https://data.hdx.rwlabs.org/dataset/ebola-care-facilities-master-list; http://www.mapaction.org/deployments/mapdetail/index.php?option=com_mapcat&id=3650&view=download&fmt=pdf; http://health.gov.sl/wp-content/uploads/2014/10/Ebola-Situation-Report_Vol-156.pdf; http://health.gov.sl/wp-content/uploads/2014/10/Ebola-Situation-Report_Vol-148.pdf; https://data.hdx.rwlabs.org/dataset/etc-overview-21-october; http://health.gov.sl/wp-content/uploads/2014/10/Ebola-Situation-Report_Vol-130.pdf; WHO Foreign Medical Teams International Response; http://health.gov.sl/wp-content/uploads/2014/09/Ebola-Update-September-18-2014.pdf; http://reliefweb.int/report/sierra-leone/member-emergencys-medical-staff-sierra-leone-has-tested-positive-ebola-virus,18/09/2014,-,http://www.openstreetmap.org/node/2201774621#map=19/8.39737/-13.26355,8.3973667,-13.2635501,verified,
94
+ Pending,SieGod,Sierra Leone,Western,SL04,Western Area Urban,SL0402,Freetown,Goderich,EMERGENCY,,,,ETC,,ETC is planned with a Partner identified,100,Under construction. Planned operational date 15/12/14. Construction finished 31 Oct 2014 (UK Build). ,19/11/2014,https://data.hdx.rwlabs.org/dataset/ebola-care-facilities-master-list; http://www.mapaction.org/deployments/mapdetail/3624.html; http://www.mapaction.org/deployments/mapdetail/3610.html; https://data.hdx.rwlabs.org/dataset/etc-overview-status; https://data.hdx.rwlabs.org/dataset/etc-overview-21-october,15/12/2014,N/A,http://www.openstreetmap.org/search?query=8.424321%09-13.280407#map=15/8.4243/-13.2804,8.424321,-13.280407,verified,
@@ -0,0 +1,165 @@
1
+ %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2
+ % Philippines - Haima House Damage PCODED - NDRRMC Sitrep 9
3
+ % see https://data.humdata.org/dataset/philippines-haima-house-damage-pcoded-ndrrmc-sitrep-9
4
+
5
+
6
+ province,municipality_or_city,totally_damaged,partially_damaged,total ,prov_code,mun_code
7
+ #adm2+name,#adm3+name,#affected+houses+totally+destroyed,#affected+houses+partially+destroyed,#affected+houses+total,#adm2+code,#adm3+code
8
+ ILOCOS NORTE,ADAMS,,50,50,PH012800000,PH012801000
9
+ ILOCOS NORTE,BACARRA,53,351,404,PH012800000,PH012802000
10
+ ILOCOS NORTE,BADOC,137,1618,1755,PH012800000,PH012803000
11
+ ILOCOS NORTE,BANGUI,7,332,339,PH012800000,PH012804000
12
+ ILOCOS NORTE,CITY OF BATAC,,212,212,PH012800000,PH012805000
13
+ ILOCOS NORTE,BURGOS,,375,375,PH012800000,PH012806000
14
+ ILOCOS NORTE,CARASI,,30,30,PH012800000,PH012807000
15
+ ILOCOS NORTE,CURRIMAO,2,89,91,PH012800000,PH012808000
16
+ ILOCOS NORTE,DINGRAS,6,162,168,PH012800000,PH012809000
17
+ ILOCOS NORTE,DUMALNEG,2,9,11,PH012800000,PH012810000
18
+ ILOCOS NORTE,BANNA (ESPIRITU),16,158,174,PH012800000,PH012811000
19
+ ILOCOS NORTE,LAOAG CITY (CAPITAL),37,454,491,PH012800000,PH012812000
20
+ ILOCOS NORTE,MARCOS,2,48,50,PH012800000,PH012813000
21
+ ILOCOS NORTE,NUEVA ERA,156,190,346,PH012800000,PH012814000
22
+ ILOCOS NORTE,PAGUDPUD,21,677,698,PH012800000,PH012815000
23
+ ILOCOS NORTE,PAOAY,25,896,921,PH012800000,PH012816000
24
+ ILOCOS NORTE,PASUQUIN,17,236,253,PH012800000,PH012817000
25
+ ILOCOS NORTE,PIDDIG,6,53,59,PH012800000,PH012818000
26
+ ILOCOS NORTE,PINILI,60,895,955,PH012800000,PH012819000
27
+ ILOCOS NORTE,SAN NICOLAS,,72,72,PH012800000,PH012820000
28
+ ILOCOS NORTE,SARRAT,2,71,73,PH012800000,PH012821000
29
+ ILOCOS NORTE,SOLSONA,28,205,233,PH012800000,PH012822000
30
+ ILOCOS NORTE,VINTAR,2,52,54,PH012800000,PH012823000
31
+ ILOCOS SUR,ALILEM,1,59,60,PH012900000,PH012901000
32
+ ILOCOS SUR,BANAYOYO,5,241,246,PH012900000,PH012902000
33
+ ILOCOS SUR,BANTAY,,27,27,PH012900000,PH012903000
34
+ ILOCOS SUR,BURGOS,1,956,957,PH012900000,PH012904000
35
+ ILOCOS SUR,CABUGAO,192,1535,1727,PH012900000,PH012905000
36
+ ILOCOS SUR,CAOAYAN,1,87,88,PH012900000,PH012907000
37
+ ILOCOS SUR,CERVANTES,6,20,26,PH012900000,PH012908000
38
+ ILOCOS SUR,GALIMUYOD,4,138,142,PH012900000,PH012909000
39
+ ILOCOS SUR,LIDLIDDA,1,8,9,PH012900000,PH012911000
40
+ ILOCOS SUR,MAGSINGAL,51,1202,1253,PH012900000,PH012912000
41
+ ILOCOS SUR,NAGBUKEL,20,61,81,PH012900000,PH012913000
42
+ ILOCOS SUR,NARVACAN,125,2299,2424,PH012900000,PH012914000
43
+ ILOCOS SUR,QUIRINO (ANGKAKI),30,42,72,PH012900000,PH012915000
44
+ ILOCOS SUR,SALCEDO (BAUGEN),11,11,22,PH012900000,PH012916000
45
+ ILOCOS SUR,SAN ILDEFONSO,2,73,75,PH012900000,PH012919000
46
+ ILOCOS SUR,SAN VICENTE,21,162,183,PH012900000,PH012921000
47
+ ILOCOS SUR,SANTA,22,573,595,PH012900000,PH012922000
48
+ ILOCOS SUR,SANTA CRUZ,,2,2,PH012900000,PH012924000
49
+ ILOCOS SUR,SANTA LUCIA,3,174,177,PH012900000,PH012925000
50
+ ILOCOS SUR,SANTA MARIA,133,1071,1204,PH012900000,PH012926000
51
+ ILOCOS SUR,SANTIAGO,,246,246,PH012900000,PH012927000
52
+ ILOCOS SUR,SANTO DOMINGO,9,139,148,PH012900000,PH012928000
53
+ ILOCOS SUR,SIGAY,,17,17,PH012900000,PH012929000
54
+ ILOCOS SUR,SINAIT,,17,17,PH012900000,PH012930000
55
+ ILOCOS SUR,SUGPON,,59,59,PH012900000,PH012931000
56
+ ILOCOS SUR,SUYO,2,62,64,PH012900000,PH012932000
57
+ ILOCOS SUR,CITY OF VIGAN (CAPITAL),59,59,118,PH012900000,PH012934000
58
+ LA UNION,AGOO,7,,7,PH013300000,PH013301000
59
+ LA UNION,ARINGAY,,24,24,PH013300000,PH013302000
60
+ LA UNION,BAGUILIN,28,313,341,PH013300000,PH013304000
61
+ LA UNION,BALAON,,15,15,PH013300000,PH013305000
62
+ LA UNION,BANGAR,4,329,333,PH013300000,PH013306000
63
+ LA UNION,BAUANG,2,68,70,PH013300000,PH013307000
64
+ LA UNION,BURGOS,4,14,18,PH013300000,PH013308000
65
+ LA UNION,NAGUILIAN,,3,3,PH013300000,PH013311000
66
+ LA UNION,PUGO,,1,1,PH013300000,PH013312000
67
+ LA UNION,SAN JUAN,3,88,91,PH013300000,PH013316000
68
+ LA UNION,SANTO TOMAS,,1,1,PH013300000,PH013317000
69
+ LA UNION,SANTOL,,4,4,PH013300000,PH013318000
70
+ LA UNION,SUDIPEN,1,6,7,PH013300000,PH013319000
71
+ PANGASINAN,AGNO,7,,7,PH015500000,PH015501000
72
+ CAGAYAN,ALCALA,516,2266,2782,PH021500000,PH021502000
73
+ CAGAYAN,ALLACAPAN,134,2041,2175,PH021500000,PH021503000
74
+ CAGAYAN,AMULUNG,22,18,40,PH021500000,PH021504000
75
+ CAGAYAN,BALLESTEROS,158,2122,2280,PH021500000,PH021507000
76
+ CAGAYAN,ENRILE,1361,5670,7031,PH021500000,PH021512000
77
+ CAGAYAN,IGUIG,288,813,1101,PH021500000,PH021515000
78
+ CAGAYAN,LAL-LO,288,813,1101,PH021500000,PH021516000
79
+ CAGAYAN,LASAM,184,2679,2863,PH021500000,PH021517000
80
+ CAGAYAN,PIAT,227,682,909,PH021500000,PH021520000
81
+ CAGAYAN,SANCHEZ-MIRA,,42,42,PH021500000,PH021522000
82
+ CAGAYAN,STA. TERESITA,21,81,102,PH021500000,PH021525000
83
+ CAGAYAN,TUGUEGARAO CITY (Capital),2055,5948,8003,PH021500000,PH021529000
84
+ ISABELA,ALICIA,24,237,261,PH023100000,PH023101000
85
+ ISABELA,AURORA,16,395,411,PH023100000,PH023103000
86
+ ISABELA,BURGOS,74,1130,1204,PH023100000,PH023105000
87
+ ISABELA,CABAGAN,819,1538,2357,PH023100000,PH023106000
88
+ ISABELA,CABATUAN,27,460,487,PH023100000,PH023107000
89
+ ISABELA,CAUAYAN CITY,103,1177,1280,PH023100000,PH023108000
90
+ ISABELA,CORDON,34,99,133,PH023100000,PH023109000
91
+ ISABELA,DIVILACAN,236,444,680,PH023100000,PH023111000
92
+ ISABELA,HAGAN,88,613,701,PH023100000,PH023114000
93
+ ISABELA,LUNA,73,319,392,PH023100000,PH023116000
94
+ ISABELA,MACONACON,409,82,491,PH023100000,PH023117000
95
+ ISABELA,DELFIN ALBANO (MAGSAYSAY),1243,3448,4691,PH023100000,PH023118000
96
+ ISABELA,MALLIG,24,369,393,PH023100000,PH023119000
97
+ ISABELA,NAGUILLAN,10,55,65,PH023100000,PH023120000
98
+ ISABELA,QUEZON,55,234,289,PH023100000,PH023122000
99
+ ISABELA,QUIRINO,32,176,208,PH023100000,PH023123000
100
+ ISABELA,RAMON,12,14,26,PH023100000,PH023124000
101
+ ISABELA,REINA MERCEDES,43,371,414,PH023100000,PH023125000
102
+ ISABELA,ROXAS,54,876,930,PH023100000,PH023126000
103
+ ISABELA,SAN AGUSTIN,,16,16,PH023100000,PH023127000
104
+ ISABELA,SAN GUILLERMO,,49,49,PH023100000,PH023128000
105
+ ISABELA,SAN ISIDRO,17,132,149,PH023100000,PH023129000
106
+ ISABELA,SAN MANUEL,67,835,902,PH023100000,PH023130000
107
+ ISABELA,SAN PABLO,23,64,87,PH023100000,PH023133000
108
+ ISABELA,SANTA MARIA,1087,3411,4498,PH023100000,PH023134000
109
+ ISABELA,CITY OF SANTIAGO,,19,19,PH023100000,PH023135000
110
+ ISABELA,SANTO TOMAS,567,1571,2138,PH023100000,PH023136000
111
+ ISABELA,TUMAUINI,857,7433,8290,PH023100000,PH023137000
112
+ NUEVA VIZCAYA,BAMBANG,4,32,36,PH025000000,PH025004000
113
+ NUEVA VIZCAYA,BAYOMBONG,9,52,61,PH025000000,PH025005000
114
+ NUEVA VIZCAYA,DUPAX DEL NORTE,1,10,11,PH025000000,PH025007000
115
+ NUEVA VIZCAYA,SOLANO,22,31,53,PH025000000,PH025013000
116
+ QUIRINO,AGLIPAY,,99,99,PH025700000,PH025701000
117
+ QUIRINO,D IFF UN,,13,13,PH025700000,PH025703000
118
+ QUIRINO,SAGUDAY,,15,15,PH025700000,PH025705000
119
+ BATAAN,HERMOSA,5,20,25,PH030800000,PH030805000
120
+ TARLAC,GERONA,,2,2,PH036900000,PH036906000
121
+ TARLAC,RAMOS,1,4,5,PH036900000,PH036912000
122
+ AURORA,DILASAG,,4,4,PH037700000,PH037703000
123
+ ABRA,BANGUED,72,518,590,PH140100000,PH140101000
124
+ ABRA,BOLINEY,,5,5,PH140100000,PH140102000
125
+ ABRA,BURCLOC,17,605,622,PH140100000,PH140104000
126
+ ABRA,DOLORES,24,356,380,PH140100000,PH140107000
127
+ ABRA,LA PAZ,27,248,275,PH140100000,PH140108000
128
+ ABRA,LAGANGITANG,30,303,333,PH140100000,PH140110000
129
+ ABRA,LAGAYAN,,36,36,PH140100000,PH140111000
130
+ ABRA,LANGIDEN,23,913,936,PH140100000,PH140112000
131
+ ABRA,LUBA,7,249,256,PH140100000,PH140114000
132
+ ABRA,MANABO,23,472,495,PH140100000,PH140116000
133
+ ABRA,PENARRUBIA,36,179,215,PH140100000,PH140117000
134
+ ABRA,PIDIGAN,43,245,288,PH140100000,PH140118000
135
+ ABRA,PILAR,2,21,23,PH140100000,PH140119000
136
+ ABRA,SALLAPADAN,9,290,299,PH140100000,PH140120000
137
+ ABRA,SAN ISIDRO,1,43,44,PH140100000,PH140121000
138
+ ABRA,SAN JUAN,40,,40,PH140100000,PH140122000
139
+ ABRA,SAN QUINTIN,16,159,175,PH140100000,PH140123000
140
+ ABRA,TIN EG,4,47,51,PH140100000,PH140125000
141
+ BENGUET,ATOK,,3,3,PH141100000,PH141101000
142
+ BENGUET,BOKOD,16,223,239,PH141100000,PH141104000
143
+ BENGUET,ITOGON,32,1,33,PH141100000,PH141106000
144
+ BENGUET,KAPANGAN,8,79,87,PH141100000,PH141108000
145
+ BENGUET,KIBUNGAN,1,2,3,PH141100000,PH141109000
146
+ BENGUET,MANKAYAN,5,50,55,PH141100000,PH141111000
147
+ BENGUET,SABLAN,,4,4,PH141100000,PH141112000
148
+ BENGUET,TUBA,,6,6,PH141100000,PH141113000
149
+ IFUGAO,BANAUE,11,381,392,PH142700000,PH142701000
150
+ IFUGAO,HINGYON,2,11,13,PH142700000,PH142709000
151
+ KALINGA,BALBALAN,3,102,105,PH143200000,PH143201000
152
+ KALINGA,PINUKPUK,28,184,212,PH143200000,PH143209000
153
+ KALINGA,RIZAL,480,1699,2179,PH143200000,PH143211000
154
+ KALINGA,TABUK CITY,50,105,155,PH143200000,PH143213000
155
+ KALINGA,TANUDAN,,11,11,PH143200000,PH143214000
156
+ KALINGA,TINGAYAN,8,55,63,PH143200000,PH143215000
157
+ MT. PROVINCE,BAUKO,7,148,155,PH144400000,PH144402000
158
+ MT. PROVINCE,BESAO,,14,14,PH144400000,PH144403000
159
+ MT. PROVINCE,BONTOC,4,2,6,PH144400000,PH144404000
160
+ MT. PROVINCE,NATONIN,,113,113,PH144400000,PH144405000
161
+ MT. PROVINCE,TADIAN,,4,4,PH144400000,PH144410000
162
+ APAYAO,CALANASAN,204,22,226,PH148100000,PH148101000
163
+ APAYAO,FLORA,4,352,356,PH148100000,PH148103000
164
+ APAYAO,LUNA,6,254,260,PH148100000,PH148105000
165
+ APAYAO,SANTA MARCELA,97,1092,1189,PH148100000,PH148107000