-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex_april.html
4521 lines (4202 loc) · 220 KB
/
index_april.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<title>SIMAWG Needs Identification Dynamic Reporting Tool</title>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="css/dc.css"/>
<link rel="stylesheet" type="text/css" href="css/bootstrap1.css"/>
<link rel="stylesheet" type="text/css" href="css/normalize.css"/>
<link href="font-awesome-4.3.0/css/font-awesome.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/lay.css"/>
<link rel="shortcut icon" href="favicon.ico" type="image/icon"/>
</head>
<body>
<style>
</style>
<div class="container-fluid">
<div class="row-fluid">
<div class="span8"><h1>SIMAWG Needs Identification Dynamic Reporting Tool - April 2015</h1>
<div class="row-fluid">
<div id="map" st><p>Number of villages assessed by Sub-district<p></div>
<div id="mapheader">
<div id="mapheader1"><a id="dmapheader" href="javascript:togglemap('inset','dmapheader');"><small>Show map</small></a>
<div id="inset"style = "position:relative;display:none">
<div id="map2"style = "position:relative"><p>Sub-district assessed<p></div>
</div>
</div>
<div id="mapheader2"><a id="dgoveader" href="javascript:togglegov('ginset','dgoveader');"><small>Show Governorates</small></a>
<div id="ginset"style = "position:relative;display:none">
<div id="govinset"style = "position:relative"><p>Governorate</p></div>
</div>
</div>
</div>
</div>
<div id="expla">
<p class="beg" style = "margin:0 0 0 0px">The SIMAWG Needs Identification Dynamic Reporting Tool is an
interactive online platform where data collected with participants in neighbouring countries, about the
humanitarian situation in Syria, is visualised. Data displayed here is collected at village / neighbourhood
level, covering displacement; access to health care and education services; shelter/NFI; water and sanitation;
food and livelihoods; and markets. The visualization tools display results for selected records, hence scores
will fluctuate whenever the selection of records is changed. Hovering with the marker over a visualisation will
reveal the exact value represented by the respective portion of the bar or pie chart.
*Variables could not be collected in Lebanon given local sensitivities, records collected in Lebanon are visualised
as ‘no information’.
<br>Please contact:<a href="mailto:[email protected]"> [email protected] </a> for further information.</p>
</div>
</div>
<div class="span4"><h3>Coverage <small><a href="javascript:dc.filterAll(); dc.renderAll();">Reset All</a></h3>
<div class="span12 pull-right" id="count-info">
<span class="filter-count "></span> selected out of <span class="total-count "></span> villages | <a href="javascript:dc.filterAll(); dc.renderAll();">Reset All</a>
</div>
<div class="span12 pull-right" id="about">
<span></span><h6>Data collected during <a href="mailto:[email protected]?subject=SIMAWG Dashboard: Request for data">April 2015 <i class="fa fa-download"></i></a></h6>
</div>
<div class="row-fluid">
<div class="span6">
<div id="governo"><p>Percentage of villages covered</br>by Governorate</p></div>
<div id="distr"><p>Percentage of villages covered</br>by District</p></div>
</div>
<div class="span6">
<div id="sub_dist"><p>Percentage of villages covered </br>by Sub-district</p></div>
</div>
</div>
</div>
</div>
<div class="row-fluid"><h3><img src="image/ic_displacement.png" width="25" height="25"style="border-width:10px;"><a> </a>Displacement <small>
<a href="javascript:dc.filterAll(); dc.renderAll();">Reset All</a> |
<a id="displ_head" href="javascript:toggle('displ_content','displ_head');">Show section</a> |
<a style="color:grey" href = "javascript:void(0)" onclick = "document.getElementById('light').style.display='block';document.getElementById('fade').style.display='block'"> Average confidence level:
<span id='meanCONFID_Displacement'></span>/3</a></small></h3>
<div id="light" class="white_content">
<h3>Confidence Level (CL): </h3>
<h5> The participant records the type of key informant for each question in each village level questionnaire.
The key informant type is converted into a score of 1-3 in the analysis stage, with the assistance of a confidence
matrix that outlines the level of reliability associated with each type of key informant in relation to each individual
variable. The confidence level for each key informant type relating to each question were nominated independently by
data collection teams in Jordan, the KRI and Lebanon. Suggested scores were triangulated to identify level of agreement
on scores between countries. Scores were then reviewed to ensure consistency across similar types of questions – and similar types of key informants.</h5>
<br>
<h5 > Results presented through the interactive visualization tools on this online platform, are provided with average
confidence level by sector or area of interest (e.g. Displacement; Education; Food). The average of all scores of all
key informants providing information for all variables within a given sector or area of interest is displayed here alongside
he results. Since the visualization tools display results for selected records, scores will fluctuate whenever the selection
of records is changed.</h5>
<br>
<h5>Please contact:<a href="mailto:[email protected]?subject=SIMAWG Dashboard: Confidence level"> [email protected] </a> for further information.</h5>
<a href = "javascript:void(0)" onclick = "document.getElementById('light').style.display='none';document.getElementById('fade').style.display='none'">Close</a></div>
<div id="fade" class="black_overlay"></div>
<div class="row-fluid" id="displ_content" style="display: none">
<div class="row-fluid">
<div class="span3">
<div id="pop_preconflict"><p>% of <strong style="color:#FF9933">host population </strong> remaining</p></div>
<div id="ipds_presence"><p>% of villages hosting <strong style="color:#DA4400">IDPs </strong></p></div>
</div>
<div class="span3">
<div id="gov_origin"><p><strong style="color:#DA4400">IDP </strong>most common Governorate of origin*</p></div>
</div>
<div class="span3">
<div id="dist_origin"><p><strong style="color:#DA4400">IDP </strong>most common District of origin*</p></div>
</div>
<div class="span3">
<div id="sd_origin"><p><strong style="color:#DA4400">IDP </strong>most common Sub-district of origin*</p></div>
</div>
</div>
<div class="row-fluid"><h4>Types of <strong style="color:#DA4400">IDPs </strong>living in village</h4>
<div id="syrians"><p>Syrian?</p></div>
<div id="other_foreign_nationals"><p>Other?</p></div>
</div>
<div class="row-fluid"><h4>Most common reasons <strong style="color:#DA4400">IDPs </strong>say they stay in the village</h4>
<div id="employment"><p>Access to employment </br> / income / shelter?</br></br> </p></div>
<div id="family"><p>Family ties?</br> </br></br> </p></div>
<div id="accessible"><p>Other accessible locations</br>or routes to other locations less</br> safe than this village?</p></div>
<div id="protect_assets"><p>Protect assets?</br></br> </br> </p></div>
<div id="cannot_physically"><p>Movement restrictions?</br></br></br></p></div>
<div id="no_money"><p>No money to pay </br> for the movement?</br></br></p></div>
<div id="transit"><p>In transit (on the way</br> to somewhere else)?</br></br></p></div>
<div id="other_rzn"><p>Other?</br></br></br></p></div>
</div>
<div class="row-fluid"><h4>Most common reasons <strong style="color:#FF9933">host population</strong> say they stay in the village</h4>
<div id="employment_pre_conf_pop"><p>Access to employment </br> / income / shelter?</br></br></p></div>
<div id="family_pre_conf_pop"><p>Family ties?</br></br></br></p></div>
<div id="accessible_pre_conf_pop"><p>Other accessible locations</br> or routes to other locations less </br> safe than this village?</p></div>
<div id="protect_assets_pre_conf_pop"><p>Protect assets?</br></br></br></p></div>
<div id="cannot_physically_pre_conf_pop"><p>Movement restrictions?</br></br></br></p></div>
<div id="no_money_pre_conf_pop"><p>No money to pay</br>for movement?</br></br></p></div>
<div id="transit_pre_conf_pop"><p>In transit (on the way</br> to somewhere else)?</br></br></p></div>
<div id="other_rzn_pre_conf_pop"><p>Other</br></br></br></p></div>
</div>
<div class="row-fluid"><h4>Events that would lead <strong style="color:#DA4400">IDPs </strong>to leave the village*</h4>
<div id="escal_conflict"><p>Escalation of conflict?</br></br></p></div>
<div id="access_money"><p>Access to money to pay </br> the movement?</p></div>
<div id="loss_income"><p>Loss of income?</br></br></p></div>
<div id="loss_assets"><p>Loss of assets?</br></br></p></div>
<div id="opening_border"><p>Opening of border?</br></br></p></div>
<div id="reduce_access_services"><p>Reduced access to</br> basic services?</p></div>
<div id="fear_arrest"><p>Fear of arbitrary arrest?</br></br></p></div>
<div id="other_rzn_leave"><p>Other?</br></br></p></div>
</div>
<div class="row-fluid"><h4>Events that would lead <strong style="color:#FF9933">host population </strong>to leave the village</h4>
<div id="Disp_host_confescaDIV"><p>Escalation of conflict?</br></br></p></div>
<div id="Disp_host_conf_moneyDIV"><p>Access to money to pay </br> the movement?</p></div>
<div id="Disp_host_conf_incomeDIV"><p>Loss of income?</br></br></p></div>
<div id="Disp_host_conf_assetsDIV"><p>Loss of assets?</br></br></p></div>
<div id="Disp_host_conf_borderDIV"><p>Opening of border?</br></br></p></div>
<div id="Disp_host_conf_serviceDIV"><p>Reduced access to</br> basic services?</p></div>
<div id="Disp_host_conf_arrestDIV"><p>Fear of arbitrary arrest?</br></br></p></div>
<div id="Disp_host_conf_otherDIV"><p>Other?</br></br></p></div>
</div>
<div class="row-fluid"><h4>Border crossing</h4>
<div id='Disp_min_cost_borderDIV'><p>Average cost of border crossing to leave Syria (low estimate)</p></div>
<div id='Disp_max_cost_borderDIV'><p>Average cost of border crossing to leave Syria (high estimate)</p></div>
</div>
</div>
</div>
<div class="row-fluid"><h3><img src="image/ic_education.png" width="25" height="25"style="border-width:10px;"><a> </a>Education<small> <a
href="javascript:dc.filterAll(); dc.renderAll();">Reset All</a> |
<a id="Education_head" href="javascript:toggle('Education_content','Education_head');" >Show section</a>
| <a style="color:grey" href = "javascript:void(0)" onclick = "document.getElementById('light').style.display='block';document.getElementById('fade').style.display='block'"> Average confidence level:
<span id='meanCONFID_Education'></span>/3</a></small></h3>
<div class="row-fluid" id="Education_content"style="display: none">
<div class="row-fluid">
<div id="edu_prim_schoolDIV"><p>Primary school - status</p></div>
<div id="edu_sec_schoolDIV"><p>Secondary school - status</p></div>
<div id="edu_High_schoolDIV"><p>High school - status</p></div>
<div id="edu_univ_schoolDIV"><p>University - status</p></div>
<div id="edu_insti_schoolDIV"><p>Institute - status</p></div>
</div>
<div class="row-fluid"><h4>Most common reasons why school-aged children are not attending school</h4>
<div id='Educ_due_to_destruction_of_facilitiesDIV'><p>Destruction </br>of facilities?</p></div>
<div id='Educ_due_to_lack_of_teaching_staffDIV'><p>Lack of teaching</br> staff?</p></div>
<div id='Educ_due_to_lack_of_school_suppliesDIV'><p>Lack of school</br> supplies?</p></div>
<div id='Educ_facilities_used_for_alternative_purposesDIV'><p>Facilities used for</br> alternative purposes?</p></div>
<div id='Educ_Distance_to_services_is_too_farDIV'><p>Distance to school </br>is too far?</p></div>
<div id='Educ_Route_to_services_is_unsafeDIV'><p>Route to school </br>is unsafe?</p></div>
<div id='Educ_Services_have_no_spaces_availableDIV'><p>School has no</br>spaces available?</p></div>
<div id='Educ_Parents_do_not_approve_of_curriculumDIV'><p>Parents do not approve</br>of the curriculum?</p></div>
<div id='Educ_otherDIV'><p>Other?</br></br></p></div>
</div>
</div>
</div>
<div class="row-fluid"><h3><img src="image/ic_food.png" width="25" height="25"style="border-width:10px;"><a>
</a>Food Security<small> <a href="javascript:dc.filterAll(); dc.renderAll();">Reset All</a> |
<a id="Food_head" href="javascript:toggle('Food_content','Food_head');" >Show section</a> |
<a style="color:grey" href = "javascript:void(0)" onclick = "document.getElementById('light').style.display='block';document.getElementById('fade').style.display='block'"> Average confidence level:
<span id='meanCONFID_Food_Security'></span>/3</a></small></h3>
<div class="row-fluid" id="Food_content"style="display: none">
<div class="row-fluid"><h4>Most common food sources</h4>
<div id='food_obt_barteningDIV'><p>Bartening?</br></br></p></div>
<div id='food_obt_purchasedDIV'><p>Purchased?</br></br></p></div>
<div id='food_obt_own_producDIV'><p>Own production?</br></br></p></div>
<div id='food_obt_receivDIV'><p>Received through </br>food distributions?</p></div>
<div id='food_obt_relativDIV'><p>Received from others </br>(relatives friends)?</p></div>
</div>
<div class="row-fluid"><h4>Prices controlled in village markets </br></h4>
<div id='food_market_pricesDIV'><p></p></div>
</div>
<div class="row-fluid"><h4>Primary reasons why food is difficult to access</h4>
<div id='food_acc_rzn_lack_marketDIV'><p>Lack of access </br>to market?</p></div>
<div id='food_acc_rzn_lack_ressDIV'><p>Lack of resources </br>to buy food?</p></div>
<div id='food_acc_rzn_type_expenDIV'><p>Some food items </br>are expensive?</p></div>
<div id='food_acc_rzn_foodNotAvDIV'><p>Some food items </br>are not available?</p></div>
<div id='food_acc_rzn_local_prodDecrDIV'><p>Local production </br>decreased?</p></div>
<div id='food_acc_rzn_noFuelDIV'><p>Cooking fuel</br>is not available?</p></div>
<div id='food_acc_rzn_acc_nofuelDIV'><p>Cooking fuel</br>is not possible to access?</p></div>
</div>
<div class="row-fluid">
<div id='food_IDPs_foodDIV'><p>% of <strong style="color:#DA4400">IDPs </strong>that received food assistance </br>during March 2015</p></div>
<div id='food_pop_food_preconfDIV'><p>% of <strong style="color:#FF9933">host population </strong> that</br>received food assistance during March 2015</p></div>
</div>
<div class="row-fluid">
<div class="span6"> <h4>Average price of food items on village markets in March 2015</h4>
<div id='food_avg_riceDIV'><p>Rice (1 kg)</p></div>
<div id='food_avg_goatDIV'><p>Mutton (1 kg)</p></div>
<div id='food_avg_chickehDIV'><p>Chicken (1 kg)</p></div>
<div id='food_avg_oilDIV'><p>Cooking Oil (1 litre)</p></div>
<div id='food_avg_sugarDIV'><p>Sugar (1 kg)</p></div>
<div id='food_avg_tomatoDIV'><p>Tomato (1 kg)</p></div>
<div id='food_avg_cucumberDIV'><p>Cucumber (1 kg)</p></div>
<div id='food_avg_bread_privDIV'><p>Bread, private bakeries (1 pack)</p></div>
<div id='food_avg_bread_pubDIV'><p>Bread,public bakeries (1 pack)</p></div>
<div id='food_avg_flourDIV'><p>Flour (1 kg)</p></div>
<div id='food_avg_milkDIV'><p>Milk (1 litre)</p></div>
<div id='food_avg_eggDIV'><p>Egg (per egg)</p></div>
<div id='food_avg_babyDIV'><p>Baby formula (1 kg)</p></div>
<div id='food_avg_pepsiDIV'><p>Pepsi (1 litre)</p></div>
</div>
<div class="span6"><h4>Average price of food items on village markets before the conflict</h4>
<div id='food_avgB_riceDIV'><p>Rice (1 kg)</p></div>
<div id='food_avgB_goatDIV'><p>Mutton (1 kg)</p></div>
<div id='food_avgB_chickehDIV'><p>Chicken (1 kg)</p></div>
<div id='food_avgB_oilDIV'><p>Cooking oil (1 litre)</p></div>
<div id='food_avgB_sugarDIV'><p>Sugar (1 kg)</p></div>
<div id='food_avgB_tomatoDIV'><p>Tomato (1 kg)</p></div>
<div id='food_avgB_cucumberDIV'><p>Cucumber (1 kg)</p></div>
<div id='food_avgB_bread_privDIV'><p>Bread, private bakeries (1 pack)</p></div>
<div id='food_avgB_bread_pubDIV'><p>Bread,public bakeries (1 pack)</p></div>
<div id='food_avgB_flourDIV'><p>Flour (1 kg)</p></div>
<div id='food_avgB_milkDIV'><p>Milk (1 litre)</p></div>
<div id='food_avgB_eggDIV'><p>Egg (per egg)</p></div>
<div id='food_avgB_babyDIV'><p>Baby formula (1 kg)</p></div>
<div id='food_avgB_pepsiDIV'><p>Pepsi (1 litre)</p></div>
</div>
</div>
<div class="row-fluid">
<div id='food__bread_sourceDIV'><p>Most common source of bread</br> in the village</br></br></p></div>
<div id='food__day_nobreadprivDIV'><p>Number of days during March 2015,</br> when bread was NOT available to buy from</br>Public bakeries</p></div>
<div id='food__day_nobreadpubDIV'><p>Number of days during March 2015,</br> when bread was NOT available to buy from</br>Private bakeries</p></div>
</div>
<div class="row-fluid"> <h4>Most common reasons why people could not access or make bread every day</h4>
<div id='food_rnz_flourNADIV'><p>Flour </br>not available?</p></div>
<div id='food_rnz_flourExpDIV'><p>Flour </br>too expensive?</p></div>
<div id='food_rnz_yeastNADIV'><p>Yeast </br>not available?</p></div>
<div id='food_rnz_yeastExpDIV'><p>Yeast </br>too expensive?</p></div>
<div id='food_rnz_wheatNADIV'><p>Wheat </br>not available?</p></div>
<div id='food_rnz_wheatExpDIV'><p>Wheat </br>too expensive?</p></div>
<div id='food_rnz_elecNADIV'><p>Electricity/fuel</br> not available?</p></div>
<div id='food_rnz_elecEXPDIV'><p>Electricity/fuel</br> too expensive?</p></div>
</div>
<div class="row-fluid">
<div id='food_SAMDIV'><p>Children diagnosed with</br> Severe Acute Malnutrition (SAM) during March 2015?</p></div>
</div>
</div>
</div>
<div class="row-fluid"><h3><img src="image/ic_health.png" width="25" height="25"style="border-width:10px;"><a> </a>Health<small> <a href="javascript:dc.filterAll(); dc.renderAll();">Reset All</a> |
<a id="health_head" href="javascript:toggle('health_content','health_head');" >Show section</a>
| <a style="color:grey" href = "javascript:void(0)" onclick = "document.getElementById('light').style.display='block';document.getElementById('fade').style.display='block'"> Average confidence level:
<span id='meanCONFID_Health'></span>/3</a></small></h3>
<div class="row-fluid" id="health_content"style="display: none">
<div class="row-fluid">
<div id="public_hospital"><p>Public hospitals - status</p></div>
<div id="private_hospital"><p>Private hospitals - status</p></div>
<div id="primary_health_centre"><p>Primary health centres - status</p></div>
<div id="private_clinic"><p>Private clinics - status</p></div>
<div id="mobile_clinic"><p>Mobile clinics - status</p></div>
</div>
<div class="row-fluid"><h4>Most common reasons why health care facilities are not fully functioning</h4>
<div id='health_no_health_facilitiesDIV'><p>No health facilities?</p></div>
<div id='health_lack_funds_healthDIV'><p>Lack funds?</p></div>
<div id='health_no_elec_healthDIV'><p>Lack of electricity?</p></div>
<div id='health_no_medecineDIV'><p>Lack of medecine?</p></div>
<div id='health_no_water_healthDIV'><p>Lack of water?</p></div>
<div id='health_no_equipement_healthDIV'><p>Lack of equipment?</p></div>
<div id='health_no_medical_staffDIV'><p>Lack of medical staff?</p></div>
<div id='health_no_female_staffDIV'><p>Lack of female staff?</p></div>
<div id='health_facilities_damagedDIV'><p>Facilities damaged?</br></br></p></div>
<div id='health_sed_alternative_healthDIV'><p>Facilities used for</br> alternative purpose?</p></div>
<div id='health_other_healthDIV'><p>Other?</br></br></p></div>
</div>
<div class="row-fluid"><h4>Health care services available in the village</h4>
<div id='health_child_immunizationDIV'><p>Child immunization?</p></div>
<div id='health_diarrhea_managementDIV'><p>Diarrhea management?</p></div>
<div id='health_emergency_careDIV'><p>Emergency care?</p></div>
<div id='health_skilled_careDIV'><p>Skilled childbirth care?</p></div>
<div id='health_surgeryDIV'><p>Surgery?</p></div>
<div id='health_diabetes_careDIV'><p>Diabetes care?</p></div>
</div>
<div class="row-fluid">
<div id="rzn_not_access_health"><p>Most common reason why people can</br>not access the health care facilities</p></div>
</div>
<div class="row-fluid"><h4>Average price of Health care items in village markets in March 2015</h4>
<div id="health_price_antibio"><p>Antibiotics</br>(one packet)</p></div>
<div id="health_price_analgesics"><p>Analgesics (painkillers)</br>(one packet)</p></div>
<div id="health_price_ors"><p>Oral rehydration salts (ORS)</br>(one packet)</p></div>
<div id="health_ppl_pay"><p>People in the village are paying for consultations,</br> treatment procedures and drugs?</p></div>
</div>
<div class="row-fluid"><h4>Most common health problems in the village</h4>
<div id='health_disabilitiesDIV'><p>Disabilities?</br></br></p></div>
<div id='health_diarrheaDIV'><p>Diarrhea?</br></br></p></div>
<div id='health_skin_diseaseDIV'><p>Skin disease?</br></br></p></div>
<div id='health_leichmaniasisDIV'><p>Leichmaniasis?</br></br></p></div>
<div id='health_measlesDIV'><p>Measles?</br></br></p></div>
<div id='health_communicable_diseasesDIV'><p>Communicable diseases?</br></br></p></div>
<div id='health_chronic_diseasesDIV'><p>Chronic diseases?</br></br></p></div>
<div id='health_maternal_health_issuesDIV'><p>Maternal health issues?</br></br></p></div>
<div id='health_injuriesDIV'><p>Injuries?</br></br></p></div>
<div id='health_respiratory_infectDIV'><p>Respiratory infection?</br></br></p></div>
<div id='health_feverDIV'><p>Fever?</br></br></p></div>
<div id='health_polioDIV'><p>Polio?</br></br></p></div>
<div id='health_malnutritionDIV'><p>Malnutrition?</br></br></p></div>
<div id='health_severe_less_5DIV'><p>Severe disease affecting </br> children aged less than 5?</p></div>
<div id='health_psycho_traumaDIV'><p>Psychological trauma?</br></br></p></div>
<div id='health_health_prob_otherDIV'><p>Other?</br></br></p></div>
</div>
<div id="percent_birth_home"><p>Percentage of pregnant women delivering</br> babies at home without assistance</br> from a midwife / trained nurse</p></div>
<div id="sexual_violence"><p>Sexual violence reported in the village?*</p></div>
</div>
</div>
<div class="row-fluid"><h3><img src="image/ic_livelihood.png" width="25" height="25"style="border-width:10px;"><a> </a>Livelihoods<small> <a
href="javascript:dc.filterAll(); dc.renderAll();">Reset All</a> |
<a id="Livelihoods_head" href="javascript:toggle('Livelihoods_content','Livelihoods_head');" >Show section</a>
| <a style="color:grey" href = "javascript:void(0)" onclick = "document.getElementById('light').style.display='block';document.getElementById('fade').style.display='block'"> Average confidence level:
<span id='meanCONFID_Livelihoods'></span>/3</a></small></h3>
<div class="row-fluid" id="Livelihoods_content"style="display: none">
<div class="row-fluid"><h4>Most common income/resources used by people to cover essential needs</h4>
<div id='liv_inc_stable_empDIV'><p>Stable employment?</br></br></p></div>
<div id='liv_inc_unstable_empDIV'><p>Unstable employment?</br></br></p></div>
<div id='liv_inc_farm_ownerDIV'><p>Farm owner?</br></br></p></div>
<div id='liv_inc_bussDIV'><p>Business/trade?</br></br></p></div>
<div id='liv_inc_allowDIV'><p>Allowances/Social </br>security/welfare?</p></div>
<div id='liv_inc_sup_famDIV'><p>Support from relatives</br> or friends?</p></div>
<div id='liv_inc_remitDIV'><p>Remittances from </br>outside Syria?</p></div>
<div id='liv_inc_savDIV'><p>Savings?</br></br></p></div>
<div id='liv_inc_aidDIV'><p>Sale of humanitarian aid?</br></br></p></div>
<div id='liv_inc_cashDIV'><p>Cash from humanitarian</br> organisation?</p></div>
<div id='liv_inc_otherDIV'><p>Other?</br></br></p></div>
</div>
<div class="row-fluid"><h4>Most common strategies used by people to cope with lack of income/resources</h4>
<div id='liv_cop_beggDIV'><p>Begging?</br></br></p></div>
<div id='liv_cop_loanDIV'><p>Taking loans/credit?</br></br></p></div>
<div id='liv_cop_relativeDIV'><p>Borrowing money</br> from family/friends?</p></div>
<div id='liv_cop_garbageDIV'><p>Looking for food</br> in the garbage?</p></div>
<div id='liv_cop_HhassetDIV'><p>Selling household assets?</br></br></p></div>
<div id='liv_cop_skipmealDIV'><p>Skipping meals?</br></br></p></div>
<div id='liv_cop_szemealDIV'><p>Reducing meal size?</br></br></p></div>
<div id='liv_cop_noEatDIV'><p>Spending days</br> without eating?</p></div>
<div id='liv_cop_otherDIV'><p>Other?</br></br></p></div>
</div>
<div class="row-fluid"><h4>Primary currency used in the village</h4>
<div id='liv_currencyDIV'></div>
</div>
</div>
</div>
<div class="row-fluid"><h3><img src="image/ic_NFI2.png" width="25" height="25"style="border-width:10px;"><a> </a>Non-Food Items <small> <a
href="javascript:dc.filterAll(); dc.renderAll();">Reset All</a> |
<a id="nfi_head" href="javascript:toggle('nfi_content','nfi_head');" >Show section</a>
|<a style="color:grey" href = "javascript:void(0)" onclick = "document.getElementById('light').style.display='block';document.getElementById('fade').style.display='block'"> Average confidence level:
<span id='meanCONFID_NFI'></span>/3</a></small></h3>
<div class="row-fluid" id="nfi_content"style="display: none">
<div class="row-fluid">
<div id="elec_before_conflict"><p>Primary source of electricity </br>Before the conflict</p></div>
<div id="elec_prev_month"><p>Primary source of electricity </br>March 2015</p></div>
</div>
<div class="row-fluid"><h4>Average price of Non-Food Items on village markets in March 2015</h4>
<div id="price_butane"><p>Butane gas (1 cannister)</br></br></p></div>
<div id="price_kerosene"><p>Kerosene (1 litre)</br></br></p></div>
<div id="price_propane"><p>Propane gas (1 cannister)</br></br></p></div>
<div id="price_roofing"><p>Corrugated iron sheets </br> (3.2 square metre)</p></div>
<div id="price_coal"><p>Coal - (1 kg)</br></br></p></div>
<div id="price_fire_wood"><p>Fire wood (1 tonne) </br></br></p></div>
<div id="price_wood_constr"><p>Wood for construction </br>(1 metre)</p></div>
<div id="price_cement"><p>Cement (50 kg)</br></br></p></div>
</div>
<div class="row-fluid"><h4>Most common coping strategies people are using to cope with lack of fuel</h4>
<div id='NFI_burn_furn_withoutDIV'><p>Burning furniture without use?</br></br></p></div>
<div id='NFI_burn_furn_withDIV'><p>Burning furniture with use?</br></br></p></div>
<div id='NFI_burn_agr_apparelDIV'><p>Burning agricultural /</br> other productive assets?</p></div>
<div id='NFI_burn_clothesDIV'><p>Burning clothes?</br></br></p></div>
<div id='NFI_burn_plascticsDIV'><p>Burning plastics?</br></br></p></div>
<div id='NFI_burn_wasteDIV'><p>Burning waste?</br></br></p></div>
<div id='NFI_lack_fuel_otherDIV'><p>Other?</br></br></p></div>
</div>
</div>
</div>
<div class="row-fluid"><h3><img src="image/ic_shelter.png" width="25" height="25"style="border-width:10px;"><a> </a>Shelter <small> <a href="javascript:dc.filterAll(); dc.renderAll();">Reset All</a> |
<a id="shelt_head" href="javascript:toggle('shelt_content','shelt_head');" >Show section</a>
| <a style="color:grey" href = "javascript:void(0)" onclick = "document.getElementById('light').style.display='block';document.getElementById('fade').style.display='block'"> Average confidence level:
<span id='meanCONFID_Shelter'></span>/3</a></small></h3>
<div class="row-fluid" id="shelt_content"style="display: none">
<div id="type_housing_idps"><p>Most common type of housing</br>- <strong style="color:#DA4400">IDPs</strong></p></div>
<div id="type_housing_pre_conf_pop"><p>Most common type of housing</br> - <strong style="color:#FF9933">host population</strong></p></div>
<div id="type_housing_damaged"><p>Most common type of housing <strong style="color:#FF9933">host population</strong></br>moved to when original housing damaged</p></div>
</div>
</div>
<div class="row-fluid"><h3><img src="image/ic_WASH.png" width="25" height="25"style="border-width:10px;"><a> </a>WASH<small> <a
href="javascript:dc.filterAll(); dc.renderAll();">Reset All</a> |
<a id="WASH_head" href="javascript:toggle('WASH_content','WASH_head');">Show section</a>
|<a style="color:grey" href = "javascript:void(0)" onclick = "document.getElementById('light').style.display='block';document.getElementById('fade').style.display='block'"> Average confidence level: <span id='meanCONFID_WASH'></span>/3</a></small></h3>
<div class="row-fluid" id="WASH_content"style="display: none">
<div class="row-fluid"><h4>Average price of WASH items on village markets in March 2015</h4>
<div id="price_soap"><p>Soap (one bar)</br></br></p></div>
<div id="price_jerrycan"><p>Jerry can (1)</br></br></p></div>
<div id="price_laundry"><p>Laundry powder (1kg)</br></br></p></div>
<div id="price_napkins"><p>Sanitary napkins / pads </br>(1 pack of 9)</p></div>
<div id="price_diapers"><p>Disposable diapers (1kg)</br></br></p></div>
<div id="coast_water_network"><p>Water network (1 cubic metre)</br></br></p></div>
<div id="coast_bottled_water"><p>Bottled water (1 litre)</br></br></p></div>
<div id="coast_public_water_truck"><p>Water trucking - public / subsidised </br>(1 cubic metre)</p></div>
<div id="coast_private_water_truck"><p>Water trucking - private</br> (1 cubic metre)</p></div>
</div>
<div class="row-fluid"><h4>Access to water and sanitation</h4>
<div id="water_source"><p>Most common drinking water source</br></br></p></div>
<div id="water_status"><p>Status of water from </br> most common source accessed</p></div>
<div id="access_latrines"><p>Access to latrines?</p></div>
<div id="dispose_garbage"><p>Most common way people </br>dispose of garbage</p></div>
</div>
<div class="row-fluid">
<div class="span6">
<div class="row-fluid"><h4>Most common reasons for reduction in available safe water</br> in village since March 2015</h4>
<!-- TO REMOVE -->
<div id='WASH_water_system_damagedDIV'><p>Water system damaged?</br></br></p></div>
<div id='WASH_water_lack_elecDIV'><p>Lack of electricity?</br></br></p></div>
<div id='WASH_water_shortage_chlorineDIV'><p>Lack of chlorine?</br></br></p></div>
<div id='WASH_water_lack_fuelDIV'><p>Lack of fuel?</br></br></p></div>
<div id='WASH_water_treatment_damagedDIV'><p>Water treatment </br>station damaged?</p></div>
<div id='WASH_water_otherDIV'><p>Other?</br></br></p></div>
</div>
</div>
<div class="span6">
<div class="row-fluid"><h4>Most common reasons for reduction in available safe water</br> in village since the conflict began</h4>
<div id='WASH_water_system_damaged_since_conflictDIV'><p>Water system damaged?</br></br></p></div>
<div id='WASH_water_lack_elec_since_conflictDIV'><p>Lack of electricity?</br></br></p></div>
<div id='WASH_water_shortage_chlorine_since_conflictDIV'><p>Lack of chlorine?</br></br></p></div>
<div id='WASH_water_lack_fuel_since_conflictDIV'><p>Lack of fuel?</br></br></p></div>
<div id='WASH_water_treatment_damaged_since_conflictDIV'><p>Water treatment </br>station damaged?</p></div>
<div id='WASH_water_other_since_conflictDIV'><p>Other?</br></br></p></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script type="text/javascript" src="js/d3.js"></script>
<script type="text/javascript" src="js/crossfilter.js"></script>
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/dc.js"></script>
<script src="SYR_adm3.js"></script>
<script type="text/javascript">
function toggle(showHideDiv, switchTextDiv) {
var ele = document.getElementById(showHideDiv);
var text = document.getElementById(switchTextDiv);
if(ele.style.display == "block") {
ele.style.display = "none";
text.innerHTML = "Show section";
}
else {
ele.style.display = "block";
text.innerHTML = "Hide section";
}
}
function togglemap(showHideDiv, switchTextDiv) {
var ele = document.getElementById(showHideDiv);
var text = document.getElementById(switchTextDiv);
if(ele.style.display == "block") {
ele.style.display = "none";
text.innerHTML = "<small>Show map</small>";
}
else {
ele.style.display = "block";
text.innerHTML = "<small>Hide map</small>";
}
}
function togglegov(showHideDiv, switchTextDiv) {
var ele = document.getElementById(showHideDiv);
var text = document.getElementById(switchTextDiv);
if(ele.style.display == "block") {
ele.style.display = "none";
text.innerHTML = "<small>Show Governorates</small>";
}
else {
ele.style.display = "block";
text.innerHTML = "<small>Hide Governorates</small>";
}
}
var mapChart = dc.geoChoroplethChart("#map"),
map2Chart = dc.geoChoroplethChart("#map2"),
govinsetChart = dc.rowChart("#govinset"),
govchart = dc.rowChart("#governo"),
Distchart = dc.rowChart("#distr"),
SubDistchart = dc.rowChart("#sub_dist"),
///////////////////confidence widjet
meanCONFID_Displacement = dc.numberDisplay("#meanCONFID_Displacement"),
expnCONFID_Displacement = dc.numberDisplay("#expnCONFID_Displacement"),
meanCONFID_Education = dc.numberDisplay("#meanCONFID_Education"),
expnCONFID_Education = dc.numberDisplay("#expnCONFID_Education"),
meanCONFID_Food_Security = dc.numberDisplay("#meanCONFID_Food_Security"),
expnCONFID_Food_Security = dc.numberDisplay("#expnCONFID_Food_Security"),
meanCONFID_Health = dc.numberDisplay("#meanCONFID_Health"),
expnCONFID_Health = dc.numberDisplay("#expnCONFID_Health"),
meanCONFID_Livelihoods = dc.numberDisplay("#meanCONFID_Livelihoods"),
expnCONFID_Livelihoods = dc.numberDisplay("#expnCONFID_Livelihoods"),
meanCONFID_NFI = dc.numberDisplay("#meanCONFID_NFI"),
expnCONFID_NFI = dc.numberDisplay("#expnCONFID_NFI"),
meanCONFID_Shelter = dc.numberDisplay("#meanCONFID_Shelter"),
expnCONFID_Shelter = dc.numberDisplay("#expnCONFID_Shelter"),
meanCONFID_WASH = dc.numberDisplay("#meanCONFID_WASH"),
expnCONFID_WASH = dc.numberDisplay("#expnCONFID_WASH");
////////////Displacement
PopPreChart = dc.rowChart("#pop_preconflict");
Idp_presChart = dc.rowChart("#ipds_presence");
GovOriChart = dc.rowChart("#gov_origin");
DistOriChart = dc.rowChart("#dist_origin");
SubDistOriChart = dc.rowChart("#sd_origin");
GenderChart = dc.pieChart("#gender");
TypeChart = dc.rowChart("#type");
syrianCT = dc.pieChart("#syrians")
other_foreign_nationalsCT= dc.pieChart("#other_foreign_nationals")
employmentCT = dc.pieChart("#employment")
familyCT = dc.pieChart("#family")
accessibleCT = dc.pieChart("#accessible")
protect_assetsCT = dc.pieChart("#protect_assets")
cannot_physicallyCT = dc.pieChart("#cannot_physically")
no_moneyCT = dc.pieChart("#no_money")
transitCT = dc.pieChart("#transit")
other_rznCT = dc.pieChart("#other_rzn")
employment_pre_conf_popCT = dc.pieChart("#employment_pre_conf_pop")
family_pre_conf_popCT = dc.pieChart("#family_pre_conf_pop")
accessible_pre_conf_popCT = dc.pieChart("#accessible_pre_conf_pop")
protect_assets_pre_conf_popCT = dc.pieChart("#protect_assets_pre_conf_pop")
cannot_physically_pre_conf_popCT = dc.pieChart("#cannot_physically_pre_conf_pop")
no_money_pre_conf_popCT = dc.pieChart("#no_money_pre_conf_pop")
transit_pre_conf_popCT = dc.pieChart("#transit_pre_conf_pop")
other_rzn_pre_conf_popCT = dc.pieChart("#other_rzn_pre_conf_pop")
escal_conflictCT = dc.pieChart("#escal_conflict")
access_moneyCT = dc.pieChart("#access_money")
loss_incomeCT = dc.pieChart("#loss_income")
loss_assetsCT = dc.pieChart("#loss_assets")
opening_borderCT = dc.pieChart("#opening_border")
reduce_access_servicesCT = dc.pieChart("#reduce_access_services")
fear_arrestCT = dc.pieChart("#fear_arrest")
other_rzn_leaveCT = dc.pieChart("#other_rzn_leave")
/////////////shelter
type_housing_idpsCT = dc.rowChart("#type_housing_idps")
type_housing_pre_conf_popCT = dc.rowChart("#type_housing_pre_conf_pop")
type_housing_damagedCT = dc.rowChart("#type_housing_damaged")
elec_before_conflictChart = dc.pieChart("#elec_before_conflict");
elec_prev_monthChart = dc.pieChart("#elec_prev_month");
//price
price_butaneCT = dc.barChart("#price_butane")
price_keroseneCT = dc.barChart("#price_kerosene")
price_propaneCT = dc.barChart("#price_propane")
price_roofingCT = dc.barChart("#price_roofing")
price_coalCT = dc.barChart("#price_coal")
price_fire_woodCT = dc.barChart("#price_fire_wood")
price_wood_constrCT = dc.barChart("#price_wood_constr")
price_cementCT = dc.barChart("#price_cement")
NFI_burn_no_lackfuelChart = dc.pieChart('#NFI_burn_no_lackfuelChartDIV')
NFI_burn_furn_withoutChart = dc.pieChart('#NFI_burn_furn_withoutDIV')
NFI_burn_furn_withChart = dc.pieChart('#NFI_burn_furn_withDIV')
NFI_burn_agr_apparelChart = dc.pieChart('#NFI_burn_agr_apparelDIV')
NFI_burn_clothesChart = dc.pieChart('#NFI_burn_clothesDIV')
NFI_burn_plascticsChart = dc.pieChart('#NFI_burn_plascticsDIV')
NFI_burn_wasteChart = dc.pieChart('#NFI_burn_wasteDIV')
NFI_lack_fuel_otherChart = dc.pieChart('#NFI_lack_fuel_otherDIV')
////health
public_hospitalCT = dc.rowChart("#public_hospital")
private_hospitalCT = dc.rowChart("#private_hospital")
primary_health_centreCT = dc.rowChart("#primary_health_centre")
private_clinicCT = dc.rowChart("#private_clinic")
mobile_clinicCT = dc.rowChart("#mobile_clinic")
rzn_not_access_healthCT = dc.rowChart("#rzn_not_access_health")
health_no_health_facilitiesChart = dc.pieChart('#health_no_health_facilitiesDIV')
health_lack_funds_healthChart = dc.pieChart('#health_lack_funds_healthDIV')
health_no_elec_healthChart = dc.pieChart('#health_no_elec_healthDIV')
health_no_medecineChart = dc.pieChart('#health_no_medecineDIV')
health_no_water_healthChart = dc.pieChart('#health_no_water_healthDIV')
health_no_equipement_healthChart = dc.pieChart('#health_no_equipement_healthDIV')
health_no_medical_staffChart = dc.pieChart('#health_no_medical_staffDIV')
health_no_female_staffChart = dc.pieChart('#health_no_female_staffDIV')
health_facilities_damagedChart = dc.pieChart('#health_facilities_damagedDIV')
health_sed_alternative_healthChart = dc.pieChart('#health_sed_alternative_healthDIV')
health_other_healthChart = dc.pieChart('#health_other_healthDIV')
health_child_immunizationChart = dc.pieChart('#health_child_immunizationDIV')
health_diarrhea_managementChart = dc.pieChart('#health_diarrhea_managementDIV')
health_emergency_careChart = dc.pieChart('#health_emergency_careDIV')
health_skilled_careChart = dc.pieChart('#health_skilled_careDIV')
health_surgeryChart = dc.pieChart('#health_surgeryDIV')
health_diabetes_careChart = dc.pieChart('#health_diabetes_careDIV')
health_price_antibioCT = dc.barChart("#health_price_antibio")
health_price_analgesicsCT = dc.barChart("#health_price_analgesics")
health_price_orsCT = dc.barChart("#health_price_ors")
health_ppl_payChart = dc.pieChart("#health_ppl_pay");
health_disabilitiesChart = dc.pieChart('#health_disabilitiesDIV')
health_diarrheaChart = dc.pieChart('#health_diarrheaDIV')
health_skin_diseaseChart = dc.pieChart('#health_skin_diseaseDIV')
health_leichmaniasisChart = dc.pieChart('#health_leichmaniasisDIV')
health_measlesChart = dc.pieChart('#health_measlesDIV')
health_communicable_diseasesChart = dc.pieChart('#health_communicable_diseasesDIV')
health_chronic_diseasesChart = dc.pieChart('#health_chronic_diseasesDIV')
health_maternal_health_issuesChart = dc.pieChart('#health_maternal_health_issuesDIV')
health_injuriesChart = dc.pieChart('#health_injuriesDIV')
health_respiratory_infectChart = dc.pieChart('#health_respiratory_infectDIV')
health_feverChart = dc.pieChart('#health_feverDIV')
health_polioChart = dc.pieChart('#health_polioDIV')
health_malnutritionChart = dc.pieChart('#health_malnutritionDIV')
health_severe_less_5Chart = dc.pieChart('#health_severe_less_5DIV')
health_psycho_traumaChart = dc.pieChart('#health_psycho_traumaDIV')
health_health_prob_otherChart = dc.pieChart('#health_health_prob_otherDIV')
percent_birth_homeCT = dc.rowChart("#percent_birth_home")
sexual_violenceCT = dc.pieChart("#sexual_violence")
///////////////wash
WASH_water_system_damagedChart = dc.pieChart('#WASH_water_system_damagedDIV')
WASH_water_lack_elecChart = dc.pieChart('#WASH_water_lack_elecDIV')
WASH_water_shortage_chlorineChart = dc.pieChart('#WASH_water_shortage_chlorineDIV')
WASH_water_lack_fuelChart = dc.pieChart('#WASH_water_lack_fuelDIV')
WASH_water_treatment_damagedChart = dc.pieChart('#WASH_water_treatment_damagedDIV')
WASH_water_otherChart = dc.pieChart('#WASH_water_otherDIV')
WASH_water_system_damaged_since_conflictChart = dc.pieChart('#WASH_water_system_damaged_since_conflictDIV')
WASH_water_lack_elec_since_conflictChart = dc.pieChart('#WASH_water_lack_elec_since_conflictDIV')
WASH_water_shortage_chlorine_since_conflictChart = dc.pieChart('#WASH_water_shortage_chlorine_since_conflictDIV')
WASH_water_lack_fuel_since_conflictChart = dc.pieChart('#WASH_water_lack_fuel_since_conflictDIV')
WASH_water_treatment_damaged_since_conflictChart = dc.pieChart('#WASH_water_treatment_damaged_since_conflictDIV')
WASH_water_other_since_conflictChart = dc.pieChart('#WASH_water_other_since_conflictDIV')
price_soapCT = dc.barChart("#price_soap")
price_jerrycanCT = dc.barChart("#price_jerrycan")
price_laundryCT = dc.barChart("#price_laundry")
price_napkinsCT = dc.barChart("#price_napkins")
price_diapersCT = dc.barChart("#price_diapers")
coast_water_networkCT = dc.barChart("#coast_water_network")
coast_bottled_waterCT = dc.barChart("#coast_bottled_water")
coast_public_water_truckCT = dc.barChart("#coast_public_water_truck")
coast_private_water_truckCT = dc.barChart("#coast_private_water_truck")
water_sourceCT = dc.rowChart("#water_source")
water_statusCT = dc.rowChart("#water_status")
access_latrinesCT = dc.pieChart("#access_latrines")
dispose_garbageCT = dc.rowChart("#dispose_garbage")
///////////////////foood
food_obt_barteningChart = dc.pieChart('#food_obt_barteningDIV')
food_obt_purchasedChart = dc.pieChart('#food_obt_purchasedDIV')
food_obt_own_producChart = dc.pieChart('#food_obt_own_producDIV')
food_obt_receivChart = dc.pieChart('#food_obt_receivDIV')
food_obt_relativChart = dc.pieChart('#food_obt_relativDIV')
food_market_pricesChart = dc.rowChart('#food_market_pricesDIV')
food_acc_rzn_lack_marketChart = dc.pieChart('#food_acc_rzn_lack_marketDIV')
food_acc_rzn_lack_ressChart = dc.pieChart('#food_acc_rzn_lack_ressDIV')
food_acc_rzn_type_expenChart = dc.pieChart('#food_acc_rzn_type_expenDIV')
food_acc_rzn_foodNotAvChart = dc.pieChart('#food_acc_rzn_foodNotAvDIV')
food_acc_rzn_local_prodDecrChart = dc.pieChart('#food_acc_rzn_local_prodDecrDIV')
food_acc_rzn_noFuelChart = dc.pieChart('#food_acc_rzn_noFuelDIV')
food_acc_rzn_acc_nofuelChart = dc.pieChart('#food_acc_rzn_acc_nofuelDIV')
food_IDPs_foodChart = dc.rowChart('#food_IDPs_foodDIV')
food_pop_food_preconfChart = dc.rowChart('#food_pop_food_preconfDIV')
//avg
food_avg_riceChart = dc.barChart('#food_avg_riceDIV')
food_avg_goatChart = dc.barChart('#food_avg_goatDIV')
food_avg_chickehChart = dc.barChart('#food_avg_chickehDIV')
food_avg_oilChart = dc.barChart('#food_avg_oilDIV')
food_avg_sugarChart = dc.barChart('#food_avg_sugarDIV')
food_avg_tomatoChart = dc.barChart('#food_avg_tomatoDIV')
food_avg_cucumberChart = dc.barChart('#food_avg_cucumberDIV')
food_avg_bread_privChart = dc.barChart('#food_avg_bread_privDIV')
food_avg_bread_pubChart = dc.barChart('#food_avg_bread_pubDIV')
food_avg_flourChart = dc.barChart('#food_avg_flourDIV')
food_avg_milkChart = dc.barChart('#food_avg_milkDIV')
food_avg_eggChart = dc.barChart('#food_avg_eggDIV')
food_avg_babyChart = dc.barChart('#food_avg_babyDIV')
food_avg_pepsiChart = dc.barChart('#food_avg_pepsiDIV')
food_avgB_riceChart = dc.barChart('#food_avgB_riceDIV')
food_avgB_goatChart = dc.barChart('#food_avgB_goatDIV')
food_avgB_chickehChart = dc.barChart('#food_avgB_chickehDIV')
food_avgB_oilChart = dc.barChart('#food_avgB_oilDIV')
food_avgB_sugarChart = dc.barChart('#food_avgB_sugarDIV')
food_avgB_tomatoChart = dc.barChart('#food_avgB_tomatoDIV')
food_avgB_cucumberChart = dc.barChart('#food_avgB_cucumberDIV')
food_avgB_bread_privChart = dc.barChart('#food_avgB_bread_privDIV')
food_avgB_bread_pubChart = dc.barChart('#food_avgB_bread_pubDIV')
food_avgB_flourChart = dc.barChart('#food_avgB_flourDIV')
food_avgB_milkChart = dc.barChart('#food_avgB_milkDIV')
food_avgB_eggChart = dc.barChart('#food_avgB_eggDIV')
food_avgB_babyChart = dc.barChart('#food_avgB_babyDIV')
food_avgB_pepsiChart = dc.barChart('#food_avgB_pepsiDIV')
//avg
food__bread_sourceChart = dc.rowChart('#food__bread_sourceDIV')
food__day_nobreadprivChart = dc.rowChart('#food__day_nobreadprivDIV')
food__day_nobreadpubChart = dc.rowChart('#food__day_nobreadpubDIV')
food_rnz_flourNAChart = dc.pieChart('#food_rnz_flourNADIV')
food_rnz_flourExpChart = dc.pieChart('#food_rnz_flourExpDIV')
food_rnz_yeastNAChart = dc.pieChart('#food_rnz_yeastNADIV')
food_rnz_yeastExpChart = dc.pieChart('#food_rnz_yeastExpDIV')
food_rnz_wheatNAChart = dc.pieChart('#food_rnz_wheatNADIV')
food_rnz_wheatExpChart = dc.pieChart('#food_rnz_wheatExpDIV')
food_rnz_elecNAChart = dc.pieChart('#food_rnz_elecNADIV')
food_rnz_elecEXPChart = dc.pieChart('#food_rnz_elecEXPDIV')
food_SAMChart = dc.pieChart('#food_SAMDIV')
///////////livelihood
liv_inc_stable_empChart = dc.pieChart('#liv_inc_stable_empDIV')
liv_inc_unstable_empChart = dc.pieChart('#liv_inc_unstable_empDIV')
liv_inc_farm_ownerChart = dc.pieChart('#liv_inc_farm_ownerDIV')
liv_inc_bussChart = dc.pieChart('#liv_inc_bussDIV')
liv_inc_allowChart = dc.pieChart('#liv_inc_allowDIV')
liv_inc_sup_famChart = dc.pieChart('#liv_inc_sup_famDIV')
liv_inc_remitChart = dc.pieChart('#liv_inc_remitDIV')
liv_inc_savChart = dc.pieChart('#liv_inc_savDIV')
liv_inc_aidChart = dc.pieChart('#liv_inc_aidDIV')
liv_inc_cashChart = dc.pieChart('#liv_inc_cashDIV')
liv_inc_otherChart = dc.pieChart('#liv_inc_otherDIV')
liv_currencyChart = dc.pieChart('#liv_currencyDIV')
liv_cop_beggChart = dc.pieChart('#liv_cop_beggDIV')
liv_cop_loanChart = dc.pieChart('#liv_cop_loanDIV')
liv_cop_relativeChart = dc.pieChart('#liv_cop_relativeDIV')
liv_cop_garbageChart = dc.pieChart('#liv_cop_garbageDIV')
liv_cop_HhassetChart = dc.pieChart('#liv_cop_HhassetDIV')
liv_cop_skipmealChart = dc.pieChart('#liv_cop_skipmealDIV')
liv_cop_szemealChart = dc.pieChart('#liv_cop_szemealDIV')
liv_cop_noEatChart = dc.pieChart('#liv_cop_noEatDIV')
liv_cop_otherChart = dc.pieChart('#liv_cop_otherDIV')
/////////education
edu_prim_schoolChart = dc.rowChart('#edu_prim_schoolDIV')
edu_sec_schoolChart = dc.rowChart('#edu_sec_schoolDIV')
edu_univ_schoolChart = dc.rowChart('#edu_univ_schoolDIV')
edu_insti_schoolChart = dc.rowChart('#edu_insti_schoolDIV')
edu_High_schoolChart = dc.rowChart('#edu_High_schoolDIV')
Educ_due_to_destruction_of_facilitiesChart = dc.pieChart('#Educ_due_to_destruction_of_facilitiesDIV')
Educ_due_to_lack_of_teaching_staffChart = dc.pieChart('#Educ_due_to_lack_of_teaching_staffDIV')
Educ_due_to_lack_of_school_suppliesChart = dc.pieChart('#Educ_due_to_lack_of_school_suppliesDIV')
Educ_facilities_used_for_alternative_purposesChart = dc.pieChart('#Educ_facilities_used_for_alternative_purposesDIV')
Educ_Distance_to_services_is_too_farChart = dc.pieChart('#Educ_Distance_to_services_is_too_farDIV')
Educ_Route_to_services_is_unsafeChart = dc.pieChart('#Educ_Route_to_services_is_unsafeDIV')
Educ_Services_have_no_spaces_availableChart = dc.pieChart('#Educ_Services_have_no_spaces_availableDIV')
Educ_Parents_do_not_approve_of_curriculumChart = dc.pieChart('#Educ_Parents_do_not_approve_of_curriculumDIV')
Educ_otherChart = dc.pieChart('#Educ_otherDIV')
/////////////////NEW GRAPHS
Disp_host_confescaChart = dc.pieChart('#Disp_host_confescaDIV')
Disp_host_conf_moneyChart = dc.pieChart('#Disp_host_conf_moneyDIV')
Disp_host_conf_incomeChart = dc.pieChart('#Disp_host_conf_incomeDIV')
Disp_host_conf_assetsChart = dc.pieChart('#Disp_host_conf_assetsDIV')
Disp_host_conf_borderChart = dc.pieChart('#Disp_host_conf_borderDIV')
Disp_host_conf_serviceChart = dc.pieChart('#Disp_host_conf_serviceDIV')
Disp_host_conf_arrestChart = dc.pieChart('#Disp_host_conf_arrestDIV')
Disp_host_conf_otherChart = dc.pieChart('#Disp_host_conf_otherDIV')
Disp_min_cost_borderChart = dc.barChart('#Disp_min_cost_borderDIV')
Disp_max_cost_borderChart = dc.barChart('#Disp_max_cost_borderDIV')
d3.csv("SIMAWG_dashboard.csv", function(error, experiments) {
experiments.forEach(function(x) {
x.CONFID_Displacement = +x.CONFID_Displacement;
x.CONFID_Education = +x.CONFID_Education;
x.CONFID_Food_Security = +x.CONFID_Food_Security;
x.CONFID_Health = +x.CONFID_Health;
x.CONFID_Livelihoods = +x.CONFID_Livelihoods;
x.CONFID_NFI = +x.CONFID_NFI;
x.CONFID_Shelter = +x.CONFID_Shelter;
x.CONFID_WASH = +x.CONFID_WASH;
x.perc_gov = +x.perc_gov;
});
////////////colorfunction
var color_educ = d3.scale.ordinal()
.domain(["Functioning / Providing lessons","No information","Not available","Not functioning"])
.range(["#9B9DA1","#D3CAB7","#E64143","#F2A0A1"]);
var colorall = d3.scale.ordinal()
.domain(["foo", "bar", "baz"])
.range(["#9B9DA1","#E64143","#F2A0A1","#D3CAB7","#A7A9AC","#E3E4E5","#E7E2D6","#A5C89F",
"#0067AC","#4FB3CF","#95A0A9","#FFAE33","#667A95","#F89E59","#FFF56D"]);
var colorone = d3.scale.ordinal()
.domain(["foo", "bar", "baz"])
.range(["#A7A9AC"]);
var hostcolor = d3.scale.ordinal()
.domain(["1-25%","26-50%","51-75%","76-100%","No IPDs","No information"])
.range(["#dadbdc","#babcbe","#979a9d","#808386","#E3E4E5","#D3CAB7"]);
var col_ori = d3.scale.ordinal()
.domain(["Not applicable","No IDPs","foo", "bar", "baz"])
.range(["#E3E4E5","#E3E4E5","#95A0A9","#95A0A9","#95A0A9","#95A0A9","#95A0A9","#95A0A9","#95A0A9","#95A0A9","#95A0A9","#95A0A9"]);
var colelec = d3.scale.ordinal()
.domain(["Generator","Main network","No electricity source at all","No information"])
.range(["#A7A9AC","#D3CAB7","#E64143","#E3E4E5"]);
var dummies = d3.scale.ordinal()
.domain(["Yes","No","No IDPs","No information","No lack of fuel","No reduction", "There were no challenges", "Bread every day","All facilities functioning","All access education"])
.range(["#E64143","#BDB9B0","#E3E4E5","#D3CAB7","#FFAE33","#FFAE33","#FFAE33","#FFAE33","#FFAE33","#FFAE33","#FFAE33","#FFAE33","#FFAE33","#FFAE33"]);
var colorshel = d3.scale.ordinal()
.domain(["Apartment house shared","Cave natural shelter","Collective public space not for shelter",
"Independent apartment or house","No IDPs","Private space not for shelter",
"Tent","Unfinished apartment or house","No information"])
.range(["#E3E4E5","#E64143","#fadada",
"#c5b9a0","#E7E2D6","#E7E2D6",
"#F2A0A1","#D3CAB7","#E64143"]);
var colorsheldam = d3.scale.ordinal()
.domain(["Apartment house shared","Cave natural shelter","Collective public space not for shelter",
"Independent apartment or house","No IDPs","Private space not for shelter",
"Tent","Unfinished apartment or house","There are no damaged shelters"])
.range(["#E3E4E5","#E64143","#fadada",
"#c5b9a0","#D3CAB7","#E7E2D6",
"#F2A0A1","#D3CAB7","#A5C89F"]);
var colorhealth = d3.scale.ordinal()
.domain(["Fully functioning","Partially functioning","Not functioning","Not available","No information"])
.range(["#A7A9AC","#E3E4E5","#F2A0A1",
"#E64143","#D3CAB7"]);
var price = d3.scale.ordinal()
.domain(["foo", "bar", "baz"])
.range(["#A7A9AC","#A7A9AC","#A7A9AC"]);
var colmathealth = d3.scale.ordinal()
.domain(["1-25%","26-50%","51-75%","76-100%","No births during previous month","No information"])
.range(["#A7A9AC","#E3E4E5","#F2A0A1",
"#E64143","#E3E4E5","#D3CAB7"]);
var colbread = d3.scale.ordinal()
.domain(["0","1 to 10","11 to 20","21 and more","There no public bakeries in village","There no private bakeries in village","No information"])
.range(["#A7A9AC","#E7E2D6","#E3E4E5","#F2A0A1",
"#E64143","#E64143","#D3CAB7"]);
var orderingshel = function(d) {
if(d.key == "Fully functioning") return 1;
else if(d.key == "Partially functioning") return 2;
else if(d.key == "Not functioning") return 3;
else if(d.key == "Not sure") return 5;
else if(d.key == "Not available") return 4;
};
var donutin = 20;
var donutwidth = 175;
var donutheight = 80;
var xlegendrow = "% of villages";
var Wbigpie =300;
var Hbigpie = 150;
var inbipie =40;
var ndx = crossfilter(experiments),
all = ndx.groupAll();
////////////confidence
var CONFID_DisplacementDim = ndx.dimension(function(d) {return +d.ID;})
CONFID_DisplacementGP = ndx.groupAll().reduce(
function (p, v) {
++p.nCONFID_Displacement;
p.totCONFID_Displacement += v.CONFID_Displacement;
return p;
},
function (p, v) {
--p.nCONFID_Displacement;
p.totCONFID_Displacement -= v.CONFID_Displacement;
return p;
},
function () { return {nCONFID_Displacement:0,totCONFID_Displacement:0}; }
);
var averageCONFID_Displacement = function(d) {
return d.nCONFID_Displacement ? d.totCONFID_Displacement / d.nCONFID_Displacement : 0;
};
var expCountCONFID_Displacement = function(d) {
return d.nCONFID_Displacement;
};
var CONFID_EducationDim = ndx.dimension(function(d) {return +d.ID;})
CONFID_EducationGP = ndx.groupAll().reduce(
function (p, v) {
++p.nCONFID_Education;
p.totCONFID_Education += v.CONFID_Education;
return p;
},
function (p, v) {
--p.nCONFID_Education;
p.totCONFID_Education -= v.CONFID_Education;
return p;
},
function () { return {nCONFID_Education:0,totCONFID_Education:0}; }
);
var averageCONFID_Education = function(d) {
return d.nCONFID_Education ? d.totCONFID_Education / d.nCONFID_Education : 0;
};
var expCountCONFID_Education = function(d) {
return d.nCONFID_Education;
};
var CONFID_Food_SecurityDim = ndx.dimension(function(d) {return +d.ID;})
CONFID_Food_SecurityGP = ndx.groupAll().reduce(
function (p, v) {
++p.nCONFID_Food_Security;
p.totCONFID_Food_Security += v.CONFID_Food_Security;
return p;
},
function (p, v) {
--p.nCONFID_Food_Security;
p.totCONFID_Food_Security -= v.CONFID_Food_Security;
return p;
},
function () { return {nCONFID_Food_Security:0,totCONFID_Food_Security:0}; }
);
var averageCONFID_Food_Security = function(d) {
return d.nCONFID_Food_Security ? d.totCONFID_Food_Security / d.nCONFID_Food_Security : 0;
};
var expCountCONFID_Food_Security = function(d) {
return d.nCONFID_Food_Security;
};
var CONFID_HealthDim = ndx.dimension(function(d) {return +d.ID;})
CONFID_HealthGP = ndx.groupAll().reduce(
function (p, v) {
++p.nCONFID_Health;
p.totCONFID_Health += v.CONFID_Health;
return p;
},
function (p, v) {
--p.nCONFID_Health;
p.totCONFID_Health -= v.CONFID_Health;
return p;