-
Notifications
You must be signed in to change notification settings - Fork 0
/
index2.html
2115 lines (764 loc) · 49.5 KB
/
index2.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>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Humanitarian OpenStreetMap Team | Disaster Response</title>
<meta name="description" content="">
<link type="application/atom+xml" rel="alternate" href="https://www.hotosm.org/feed.xml" title="Humanitarian OpenStreetMap Team" />
<link rel="stylesheet" href="css/main.css">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#d73f3f">
<meta name="msapplication-TileColor" content="#d73f3f">
<meta name="theme-color" content="#ffffff">
</head>
<body>
<div class="page-body">
<div class="nav-mobile">
<div class="nav-mobile-header">
<div class="nav-mobile-logo">
<a href="/"><img src="/images/hot-logo.svg"></a>
</div>
<a id="nav-anchor"></a>
</div>
</div>
<div class="nav-wrapper">
<div class="nav-sticky">
<div id="nav-container">
<div class="nav-main-container">
<a class="nav-logo" href="/">
<img class="nav-logo-icon" src="/images/hot-logo-icon-nav.svg">
<img class="nav-logo-text" src="/images/hot-logo-text.svg">
</a>
<nav class="nav-main">
<div class="hr-v first"></div>
<div class="nav-group">
<a href="/what-we-do" class="">What we do</a>
<a href="/our-work" class="active">Our work</a>
<a href="/tools-and-data" class="">Tools & Data</a>
<a href="/updates" class="">News</a>
</div>
<div class="hr-v"></div>
<div class="nav-group">
<a href="/community" class="">Community & Organization</a>
<a href="/partners" class="">Partner with us</a>
<a href="/get-involved" class="">Get involved</a>
</div>
<div class="hr-v"></div>
<a class="search-link" href="#">Search</a>
</nav>
</div>
<div class="nav-secondary">
<a href="/donate" class="nav-item-donate">Donate</a>
<ul class="social-links">
<li><a href="https://twitter.com/hotosm"><svg xmlns="http://www.w3.org/2000/svg" width="15" height="14" viewBox="0 0 15 14">
<path fill="#D73F3F" d="M12.25,14 L1.75,14 C0.784,14 0,13.216 0,12.25 L0,1.75 C0,0.784 0.784,0 1.75,0 L12.25,0 C13.216,0 14,0.784 14,1.75 L14,12.25 C14,13.216 13.216,14 12.25,14 Z M5.376,10.556 C8.6765,10.556 10.4825,7.819 10.4825,5.4495 C10.4825,5.3725 10.4825,5.2955 10.479,5.2185 C10.829,4.9665 11.1335,4.648 11.375,4.2875 C11.053,4.431 10.7065,4.5255 10.3425,4.571 C10.7135,4.3505 10.997,3.997 11.1335,3.577 C10.787,3.7835 10.402,3.9305 9.9925,4.011 C9.6635,3.661 9.198,3.444 8.6835,3.444 C7.693,3.444 6.888,4.249 6.888,5.2395 C6.888,5.3795 6.9055,5.516 6.9335,5.649 C5.4425,5.5755 4.1195,4.858 3.234,3.773 C3.08,4.039 2.9925,4.347 2.9925,4.676 C2.9925,5.299 3.311,5.8485 3.7905,6.1705 C3.4965,6.16 3.22,6.0795 2.9785,5.9465 C2.9785,5.9535 2.9785,5.9605 2.9785,5.971 C2.9785,6.839 3.598,7.567 4.417,7.7315 C4.2665,7.7735 4.109,7.7945 3.9445,7.7945 C3.829,7.7945 3.717,7.784 3.6085,7.763 C3.836,8.477 4.501,8.995 5.285,9.009 C4.669,9.492 3.8955,9.779 3.0555,9.779 C2.912,9.779 2.7685,9.772 2.6285,9.7545 C3.4195,10.2585 4.3645,10.556 5.376,10.556 Z" transform="translate(.144)"/>
</svg><span>Twitter</span></a></li>
<li><a href="https://www.facebook.com/hotosm"><svg xmlns="http://www.w3.org/2000/svg" width="15" height="14" viewBox="0 0 15 14">
<path fill="#D73F3F" fill-rule="evenodd" d="M37.3712841,0 L24.9166634,0 C24.4898888,0 24.144,0.345888833 24.144,0.772663407 L24.144,13.2272841 C24.144,13.6540063 24.4898888,14 24.9166634,14 L31.6218396,14 L31.6218396,8.5784522 L29.7973468,8.5784522 L29.7973468,6.46556136 L31.6218396,6.46556136 L31.6218396,4.90738305 C31.6218396,3.09915135 32.726229,2.11451694 34.3393278,2.11451694 C35.1120436,2.11451694 35.776125,2.17200772 35.9696318,2.19771071 L35.9696318,4.08745761 L34.8508697,4.08798217 C33.9736109,4.08798217 33.8037089,4.50484273 33.8037089,5.11657393 L33.8037089,6.46556136 L35.8959849,6.46556136 L35.6235856,8.5784522 L33.8037089,8.5784522 L33.8037089,14 L37.3712841,14 C37.7980063,14 38.1439475,13.6540063 38.1439475,13.2272841 L38.1439475,0.772663407 C38.1439475,0.345888833 37.7980063,0 37.3712841,0" transform="translate(-24)"/>
</svg><span>Facebook</span></a></li>
<li><a href="https://www.youtube.com/user/hotosm"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="14" viewBox="0 0 20 14">
<path fill="#D73F3F" fill-rule="evenodd" d="M7.84,9.874928 L12.992,6.944112 L7.84,4.013072 L7.84,9.874928 Z M19.300064,2.168656 C19.712,3.715824 19.712,6.944 19.712,6.944 C19.712,6.944 19.712,10.172064 19.300064,11.719456 C19.073376,12.573008 18.40552,13.245232 17.557344,13.473488 C16.020144,13.888 9.856,13.888 9.856,13.888 C9.856,13.888 3.691856,13.888 2.154656,13.473488 C1.306592,13.245232 0.638624,12.573008 0.411936,11.719456 C0,10.172064 0,6.944 0,6.944 C0,6.944 0,3.715824 0.411936,2.168656 C0.638624,1.314992 1.306592,0.642768 2.154656,0.414624 C3.691856,0 9.856,0 9.856,0 C9.856,0 16.020144,0 17.557344,0.414624 C18.40552,0.642768 19.073376,1.314992 19.300064,2.168656 Z" transform="translate(.144)"/>
</svg><span>YouTube</span></a></li>
<li><a href="https://www.instagram.com/hot.osm/"><svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 14 14">
<g fill="#D73F3F" fill-rule="evenodd">
<path d="M7.01561782,0.0277255446 C5.11890891,0.0277255446 4.88104752,0.0357651485 4.13616436,0.0697532673 C3.39277822,0.103658218 2.88511881,0.221729505 2.44086139,0.394386931 C1.98163366,0.572838416 1.59212871,0.811642376 1.20387129,1.1998998 C0.815586139,1.58818495 0.576809901,1.97766218 0.398330693,2.4368899 C0.225673267,2.88114733 0.107629703,3.38880673 0.0736970297,4.13219287 C0.0397089109,4.87710376 0.0316970297,5.1149097 0.0316970297,7.01164634 C0.0316970297,8.90838297 0.0397089109,9.14621663 0.0736970297,9.89112752 C0.107629703,10.6344859 0.225673267,11.1421731 0.398330693,11.5864028 C0.576809901,12.0456305 0.815586139,12.4351354 1.20387129,12.8233929 C1.59212871,13.211678 1.98163366,13.4504543 2.44086139,13.6289612 C2.88511881,13.8015909 3.39277822,13.9196622 4.13616436,13.9535949 C4.88104752,13.9875552 5.11890891,13.9955949 7.01561782,13.9955949 C8.91235446,13.9955949 9.1501604,13.9875552 9.89507129,13.9535949 C10.6384574,13.9196622 11.1461168,13.8015909 11.5903743,13.6289612 C12.0496297,13.4504543 12.4391069,13.211678 12.8273644,12.8233929 C13.2156495,12.4351354 13.4544257,12.0456582 13.632905,11.5864028 C13.8055624,11.1421731 13.9236337,10.6344859 13.9575386,9.89112752 C13.9915267,9.14621663 13.9995663,8.90838297 13.9995663,7.01164634 C13.9995663,5.11493743 13.9915267,4.87710376 13.9575386,4.13219287 C13.9236337,3.38880673 13.8055624,2.88114733 13.632905,2.4368899 C13.4544257,1.97766218 13.2156495,1.58818495 12.8273644,1.1998998 C12.4391069,0.811642376 12.0496297,0.572838416 11.5903743,0.394386931 C11.1461168,0.221729505 10.6384574,0.103658218 9.89507129,0.0697532673 C9.1501604,0.0357651485 8.91235446,0.0277255446 7.01561782,0.0277255446 M7.01561782,1.2860899 C8.88041782,1.2860899 9.10128515,1.29318693 9.83771287,1.32678693 C10.5186396,1.35786416 10.8884337,1.47163842 11.1345287,1.56728198 C11.4605208,1.69397505 11.693198,1.84531366 11.9375743,2.0896899 C12.1819505,2.33409386 12.3332891,2.56674337 12.4600099,2.89273545 C12.5556257,3.1388305 12.6694,3.50862455 12.7004772,4.18955129 C12.7340495,4.92597901 12.7411743,5.14687406 12.7411743,7.01164634 C12.7411743,8.87644634 12.7340495,9.09734139 12.7004772,9.83374139 C12.6694,10.5146958 12.5556257,10.8844899 12.4600099,11.130585 C12.3332891,11.4565493 12.1819505,11.6892265 11.9375743,11.9336028 C11.693198,12.1780067 11.4605208,12.3293453 11.1345287,12.4560384 C10.8884337,12.5516543 10.5186396,12.6654562 9.83771287,12.6965057 C9.10139604,12.7301057 8.88055644,12.7372305 7.01561782,12.7372305 C5.15067921,12.7372305 4.9298396,12.7301057 4.19352277,12.6965057 C3.51259604,12.6654562 3.14277426,12.5516543 2.89667921,12.4560384 C2.57071485,12.3293453 2.33803762,12.1780067 2.09366139,11.9336028 C1.84928515,11.6892265 1.69791881,11.4565493 1.57122574,11.130585 C1.4756099,10.8844899 1.36183564,10.5146958 1.33075842,9.83376911 C1.29715842,9.09734139 1.29006139,8.87644634 1.29006139,7.01164634 C1.29006139,5.14687406 1.29715842,4.92597901 1.33075842,4.18955129 C1.36183564,3.50862455 1.4756099,3.1388305 1.57122574,2.89273545 C1.69791881,2.56674337 1.84928515,2.33409386 2.09366139,2.08971762 C2.33803762,1.84531366 2.57071485,1.69397505 2.89667921,1.56728198 C3.14277426,1.47163842 3.51259604,1.35786416 4.19349505,1.32678693 C4.9299505,1.29318693 5.15081782,1.2860899 7.01561782,1.2860899"/>
<path d="M7.01561782 9.33963842C5.72991881 9.33963842 4.68762574 8.29734535 4.68762574 7.01164634 4.68762574 5.72594733 5.72991881 4.68368198 7.01561782 4.68368198 8.30131683 4.68368198 9.3436099 5.72594733 9.3436099 7.01164634 9.3436099 8.29734535 8.30131683 9.33963842 7.01561782 9.33963842M7.01561782 3.42531762C5.03493663 3.42531762 3.42926139 5.03096515 3.42926139 7.01164634 3.42926139 8.99235525 5.03493663 10.5980028 7.01561782 10.5980028 8.99629901 10.5980028 10.6019465 8.99235525 10.6019465 7.01164634 10.6019465 5.03096515 8.99629901 3.42531762 7.01561782 3.42531762M11.5817275 3.28362099C11.5817275 3.7464804 11.2065275 4.1216804 10.7436681 4.1216804 10.2808087 4.1216804 9.90558099 3.7464804 9.90558099 3.28362099 9.90558099 2.82076158 10.2808087 2.44556158 10.7436681 2.44556158 11.2065275 2.44556158 11.5817275 2.82076158 11.5817275 3.28362099"/>
</g>
</svg><span>Instagram</span></a></li>
<li>
<a href="https://www.github.com/hotosm">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
<path fill="#D73F3F" d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0 0 16 8c0-4.42-3.58-8-8-8z"/>
</svg>
<span>GitHub</span>
</a>
</li>
</ul>
<h6 class="tagline">Mapping our world together</h6>
</div>
</div>
</div>
</div>
<div class="nav-mobile-links-wrapper sticky">
<div class="nav-mobile-links">
<div class="nav-group">
<a href="/what-we-do">What we do</a>
<span class="hr-v"></span>
<a href="/our-work">Our work</a>
<span class="hr-v"></span>
<a href="/get-involved">Get Involved</a>
<span class="hr-v"></span>
<a href="/donate" class="donate">Donate</a>
</div>
</div>
</div>
<div id="search-overlay">
<div class="close-overlay search-close">
</div>
<div class="search-contents">
<div class="search-wrap">
<div class="search-head">
<input type="text" id="search-input" placeholder="Search…">
<div class="search-close close-button">Close</div>
</div>
<ul id="results-container">
<div class="results-placeholder">
Search for HOT projects, news, people and jobs.
</div>
</ul>
</div>
</div>
</div>
<div class="page-content">
<div class="project-index">
<div class="impact-map-area">
<div id="map">
<div id="loading-map">
<center><p class="loader w40 h40 mb20 red-border"></p></center>
<span>Loading map...</span>
</div>
<center>
<div id="hover-country" class="center-hover-map-area"></div>
</center>
<div class="our-work-map-legend">
<div class="legend-item projects">
<p>Projects</p>
</div>
</div>
</div>
<div class="project-index-header" id="impact-areas-select">
<div class="container">
<h1 class="boxed" id="our-work-title">Disaster Response</h1>
</div>
</div>
</div>
<div class="container impact-desc-container">
<div class="impact-area-desc">
<span><p>Location is critical to disaster response: first responders need fast, reliable information to reach affected areas post-disaster and prioritize aid. Through rapid response activations, the HOT community works together online using satellite and drone imagery to rapidly generate map data in OpenStreetMap. The resulting data is made available via the Humanitarian Data Exchange (HDX) and can be used to create printed maps, for analysis, or for navigation on the ground.</p>
<div class="hr"></div></span>
</div>
</div>
<div id="impact-projects" class="container">
<h6>Highlighted Projects</h6>
<div class="project-index-highlights">
<a class="module link-through project-module" href="/projects/4th-quarter-2020-disaster-response/">
<div class="module-details">
<div class="module-text project-header-meta">
<h3>4th Quarter 2020 Disaster Response</h3>
<p class="project-involvement">
HOT Program
</p>
<p class="project-countries">
<span class="project-country">Global</span>
</p>
<p class="project-status">
COMPLETED
</p>
</div>
<p class="module-cta"><span>Learn more</span></p>
</div>
<div class="module-image">
<img src="https://cdn.hotosm.org/website/Q4Disasters2020.PNG">
</div>
</a>
<a class="module link-through project-module" href="/projects/the-disaster-services-teams-2020-lessons-learned/">
<div class="module-details">
<div class="module-text project-header-meta">
<h3>The Disaster Services Team's 2020 Lessons Learned</h3>
<p class="project-involvement">
HOT Program
</p>
<p class="project-countries">
<span class="project-country">Global</span>
</p>
<p class="project-status">
COMPLETED
</p>
</div>
<p class="module-cta"><span>Learn more</span></p>
</div>
<div class="module-image">
<img src="https://cdn.hotosm.org/website/world.png">
</div>
</a>
<a class="module link-through project-module" href="/projects/hot-covid-19-response/">
<div class="module-details">
<div class="module-text project-header-meta">
<h3>HOT COVID-19 RESPONSE</h3>
<p class="project-involvement">
HOT Program
</p>
<p class="project-countries">
<span class="project-country">Global</span>
</p>
<p class="project-status">
ACTIVE
</p>
</div>
<p class="module-cta"><span>Learn more</span></p>
</div>
<div class="module-image">
<img src="https://cdn.hotosm.org/website/mapeo+equidad+de+genero-14-f6dc86.jpg">
</div>
</a>
<div class="hr-h"></div>
</div>
<h6>More Disaster Response Projects</h6>
<div class="project-index-all">
<a class="module link-through project-module" href="/projects/osm-south-sudan-building-an-inclusive-mapping-community/">
<div class="module-details">
<div class="module-text project-header-meta">
<h3>OSM South Sudan: Building an inclusive mapping community</h3>
<p class="project-involvement">
Community-Led
</p>
<p class="project-countries">
<span class="project-country">South Sudan</span>
</p>
<p class="project-status">
ACTIVE
</p>
</div>
</div>
<div class="module-image">
<img src="https://cdn.hotosm.org/website/Flooding+in+Nadapal,+Kapoeta+State,+Eastern+Equatorial-05e5b0.jpg">
</div>
</a>
<a class="module link-through project-module" href="/projects/osm-sierra-leone-strengthening-and-expanding-their-community-of-mappers/">
<div class="module-details">
<div class="module-text project-header-meta">
<h3>OSM Sierra Leone: Strengthening and expanding their community of mappers</h3>
<p class="project-involvement">
Community-Led
</p>
<p class="project-countries">
<span class="project-country">Sierra Leone</span>
</p>
<p class="project-status">
ACTIVE
</p>
</div>
</div>
<div class="module-image">
<img src="https://cdn.hotosm.org/website/Screenshot+2019-11-14+at+22.56.53+small.png">
</div>
</a>
<a class="module link-through project-module" href="/projects/practical-action-in-bolivia-mapping-to-support-ongoing-response-to-the-bolivian-wildfires/">
<div class="module-details">
<div class="module-text project-header-meta">
<h3>Practical Action in Bolivia: Mapping to support ongoing response to the Bolivian wildfires</h3>
<p class="project-involvement">
Community-Led
</p>
<p class="project-countries">
<span class="project-country">Bolivia</span>
</p>
<p class="project-status">
ACTIVE
</p>
</div>
</div>
<div class="module-image">
<img src="https://cdn.hotosm.org/website/SIV_05.jpg">
</div>
</a>
<a class="module link-through project-module" href="/projects/CycloneIdai">
<div class="module-details">
<div class="module-text project-header-meta">
<h3>Disaster Response: Cyclone Idai</h3>
<p class="project-involvement">
HOT Program
</p>
<p class="project-countries">
<span class="project-country">Mozambique and 2 other countries</span>
</p>
<p class="project-status">
COMPLETED
</p>
</div>
</div>
<div class="module-image">
<img style="object-position: top center" src="https://cdn.hotosm.org/website/CycloneIdai.PNG">
</div>
</a>
<a class="module link-through project-module" href="/projects/2ndhalf2018-disaster-response/">
<div class="module-details">
<div class="module-text project-header-meta">
<h3>Disaster Response: Typhoons, Tsunami, Ebola, Friaje and More</h3>
<p class="project-involvement">
HOT Program
</p>
<p class="project-countries">
<span class="project-country">Indonesia and 8 other countries</span>
</p>
<p class="project-status">
COMPLETED
</p>
</div>
</div>
<div class="module-image">
<img src="https://cdn.hotosm.org/website/Disaster_response,_Indonesia_small.jpg">
</div>
</a>
<a class="module link-through project-module" href="/projects/cuerpo-consultivo-para-el-desarrollo-de-rio-piedras-disaster-preparedness-for-puerto-rico/">
<div class="module-details">
<div class="module-text project-header-meta">
<h3>Cuerpo Consultivo para el Desarrollo de Rio Piedras - Disaster Preparedness for Puerto Rico</h3>
<p class="project-involvement">
Community-Led
</p>
<p class="project-countries">
<span class="project-country">Puerto Rico</span>
</p>
<p class="project-status">
ACTIVE
</p>
</div>
</div>
<div class="module-image">
<img src="https://cdn.hotosm.org/website/CCDRP4.jpg">
</div>
</a>
<a class="module link-through project-module" href="/projects/spring-2018-disaster-support">
<div class="module-details">
<div class="module-text project-header-meta">
<h3>Disaster Activation: Cyclones, Flooding, Volcanic Eruption, Ebola outbreak 2018</h3>
<p class="project-involvement">
Community-Led
</p>
<p class="project-countries">
<span class="project-country">Somalia and 6 other countries</span>
</p>
<p class="project-status">
COMPLETED
</p>
</div>
</div>
<div class="module-image">
<img src="https://cdn.hotosm.org/website/spring-2018-disaster-support.png">
</div>
</a>
<a class="module link-through project-module" href="/projects/uav-imagery-for-disaster-response-pacific-drone-imagery-dashboard-pacdid">
<div class="module-details">
<div class="module-text project-header-meta">
<h3>UAV Imagery for Disaster Response: Pacific Drone Imagery Dashboard (PacDID)</h3>
<p class="project-involvement">
HOT Program
</p>
<p class="project-countries">
<span class="project-country">Fiji</span>
<span class="project-country">Tonga</span>
</p>
<p class="project-status">
COMPLETED
</p>
</div>
</div>
<div class="module-image">
<img src="https://cdn.hotosm.org/website/Picture1.png">