-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1237 lines (1125 loc) · 53.9 KB
/
index.html
File metadata and controls
1237 lines (1125 loc) · 53.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>Hemal Dey's CV</title>
<!-- Bootstrap Core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Theme CSS -->
<!--<link href="css/freelancer.min.css" rel="stylesheet">-->
<link href="css/freelancer.css" rel="stylesheet">
<!-- Custom Fonts -->
<link href="vendor/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic" rel="stylesheet" type="text/css">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
<!--leaflet CSS-->
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.5.1/dist/leaflet.css"
integrity="sha512-xwE/Az9zrjBIphAcBb3F6JVqxf46+CDLwfLMHloNu6KEQCAWi6HcDUbeOfBIptF7tcCzusKFjFw2yuvEpDL9wQ=="
crossorigin=""/>
<!-- Leaflet js library-->
<script src="https://unpkg.com/leaflet@1.5.1/dist/leaflet.js"
integrity="sha512-GffPMF3RvMeYyc1LWMHtK8EbPv0iNZ8/oTtHPx9/cc2ILxQ+u905qIwdpULaqDkyBKgOaB57QTMg7ztg8Jm2Og=="
crossorigin=""></script>
</head>
<body id="page-top" class="index">
<!-- Navigation -->
<nav id="mainNav" class="navbar navbar-default navbar-fixed-top navbar-custom">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header page-scroll">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span> Menu <i class="fa fa-bars"></i>
</button>
<a class="navbar-brand" href="#page-top">HEMAL DEY</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li class="hidden">
<a href="#page-top"></a>
</li>
<li class="page-scroll">
<a href="#about">Bio</a>
</li>
<li class="page-scroll">
<a href="#education">Education</a>
</li>
<li class="page-scroll">
<a href="#employment">Employment</a>
</li>
<li class="page-scroll">
<a href="#research">Research</a>
</li>
<li class="page-scroll">
<a href="#teaching">Teaching</a>
</li>
<!--<li class="page-scroll">-->
<!--<a href="#portfolio">Portfolio</a>-->
<!--</li>-->
<li class="page-scroll">
<a href="#opportunities">Opportunities</a>
</li>
<!--<li class="page-scroll">-->
<!--<a href="#portfolio">Portfolio</a>-->
<!--</li>-->
<li class="page-scroll">
<a href="#Gallery">Gallery</a>
</li>
<li class="page-scroll">
<a href="#contact">Contact</a>
</li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container-fluid -->
</nav>
<!-- Header -->
<header>
<div class="container">
<div class="row">
<div class="col-lg-12">
<img class="img-responsive" src="img/HeadShot_HD.jpg" alt="">
<div class="intro-text">
<span class="name">Hemal Dey, Ph.D.</span>
<hr class="star-light">
<span class="skills"> Postdoctoral Fellow - Geospatial Analyst - Researcher</span>
</div>
</div>
</div>
</div>
</header>
<!-- About Section -->
<section class="success" id="about">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2>Biography</h2>
<hr class="star-light">
</div>
</div>
<div class="row">
<div class="col-lg-10 col-lg-offset-1">
<p class="text-justify">
Hemal Dey is a Postdoctoral Fellow in the <a rel="nofollow" target="_blank" href="https://wshao.people.ua.edu/"> <em>Risk Decision Making Lab</em></a> at <a rel="nofollow" target="_blank" href="https://www.ua.edu/"> <em>The University of Alabama</em></a>. (UA),
where he recently earned his Ph.D. in the Department of Geography and the Environment. His research broadly lies at the intersection of environmental geography and geospatial science, investigating how hydrometeorological hazards affect vulnerable coastal communities.
It investigates three key questions: Who is at risk? Why are they at risk? And how can we mitigate that risk? He address these questions through risk modeling that analyzes historical hazard damage data and the interactions among hazard, exposure, and vulnerability. To do so,
he integrate advanced methodologies from Geospatial Artificial Intelligence (GeoAI) with widely used tools including Geographic Information Systems (GIS) and Remote Sensing.
His work also explores land use/land cover change, land surface temperature variation, and spatio-temporal social vulnerability. Hemal has received several honors, including
the Outstanding Graduate Research Award (Ph.D. category), the Dr. Bobby Wilson Award (2024), the Graduate Council Fellowship (2021), and the National Science and Technology (NST) Fellowship from the Government of Bangladesh (2021). In addition to
research, he has experience as a teaching assistant and guest lecturer.
Outside of the academia, Hemal enjoys wildlife photography, traveling, music, sports, and gardening.
</p>
</div>
</div>
</div>
</section>
<!-- Education Section -->
<section class="success" id="education">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2>Education</h2>
<hr class="star-light">
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
<p>2021-2025</p>
</div>
<div class="col-lg-10">
<p>Ph.D. in Geography and the Environment (Concentration: Flood risk assessment)</p>
<p>Department of Geography and the Environment, <em>The Univesity of Alabama</em>, USA</p>
<p>Dissertation Title: <i>Towards a More Comprehensive Flood Risk Assessment Using Machine Learning Models: Four Case Studies Along the U.S. Gulf Coast.</i></p>
<p>Advisors: Dr. <a href="https://geography.ua.edu/people/wanyun-shao/">Wanyun Shao</a> </p>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
<p>2018</p>
</div>
<div class="col-lg-10">
<p>M.Sc. in Geography and Environment (Concentration: GIS and Remote Sensing)</p>
<p>Department of Geography and Environment & GIS,<em> Jagannath University</em>, Bangladesh</p>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
<p>2017</p>
</div>
<div class="col-lg-9">
<p>B.Sc. in Geography and Environment </p>
<p>Department of Geography and Environment, <em>Jagannath University</em>, Bangladesh</p>
</div>
</div>
</div>
</section>
<!-- Employment Section -->
<section class="success" id="employment">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2>Employment</h2>
<hr class="star-light">
</div>
</div>
<div class="row">
<div class="col-lg-2 col-lg-offset-1">
<p>May 2025 - present</p>
</div>
<div class="col-lg-9">
<p> <b>Postdoctoral Fellow</b>, Risk Decision Making Lab </p>
<p>Department of Geography and the Environment, The University of Alabama, USA</p>
<p>Research project: <i>To Serve the Underserved: Identifying and Reaching Vulnerable Communities in Experimental FIM Areas</i> </p>
<p> Funded by National Oceanic and Atmospheric Administration (NOAA) under Cooperative Institute for Research to Operations in Hydrology (CIROH)</p>
</div>
</div>
<div class="row">
<div class="col-lg-2 col-lg-offset-1">
<p>Jan 2024 - May 2025</p>
</div>
<div class="col-lg-9">
<p> <b>Graduate Research Assistant</b>, Risk Decision Making Lab </p>
<p>Department of Geography and the Environment, The University of Alabama, USA</p>
<p>Research project: <i>Exploring Decision-Makers’ and Public Risk Perception and Information Seeking Behaviors Related to Water Quantity in the Southeastern U.S.</i> </p>
<p> Funded by National Oceanic and Atmospheric Administration (NOAA) under Cooperative Institute for Research to Operations in Hydrology (CIROH) project #NA22NWS4320003</p>
</div>
</div>
<div class="row">
<div class="col-lg-2 col-lg-offset-1">
<p> Aug 2023 - Dec 2023</p>
</div>
<div class="col-lg-9">
<p><b>Graduate Teaching Assistant</b></p>
<p>Department of Geography and the Environment, University of Alabama, USA</p>
</div>
</div>
<div class="row">
<div class="col-lg-2 col-lg-offset-1">
<p>Aug 2022 - July 2023</p>
</div>
<div class="col-lg-9">
<p><b>Graduate Research Assistant</b>, Risk Decision Making Lab </p>
<p>Department of Geography and the Environment, The University of Alabama, USA</p>
<p><i>Research project: Integrating multi-scale observations, machine learning and systems modeling for coastal Monitoring, Assessment, and Prediction (Coast-MAP) in the context of multiple stresses</i></p>
<p>Funded by Department of Treasury Project #A22-0297</p>
</p>
</div>
</div>
<div class="row">
<div class="col-lg-2 col-lg-offset-1">
<p>Aug 2021 - July 2022 </p>
</div>
<div class="col-lg-9">
<p><b>Graduate Council Fellow</b></p>
<p>Department of Geography and the Environment, The University of Alabama, USA</p>
</div>
</div>
<div class="row">
<div class="col-lg-2 col-lg-offset-1">
<p>July 2020 - Nov 2020</p>
</div>
<div class="col-lg-9">
<p><b>GIS Assistant</b></p>
<p>Geo-Planning for Advanced Development (GPAD), Dhaka, Bangladesh</p>
</div>
</div>
<div class="row">
<div class="col-lg-2 col-lg-offset-1">
<p>Feb 2019 - March 2020</p>
</div>
<div class="col-lg-9">
<p><b>Research Assistant</b></p>
<p>Mohammad Abdul Quader Research Group, Department of Geography and Environment, Jagannath University, Dhaka</p>
</div>
</div>
</div>
</section>
<!--Research Section-->
<section class="success" id="research">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2>Research</h2>
<hr class="star-light">
</div>
</div>
<div class="row">
<div class="row col-lg-8 col-lg-offset-1">
<h3>Research interests</h3>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
</div>
<div class="col-lg-10">
<p>Flood Risk Modelling, Social Vulnerability, LULC, Machine Learning</p>
</div>
</div>
<div class="row">
<div class="row col-lg-8 col-lg-offset-1">
<h3>Publications</h3> <p>(peer reviewed papers in academic journals)<p>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
<p>2025</p>
</div>
<div class="col-lg-10">
<p> Haque, M. M., Shao, W., <b>Dey, H.</b>. (2025). “Integrating stakeholder perspectives in flood risk assessment: A case study in Mobile Bay, Alabama”.
<i>Natural Hazards</i>.
doi:<a href="https://doi.org/10.1007/s11069-025-07725-y">10.1038/s44304-024-00045-4 </a> [<a href="./pubs/Haque et al., 2025.pdf">pdf</a>]
</p>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
<p>2024</p>
</div>
<div class="col-lg-10">
<p> <b>Dey, H.</b>, Haque, M. M., Shao, W., VanDyke, M., & Hao, F. (2024). “Simulating flood risk in Tampa Bay using a machine learning driven approach”.
<i>npj Natural Hazards</i>, 1(1), 1-16.
doi:<a href="https://doi.org/10.1038/s44304-024-00045-4">10.1038/s44304-024-00045-4 </a> [<a href="./pubs/Dey et al. 2024c.pdf">pdf</a>]
</p>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
<p>2024</p>
</div>
<div class="col-lg-10">
<p> <b>Dey, H.</b>, Shao, W., Haque, M. M., & VanDyke, M. (2024). “Enhancing Flood Risk Analysis in Harris County: Integrating Flood Susceptibility and Social Vulnerability Mapping”.
<i>Journal of Geovisualization and Spatial Analysis</i>, 8(1), 19.
doi:<a href="https://doi.org/10.1007/s41651-024-00181-5">10.1007/s41651-024-00181-5</a> [<a href="./pubs/Dey et al. 2024b.pdf">pdf</a>]
</p>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
<p>2024</p>
</div>
<div class="col-lg-10">
<p> <b>Dey, H.</b>, Shao, W., Moradkhani, H., Keim, B. D., & Peter, B. G. (2024). “Urban flood susceptibility mapping using frequency ratio and multiple decision tree-based machine learning models”. <i>Natural Hazards</i>, 120, 10365-10393.
doi:<a href="https://doi.org/10.1007/s11069-024-06609-x">10.1007/s11069-024-06609-x</a> [<a href="./pubs/Dey et al. 2024a.pdf">pdf</a>]
</p>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
<p>2023</p>
</div>
<div class="col-lg-10">
<p> <b>Dey, H.</b>, Shao, W., Pan, S., & Tian, H. (2023). “The Spatiotemporal Patterns of Community Vulnerability in the US Mobile Bay from 2000–2020”. <i>Applied Spatial Analysis and Policy</i>, 17, 371–392.
doi:<a href="https://doi.org/10.1007/s12061-023-09549-4">10.1007/s12061-023-09549-4</a> [<a href="./pubs/Dey et al. 2023.pdf">pdf</a>]
</p>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
<p>2023</p>
</div>
<div class="col-lg-10">
<p> Tabassum, A., Basak, R., Shao, W., Haque, M. M., Chowdhury, T. A., & <b>Dey, H.</b> (2023). “Exploring the relationship between land use land cover and land surface temperature: a case study in Bangladesh and the policy implications for the Global South”.
<i>Journal of Geovisualization and Spatial Analysis</i>, 7(2), 25.
doi:<a href="https://doi.org/10.1007/s41651-023-00155-z">10.1007/s41651-023-00155-z</a> [<a href="./pubs/Tabassumetal.2023.pdf">pdf</a>]
</p>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
<p>2023</p>
</div>
<div class="col-lg-10">
<p> Quader, M. A., <b>Dey, H.</b>, Malak, M.A., & Rahman, Z. (2023). “A geospatial assessment of flood hazard in north‐eastern depressed basin, Bangladesh”. <i>Singapore Journal of Tropical Geography</i>, 44(2), 277-299.
doi:<a href="https://doi.org/10.1111/sjtg.12476">10.1111/sjtg.12476</a> [<a href="./pubs/Quader et al 2022.pdf">pdf</a>]
</p>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
<p>2021</p>
</div>
<div class="col-lg-10">
<p> Quader, M. A., <b>Dey, H.</b>, Malak, M.A., & Sajib, A. M. (2021). “Rohingya refugee flooding and changes of the physical and social landscape in Ukhiya, Bangladesh”. <i>Environment, Development and Sustainability</i>, 23(3), 4634-4658.
doi:<a href="https://doi.org/10.1007/s10668-020-00792-0">10.1007/s10668-020-00792-0</a> [<a href="./pubs/Quader et al 2021.pdf">pdf</a>]
</p>
</div>
</div>
<div class="row">
<div class="row col-lg-8 col-lg-offset-1">
<h3>Journal manuscripts under review</h3>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
</div>
<div class="col-lg-10">
<p> <b>Dey, H.</b>, Shao, W. “A Tale of Two Coasts: Unveiling U.S. Gulf and Atlantic Coastal Cities at High Flood Risk.” This article is under review in the <i>Science Advances</i></p>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
</div>
<div class="col-lg-10">
<p>Wang, C., Shao, W., Shao, Y. <b>Dey, H.</b> “Multiscale Health Vulnerability Index and Urban-rural Differences in the U.S. South: Development and Implications" This article is under review in <i>Social Science & Medicine.</i> </p>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
</div>
<div class="col-lg-10">
<p>Begum, S., Putul, U.A., Malak, M.A., <b>Dey, H.</b>, Shao, W. “Evaluating LULC Transformation and Its Socioeconomic Effects on Payra Seaport Development: A SWOT Perspective” This article is under review in <i>GeoJournal.</i> </p>
</div>
</div>
</div>
<section>
<div class="row">
<div class="col-lg-8 col-lg-offset-1">
<h3>Media Coverage</h3>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
<p>2024</p>
</div>
<div class="col-lg-9">
<p>
“<a href="https://theconversation.com/coastal-cities-growing-hurricane-vulnerability-is-fed-by-both-climate-change-and-unbridled-population-growth-234547">
Coastal cities’ growing hurricane vulnerability is fed by both climate change and unbridled population growth
</a>”. The Conversation, September 11, 2024. (Author: Dr. Wanyun Shao).
</p>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
<p>2021</p>
</div>
<div class="col-lg-9">
<p>
“<a href="https://epaper.ajkerpatrika.com/imageview/20486/1035521424.html?fbclid=IwZXh0bgNhZW0CMTAAAR1dxHeUWPaDGw1AL-LlWvmzzM-w-twwwNYcZeTV3B7noR8wv00Ors76MUg_aem_LMNXk206Rt04SdHcwY9qQw">
Research expertise can play a crucial role in securing higher education funding in the United States
</a>”. Ajker Patrika (Bengali Version), November 09, 2021. (Author: Hemal Dey).
</p>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
<p>2021</p>
</div>
<div class="col-lg-9">
<p>
“<a href="https://theconversation.com/refugee-camps-can-wreak-enormous-environmental-damages-should-source-countries-be-liable-for-them-152519">
Refugee camps can wreak enormous environmental damages – should source countries be liable for them?
</a>”. The Conversation, May 13, 2021. (Author: Leonard Hammer; Saleh Ahmed).
</p>
</div>
</div>
</section>
<!--Presentation Section-->
<section class="success" id="#Gallery">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2>Presentations</h2>
<hr class="star-light">
</div>
</div>
<div class="row">
<div class="row col-lg-8 col-lg-offset-1">
<h3>Conference Paper Presentations</h3>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
<p>2025</p>
</div>
<div class="col-lg-10">
<p>Dey, H., Haque. M., Shao, W., VanDyke., M, Hao., F. “Simulating Flood Risk in Tampa Bay Using a Machine Learning Driven Approach”. This abstract has been accepted for a paper presentation at”. <i>AAG Annual Meeting 2025</i>, Detroit, MI, U.S.A., March 24-28, 2024.
</p>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
<p>2023</p>
</div>
<div class="col-lg-10">
<p>Dey, H., Shao, W. “Toward a more comprehensive assessment of flood risk: Mapping flood susceptibility and social vulnerability” this paper was presented in Lightning Talks at <i>2023 CIROH Training and Developers Conference</i>, Salt Lake, UT, U.S.A., May 16-18, 2023.
</p>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
<p>2023</p>
</div>
<div class="col-lg-10">
<p>Dey, H., Shao, W. “Toward a more comprehensive assessment of flood risk: Mapping flood susceptibility and social vulnerability” This paper was presented at <i>AAG Annual Meeting 2023.</i>, Denver, CO, U.S.A., March 23-27, 2023. <a href="https://aag.secure-platform.com/aag2023/gallery/rounds/54/details/35704"> [ Link ] </a>
</p>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
<p>2022</p>
</div>
<div class="col-lg-10">
<p>Dey, H., Shao, W. Moradkhani, H., Keim, B.D., Peter, B.G. “Comparing Flood Susceptible Zones with Public Perceived Flood Risk Areas in the City of New Orleans” Paper was presented at the <i>AWRA 2022 Spring Conference</i>, Tuscaloosa, AL, U.S.A. April 25-27, 2022.
</p>
</div>
</div>
<div class="row">
<div class="row col-lg-8 col-lg-offset-1">
<h3>Conference Poster Presentations</h3>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
<p>2024</p>
</div>
<div class="col-lg-10">
<p>Dey, H., Haque. M., Shao, W., VanDyke., M, Hao., F. “Simulating Flood Risk in Tampa Bay Using a Machine Learning Driven Approach”. This poster was presented at <i>AGU 2024 Annual Meeting</i>, Washington, D.C., U.S.A., December 09-13, 2024.</p>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
<p>2024</p>
</div>
<div class="col-lg-10">
<p>Dey, H., Shao, W. “Crowded in High Flood Risk Zones: Assessing Flood Risk in Tampa Bay Using A Machine Learning Driven Approach”. This poster was presented at <i>ALWRC Meeting 2024</i>, Orange Beach, AL, U.S.A., September 04-06, 2024. </p>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
<p>2020</p>
</div>
<div class="col-lg-10">
<p>Quader, M. A. and Dey, H., 2020. Impact of Rohingyas on the vegetation cover at Kutupalong Camp in Ukhiya, Cox’s bazar, Bangladesh. This poster was presented at <i>International Virtual Conference on Young Researchers’ Overseas Day 2020</i>, Brussels, Belgium, 15 December 2020. (Virtual) </p>
</div>
</div>
</div>
</section>
<!--Teaching Section-->
<section class="success" id="teaching">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2>Teaching</h2>
<hr class="star-light">
</div>
</div>
<div class="row">
<div class="row col-lg-8 col-lg-offset-1">
<h3>Teaching Experience</h3>
</div>
</div>
<div class="row">
<div class="row col-lg-8 col-lg-offset-1">
<h4> The University of Alabama</h4>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
<p>2024-</p>
</div>
<div class="col-lg-8">
<p><strong>Guest Lecturer</strong></p>
<p>GY 552 - Environment Decision Making [<a href="./doc/Syllabus_GY552_Modified.pdf">Syllabus</a>] Section: <i>How to measure flood susceptibility, social vulnerability, and flood risk.</i></p>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
<p>2020-</p>
</div>
<div class="col-lg-8">
<p><strong>Lab Instructor</strong></p>
<p>Lab GY 101- Atmospheric Process & Pattern [<a href="./doc/Fall_23_GY_101_020_44138_Lab_Syllabus.pdf">Syllabus</a>]</p>
</div>
</div>
<div class="row">
<div class="row col-lg-8 col-lg-offset-1">
<h3>Professional Training Experience</h3>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
<p>2021</p>
</div>
<div class="col-lg-10">
<p>The International Teaching Assistant Program (ITAP) training on Teaching Methods (TM), administered by the <i>English Language Institute (ELI), University of Alabama</i> </p>
</div>
</div>
</div>
</section>
<!--Publications Section-->
<!--<section class="success" id="publications">-->
<!--<div class="container">-->
<!--<div class="row">-->
<!--<div class="col-lg-12 text-center">-->
<!--<h2>Publications</h2>-->
<!--<hr class="star-light">-->
<!--</div>-->
<!--</div>-->
<!--</div>-->
<!--</section>-->
<!--Awards Section-->
<section class="success" id="awards">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2>Awards & Honors</h2>
<hr class="star-light">
</div>
</div>
<div class="row">
<div class="row col-lg-8 col-lg-offset-1">
<h3>Paper Awards</h3>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
<p>2024</p>
</div>
<div class="col-lg-10">
<p>Outstanding Graduate Research Award (PhD category) from the Dept. of Geography and the Environment, The University of Alabama ($200).</p>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
<p>2024</p>
</div>
<div class="col-lg-10">
<p> Dr. Bobby Wilson Award from the Dept. of Geography and the Environment, The University of Alabama ($250).</p>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
<p>2022</p>
</div>
<div class="col-lg-10">
<p> Second place Award of the American Water Resources Association (AWRA) 2022 Spring Conference Paper Competition.</p>
</div>
</div>
<div class="row">
<div class="row col-lg-8 col-lg-offset-1">
<h3>Travel Awards</h3>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
<p>2024</p>
</div>
<div class="col-lg-10">
<p>Travel Grant Fellowship from Cooperative Institute for Research to Operations in Hydrology (CIROH) at the University of Alabama ($2000)</p>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
<p>2024</p>
</div>
<div class="col-lg-10">
<p>Travel Grant Fellowship from the University of Alabama ($1200) </p>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
<p>2023</p>
</div>
<div class="col-lg-10">
<p>CIROH Training and Developers Conference Travel Scholarship ($1500).</p>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
<p>2023</p>
</div>
<div class="col-lg-10">
<p>Travel Grant Fellowship from the University of Alabama ($1000).</p>
</div>
</div>
<div class="row">
<div class="row col-lg-8 col-lg-offset-1">
<h3>Scholarships</h3>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
<p>2021</p>
</div>
<div class="col-lg-10">
<p>Graduate Council Fellowship (GCF) (2021-2022) award from the Graduate School of The University of Alabama ($52,326).</p>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
<p>2021</p>
</div>
<div class="col-lg-10">
<p>National Science and Technology (NST) Fellowship Award (2020-2021) for MSc. thesis, Ministry of Science and Technology, Bangladesh ($700). [<a href="https://most.portal.gov.bd/sites/default/files/files/most.portal.gov.bd/npfblock/01102021160530.pdf">Link</a>]</p>
</div>
</div>
<div class="row">
<div class="row col-lg-8 col-lg-offset-1">
<h3>Other Awards</h3>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
<p>2020</p>
</div>
<div class="col-lg-10">
<p>Second place Award on “Photography contest” in the BAPA BEN 4th International Conference on Bangladesh Environment (ICBEN), December 2020.</p>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
<p>2018</p>
</div>
<div class="col-lg-10">
<p>The Duke of Edinburgh’s International Award, Bangladesh (Bronze Standard). September 2018.</p>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
<p>2017</p>
</div>
<div class="col-lg-10">
<p>First place Award on “World Environment Day-2017 Photography Competition “organized by Geography and Environment department, Jagannath University, Bangladesh. June 2017.</p>
</div>
</div>
</div>
</section>
<!-- Portfolio Grid Section -->
<section id="portfolio">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2>Portfolio</h2>
<hr class="star-primary">
</div>
</div>
<div class="row">
<!--USGAC Project-->
<div class="col-sm-4 portfolio-item">
<a href="#portfolioModal8" class="portfolio-link" data-toggle="modal">
<div class="caption">
<div class="caption-content">
<i class="fa fa-search-plus fa-3x"></i>
</div>
</div>
<img src="img/Study Area US Gulf Atlantic.jpg" class="img-responsive" alt="">
</a>
</div>
<!--Miami-Dade Project-->
<div class="col-sm-4 portfolio-item">
<a href="#portfolioModal9" class="portfolio-link" data-toggle="modal">
<div class="caption">
<div class="caption-content">
<i class="fa fa-search-plus fa-3x"></i>
</div>
</div>
<img src="img/StudyArea_Miami-Dade.jpg" class="img-responsive" alt="">
</a>
</div>
</div>
</div>
</section>
<!-- Skills Section -->
<section class="success" id="skills">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2>Skills</h2>
<hr class="star-light">
</div>
</div>
<div class="row">
<div class="col-lg-3 col-lg-offset-1">
<p>Processing of Satellite Data:</p>
</div>
<div class="col-lg-8">
<p><i>Google Earth Engine, ERDAS Imagine</i></p>
</div>
</div>
<div class="row">
<div class="col-lg-3 col-lg-offset-1">
<p>Analysis of Geospatial Data:</p>
</div>
<div class="col-lg-8">
<p><i>ArcMap, ArcGIS Pro, QGIS, Drone2Map</i></p>
</div>
</div>
<div class="row">
<div class="col-lg-3 col-lg-offset-1">
<p>Statistical Packages:</p>
</div>
<div class="col-lg-8">
<p><i>SPSS, Excel</i></p>
</div>
</div>
<div class="row">
<div class="col-lg-3 col-lg-offset-1">
<p>Programming Languages:</p>
</div>
<div class="col-lg-8">
<p><i>Python, JavaScript, R</i></p>
</div>
</div>
<div class="row">
<div class="col-lg-3 col-lg-offset-1">
<p>Image Editing:</p>
</div>
<div class="col-lg-8">
<p><i>Adobe Photoshop CS, Adobe Lightroom</i></p>
</div>
</div>
<div class="row">
<div class="col-lg-3 col-lg-offset-1">
<p>Web Designing:</p>
</div>
<div class="col-lg-8">
<p><i>Google Sites, HTML</i></p>
</div>
</div>
<div class="row">
<div class="col-lg-3 col-lg-offset-1">
<p>Survey Designing:</p>
</div>
<div class="col-lg-8">
<p><i>Qualtrics, Google Forms</i></p>
</div>
</div>
</div>
</section>
<!-- Opportunities Section -->
<section class="success" id="opportunities">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2>Opportunities</h2>
<hr class="star-light">
</div>
</div>
<div class="row">
<div class="col-lg-10 col-lg-offset-1">
<p>
My core research aims to understand and address challenges arising from the interplay of natural hazard risk, social vulnerability, and land-use/land-cover dynamics. To tackle these issues,
I employ GIS, remote sensing, and machine learning tools. My recent projects focus on two primary areas: (1) simulating flood risk along the U.S. Gulf and Atlantic Coasts and
(2) assessing social vulnerability in the Southeastern United States. My specific research interests are detailed below:
</p>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
<p><b>GIS & RS</b>:</p>
</div>
<div class="col-lg-8 col-lg-offset-1">
<p>Geospatial analysis, Web GIS, GeoAI </p>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
<p><b>Natural Hazards</b>:</p>
</div>
<div class="col-lg-8 col-lg-offset-1">
<p>Flood, Drought, Landslide</p>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
<p><b>Social Vulnerability</b>:</p>
</div>
<div class="col-lg-8 col-lg-offset-1">
<p>To generate socio economic vulnerability index</p>
</div>
</div>
<div class="row">
<div class="col-lg-2 col-lg-offset-1">
<p><b>LULC change detection</b>:</p>
</div>
<div class="col-lg-8">
<p>Processing satellite and remote sensing data</p>
</div>
</div>
<div class="row">
<div class="row col-lg-8 col-lg-offset-1">
<h3>Potential Collaborators</h3>
</div>
</div>
<div class="row">
<div class="col-lg-10 col-lg-offset-1">
<p class="text-justify">
I have been doing research to develop a conceptual framework to assess flood risk comprehensively. In addition, I am doing research on social vulnerability assessment and how rapid LULC change can contribute on social vulnerability rise.
Please feel free to contact me if you need support in your research or project.
</p>
</div>
</div>
</div>
</section>
<!-- Gallery Section -->
<section class="success" id="Gallery">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2>Gallery</h2>
<hr class="star-primary">
</div>
</div>
<div class="row">
<!-- Convocation Photo -->
<div class="col-sm-4 gallery-item">
<a href="img/gallery/convocation1.jpg" data-lightbox="gallery" data-title="Convocation Ceremony">
<img src="img/convocation1.jpg" class="gallery-img img-thumbnail" alt="Convocation Ceremony">
</a>
</div>
<!-- Conference Photo -->
<div class="col-sm-4 gallery-item">
<a href="img/conference1.jpg" data-lightbox="gallery" data-title="Conference Presentation">
<img src="img/conference1.jpg" class="gallery-img img-thumbnail" alt="Conference Presentation">
</a>
</div>
</div>
</div>
</section>
<style>
.gallery-img {
width: 100%;
height: 250px;
object-fit: cover;
}
</style>
<!-- Contact Section -->
<section id="contact">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2>Contact Me</h2>
<hr class="star-primary">
</div>
</div>
<div class="row">
<div class="row col-lg-6 col-lg-offset-2">
<h3>My Contact Information</h3>
</div>
</div>
<div class="row">
<div class="col-lg-2 col-lg-offset-2">
<p>Name:</p>
</div>