-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
2474 lines (2286 loc) · 117 KB
/
index.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>
<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>Dapeng Li'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/[email protected]/dist/leaflet.css"
integrity="sha512-xwE/Az9zrjBIphAcBb3F6JVqxf46+CDLwfLMHloNu6KEQCAWi6HcDUbeOfBIptF7tcCzusKFjFw2yuvEpDL9wQ=="
crossorigin=""/>
<!-- Leaflet js library-->
<script src="https://unpkg.com/[email protected]/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">DAPENG LI</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="#presentations">Presentations</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="#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/dapeng1.jpg" alt="">
<div class="intro-text">
<span class="name">Dapeng Li</span>
<hr class="star-light">
<span class="skills">GIScientist - Software Engineer - Geographer</span>
</div>
</div>
</div>
<!--<div class="col-lg-8 col-lg-offset-2 text-center">-->
<!--<a href="#" class="btn btn-lg btn-outline">-->
<!--<i class="fa fa-download"></i> Download Theme-->
<!--</a>-->
<!--</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">
I was born in Weihai, a small city on the east coast of Shandong Province, China.
I earned my Bachelor's degree in Geographic Information Systems (GIS) from the School of Information Engineering at
<a rel="nofollow" target="_blank" href="https://en.cugb.edu.cn/">
<em> China University of Geosciences (Beijing)</em></a>. My undergraduate studies mainly focused on software engineering, and I was trained as a full-stack software engineer.
I hold a Master's degree in Cartography and Geographic Information Systems from
<a rel="nofollow" target="_blank" href="http://english.pku.edu.cn/"> <em>Peking University</em></a>. My Master's studies focused on several advanced topics in GIS: global georeferencing systems, location-based services, GIS engineering, and Web GIS.
I got my Ph.D. degree in Geography (Geographic Information Science & Cartography)
from the <a rel="nofollow" target="_blank" href="http://www.utah.edu/"> <em>University of Utah</em></a> in 2016. My doctoral training concentrated on spatial modeling/simulation, big data, and mobile computing.
I did my postdoc in the Center for Systems Integration and Sustainability at Michigan State University, and my postdoctoral training focused on telecoupling and global sustainability.
</p>
<p class="text-justify">I am working as an Assistant Professor of GIS in the <a href="https://geography.ua.edu/">Department of Geography</a> at the University of Alabama.
I am teaching introductory and upper-level GIS courses. As a certified <a href="https://www.gisci.org/">GIS Professional (GISP)</a>, I am dedicated to educating the next generation of GIS professionals and helping them succeed in their career.
</p>
<p>
I have a long-running research interest in better using geospatial technologies to save life and property in disasters. My current research primarily focuses on wildfire evacuation modeling and simulation in the American West.
I will continue this line of research in the next few years to build better wildfire evacuation systems in the U.S. Meanwhile, I also start to work on other topics in hazards, public health, transportation, sustainability, and agriculture.
</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>2016</p>
</div>
<div class="col-lg-10">
<p>Ph.D. in Geography (Concentration: GIS, Big Data, & Mobile Computing)</p>
<p>Department of Geography, <em>Univesity of Utah</em>, USA</p>
<p>Dissertation: Modeling wildfire evacuation as a coupled human-environmental system using triggers</p>
<p>Advisors: Dr. <a href="https://faculty.utah.edu/u0085652-THOMAS_J_COVA/hm/index.hml">Thomas J. Cova</a> &
Dr. <a href="https://faculty.utah.edu/u0458552-Philip_E_Dennison/hm/index.hml">Philip E. Dennison</a></p>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
<p>2011</p>
</div>
<div class="col-lg-10">
<p>M.S. in Cartograhy and Geographic Information Systems (Concentration: Geoinformatics)</p>
<p>Institute of Remote Sensing & GIS,<em> Peking University</em>, China</p>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
<p>2008</p>
</div>
<div class="col-lg-9">
<p>B.S. in Geographic Information Systems (Concentration: Software Engineering)</p>
<p>School of Information Engineering, <em>China University of Geosciences (Beijing)</em>, China</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>2023 - present</p>
</div>
<div class="col-lg-9">
<p>Assistant Professor of GIS</p>
<p>Department of Geography, The University of Alabama, USA</p>
</div>
</div>
<div class="row">
<div class="col-lg-2 col-lg-offset-1">
<p>2017 - 2023</p>
</div>
<div class="col-lg-9">
<p>Assistant Professor of GIS</p>
<p>Department of Geography & Geospatial Sciences, South Dakota State University, USA</p>
</div>
</div>
<div class="row">
<div class="col-lg-2 col-lg-offset-1">
<p>2016 - 2017</p>
</div>
<div class="col-lg-9">
<p>Research Associate (Supervisor: Dr. Jianguo (Jack) Liu)</p>
<p>Center for Systems Integration and Sustainability, Michigan State University, USA</p>
<p>Project: <a href="http://www.belmontforum.org/wp-content/uploads/2018/05/ABC-Telecoupling.pdf">
Food security and land use: the telecoupling challenge</a> (the Belmont Forum)
</p>
</div>
</div>
<div class="row">
<div class="col-lg-2 col-lg-offset-1">
<p>2015 - 2016</p>
</div>
<div class="col-lg-9">
<p>Research Assistant (Supervisor: Dr. Quynh Nguyen)</p>
<p>Department of Health Promotion and Education, University of Utah, USA</p>
<p>Project: <a href="https://reporter.nih.gov/project-details/5K01ES025433-02">HashtagHealth:
A social media big data resource for neighborhood effects research</a> (NIH)</p>
<p>Project website: <a href="https://hashtaghealth.github.io">https://hashtaghealth.github.io</a></p>
</div>
</div>
<div class="row">
<div class="col-lg-2 col-lg-offset-1">
<p>2014 - 2015</p>
</div>
<div class="col-lg-9">
<p>Research Assistant (Supervisor: Dr. Neng Wan)</p>
<p>Utah Geo-Health Lab, Department of Geography, University of Utah, USA</p>
<p>Project: <a href="https://grantome.com/grant/NIH/R03-AG044759-01A1">
Understanding life-space characteristics based on cell-phone collected data</a> (NIH)</p>
</div>
</div>
<div class="row">
<div class="col-lg-2 col-lg-offset-1">
<p>2011 - 2014</p>
</div>
<div class="col-lg-9">
<p>Research Assistant (Supervisors: Dr. Thomas J. Cova and Dr. Philip E. Dennison)</p>
<p>Center for Natural and Technological Hazards (CNTH), University of Utah, USA</p>
<p>Project: <a href="http://nsf.gov/awardsearch/showAward?AWD_ID=1100890">Protective action triggers</a> (NSF)</p>
</div>
</div>
<div class="row">
<div class="col-lg-2 col-lg-offset-1">
<p>2008 - 2011</p>
</div>
<div class="col-lg-9">
<p>Research Assistant (Supervisor: Dr. Chengqi Cheng)</p>
<p>Institute of Remote Sensing and GIS, Peking University, P.R. China</p>
<p>Project: Global spatial information organization and its relevant applications</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 and teaching interests</h3>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
<p>Methods:</p>
</div>
<div class="col-lg-10">
<p>GIS, Systems Modeling & Integration, Spatial Analysis, Big Data Analytics, Open Science</p>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
<p>Foci:</p>
</div>
<div class="col-lg-10">
<p>Hazards, Public Health, Transportation, Sustainability, Agriculture</p>
</div>
</div>
<div class="row">
<div class="row col-lg-8 col-lg-offset-1">
<h3>Refereed Journal Articles</h3>
<p>(Student Advisees Underlined)</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> Li, Y., Li, D., & King, C. (2022). “Food Insufficiency among Job-Loss Households during the Pandemic: The Role of Food Assistance Programs”.
<i>Sustainability</i>, 14(22), 15433.
doi:<a href="https://doi.org/10.3390/su142215433">10.3390/su142215433 </a> [<a href="./pubs/Yingru_2022_SU.pdf">pdf</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> Li, D.* (2022). “A data-driven approach to improving evacuation time estimates during wildfires for communities with part-time residents in the wildland-urban interface”.
<i>International Journal of Disaster Risk Reduction</i>, 82, 103363.
doi:<a href="https://doi.org/10.1016/j.ijdrr.2022.103363">10.1016/j.ijdrr.2022.103363</a> [<a href="./pubs/Li_2022_IJDRR.pdf">pdf</a>][<a href="./video/IJDRR2022.mp4">Video</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> Jiang, Y., Han, S., Li, D., Bai, Y., & Wang, M. “Automatic Sidewalk Trip Hazard Detection and Mapping Using Mobile Devices and Deep Learning”. <i>Expert Systems with Applications</i>, <i>227</i>, 117980.
doi:<a href="https://doi.org/10.1016/j.eswa.2022.117980">10.1016/j.eswa.2022.117980</a> [<a href="./pubs/Jiang_2022_ESWA.pdf">pdf</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> Jiang, Y., Huang, Y., Liu, J., Li, D., Li, S., Nie, W., & Chung I. “Automatic Measurement and Mapping of Construction and Demolition Debris Using Drones, Deep Learning, and GIS”. <i>Drones</i>, <i>6</i>(10), 279.
doi:<a href="https://doi.org/10.3390/drones6100279">10.3390/drones6100279</a> [<a href="./pubs/Jiang_2022_DRONES.pdf">pdf</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> Yue, X., Antonietti, A., Alirezaei, M., Tasdizen, T., Li, D., Nguyen, L., Mane, H., Sun, A., Hu, M., Whitaker, R., & Nguyen, Q. “Using Convolutional Neural Networks to derive neighborhood built environments from Google Street View images and examine their associations with health outcomes”.
<i>International Journal of Environmental Research and Public Health</i>, <i>19</i>(19), 12095.
doi:<a href="https://doi.org/10.3390/ijerph191912095">10.3390/ijerph191912095</a> [<a href="./pubs/Yue_2022_IJERPH.pdf">pdf</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> <u>Ketchpaw, A.R.</u>, Li, D.*, Khan, S.N., Jiang, Y., Li, Y, & Zhang, L. “Using structure location data to map the wildland-urban interface in Montana, USA”. <i>Fire</i>, <i>5</i>(5), 129..
doi:<a href="https://doi.org/10.3390/fire5050129">10.3390/fire5050129</a> [<a href="./pubs/Ketchpaw_2022_FIRE.pdf">pdf</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> <u>Khan, S.N.</u>, Li, D.*, & Maimaitijiang, M. “A Geographically Weighted Random Forest Approach to Predict Corn Yield in the US Corn Belt”. <i>Remote Sensing</i>, <i>14</i>(12), 2843.
doi:<a href="https://doi.org/10.3390/rs14122843">10.3390/rs14122843</a> [<a href="./pubs/Khan_2022_RS.pdf">pdf</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> Nguyen, Q., Belnap, T., Dwivedi, P., Nazem, A., Kumar, A., Li, D., Whitaker, R., Tasdizen, T., & Brunisholz, K.
“Google Street View images as predictors of patient health out-comes, 2017-2019”. <i>Big Data and Cognitive Computing</i>.
doi:<a href="https://doi.org/10.3390/bdcc6010015">10.3390/bdcc6010015</a> [<a href="./pubs/Nguyen_2022_BDCC.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> Wang, T., Jin, H., Fan, Y., Obembe, O., and Li, D. “Farmers’ adoption and perceived benefits of diversified crop rotations in the margins of Corn Belt”. <i> Journal of Environmental Management</i>, <i>293</i>, 112903.
doi:<a href="https://doi.org/10.1016/j.jenvman.2021.112903">10.1016/j.jenvman.2021.112903</a> [<a href="./pubs/Wang_2021_JEM.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> Li, Y., Wang, S., Cao, G., Li, D., & Ng, B.P.
“Disentangling Racial/Ethnic and Income Disparities of Food Retail Environments: Impacts on Adult Obesity Prevalence”. <i>Applied Geography</i>.
doi:<a href="https://doi.org/10.1016/j.apgeog.2021.102607">10.1016/j.apgeog.2021.102607</a> [<a href="./pubs/Yingru_2021_AG.pdff">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> Cova, T.J., Li, D., Siebeneck, L.K., & Drews, F. “Towards simulating dire wildfire scenarios”. <i>Natural Hazards Review</i>, <i>22</i>(3). doi:<a href="https://doi.org/10.1061/(ASCE)NH.1527-6996.0000474">10.1061/(ASCE)NH.1527-6996.0000474</a>
[<a href="./pubs/Cova_2021_NHR.pdf">pdf</a>]
</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> Li, D.*, Li, Y., Nguyen, Q.C., & Siebeneck, L.K. “A study on the GIS Professional (GISP) certification program in the U.S.”. <i>ISPRS International Journal of Geo-Information</i>, <i>9</i>(9), 523.
doi:<a href="https://doi.org/10.3390/ijgi9090523">10.3390/ijgi9090523</a> [<a href="./pubs/Li_2020_IJGI.pdf">pdf</a>]
</p>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
<p>2019</p>
</div>
<div class="col-lg-10">
<p> Li, D.*, Cova, T.J., Dennison, P.E., Wan, N., Nguyen, Q.C., & Siebeneck, L.K. “Why do we need a national address point database to improve wildfire public safety in the U.S.?”. <i>International Journal of Disaster Risk Reduction</i>, <i>39</i>, 101237.
doi:<a href="https://doi.org/10.1016/j.ijdrr.2019.101237">10.1016/j.ijdrr.2019.101237</a> [<a href="./pubs/Li_2019_IJDRR.pdf">pdf</a>]
</p>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
<p>2019</p>
</div>
<div class="col-lg-10">
<p> Li, D., Cova, T.J., & Dennison, P.E. "Setting Wildfire Evacuation Triggers by Coupling Fire and Traffic Simulation Models: A Spatiotemporal GIS Approach". <i>Fire Technology</i>, <i>55</i>, 617–642.
doi:<a href="https://doi.org/10.1007/s10694-018-0771-6">10.1007/s10694-018-0771-6</a> [<a href="./pubs/Li_2019_FT.pdf">pdf</a>]
</p>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
<p>2019</p>
</div>
<div class="col-lg-10">
<p> Xu, Z., Chau, S., Ruzzenenti, F., Connor, T., Li, Y., Tang, Y., Li, D., Gong, M., & Liu, J.
"Evolution of multiple global virtual material flows". <i>Science of The Total Environment</i>, <i>658</i>, 659-668.
doi:<a href="https://doi.org/10.1016/j.scitotenv.2018.12.169">10.1016/j.scitotenv.2018.12.169</a> [<a href="./pubs/Xu_2019.pdf">pdf</a>]
</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> Meng, H.-W., Kath, S., Li, D., & Nguyen, Q. C. "National substance use patterns on Twitter". <i>PLOS ONE</i>, 12(11), e0187691.
doi:<a href="https://doi.org/10.1371/journal.pone.0187691">10.1371/journal.pone.0187691</a> [<a href="./pubs/Meng_2017.pdf">pdf</a>]
</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> Nguyen, Q., McCullough, M., Meng, H., Debjyoti, P., Li, D., et al.
"Geotagged U.S. Tweets (2015-2016) as Predictors of County-Level Health Outcomes".
<i>American Journal of Public Health</i> doi: <a href="https://doi.org/10.2105/AJPH.2017.303993">10.2105/AJPH.2017.303993</a> [<a href="./pubs/Nguyen_2017_AJPH.pdf">pdf</a>].
</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> Li, D., Cova, T.J., & Dennison, P.E. “Using reverse geocoding to identify prominent wildfire evacuation trigger points”.
<i>Applied Geography</i>, <i>87</i>, 14-27.doi: <a href ="https://doi.org/10.1016/j.apgeog.2017.05.008">10.1016/j.apgeog.2017.05.008</a> [<a href="./pubs/Li_2017_AG.pdf">pdf</a>]</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> Xu, Z., Tang, Y., Connor, T., Li, D., Li., Y., & Liu, J.
"Climate variability and trends at a national scale".
<i>Scientific Reports</i>. doi:<a href="https://doi.org/10.1038/s41598-017-03297-5">10.1038/s41598-017-03297-5</a> [<a href="./pubs/Xu_2017.pdf">pdf</a>]
</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> Nguyen, Q., Meng, H., Li, D.,Kath, S., et al.
"Social media indicators of the food environment and state health outcomes".
<i>Public Health</i>, 148, 120-128. doi:<a href="http://dx.doi.org/10.1016/j.puhe.2017.03.013">10.1016/j.puhe.2017.03.013</a> [<a href="./pubs/Nguyen_2017_PH.pdf">pdf</a>]
</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> Cova, T.J., Dennison, P.E., Li, D., Siebeneck, L.K., Drews, F.A., & Lindell, M.K.
"Warning triggers in environmental hazards: who should be warned to do what and when?"
<i>Risk Analysis</i>, <i>37</i>(4), 601-611. doi:<a href="http://onlinelibrary.wiley.com/doi/10.1111/risa.12651/full">10.1111/risa.12651</a> [<a href="./pubs/Cova_2017.pdf">pdf</a>]</p>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
<p>2016</p>
</div>
<div class="col-lg-10">
<p> Nguyen, Q., Li, D., Meng, H., Kath, S., Nsoesie, E., Wen, M., & Li, F.
"Building a national neighborhood dataset from geotagged Twitter data
for indicators of happiness, diet, and physical activity".
<i>JMIR Public Health & Surveillance</i>. doi:<a href="http://dx.doi.org/10.2196/publichealth.5869">10.2196/publichealth.5869</a> [<a href="./pubs/Nguyen_2016_JMIR.pdf">pdf</a>]
</p>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
<p>2016</p>
</div>
<div class="col-lg-10">
<p> Nguyen, Q., Kath, S., Meng, H., Li, D., Smith, K., VanDerslice, J.A., Wen, M., & Li, F.
"Leveraging geotagged Twitter data to examine neighborhood happiness, diet, and physical activity". <i>Applied Geography</i>, 73, 77-88.
doi:<a href="https://doi.org/10.1016/j.apgeog.2016.06.003">10.1016/j.apgeog.2016.06.003</a> [<a href="./pubs/Nguyen_2016_AG.pdf">pdf</a>]</p>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
<p>2015</p>
</div>
<div class="col-lg-10">
<p> Li, D., Cova, T.J., & Dennison, P.E. “A household-level approach to staging wildfire evacuation warnings using trigger modeling”.
<i>Computers, Environment, and Urban Systems</i>, 54, 56–67. doi:<a href="https://doi.org/10.1016/j.compenvurbsys.2015.05.008">10.1016/j.compenvurbsys.2015.05.008</a> [<a href="./pubs/Li_2015_CEUS.pdf">pdf</a>]</p>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
<p>2013</p>
</div>
<div class="col-lg-10">
<p>Guo, X., Cheng, C., Tan, Y., & Li, D. “Study on Unified Encoding Method for Topographic Map Based on Subdivision Framework”.
<i>Periodical of Ocean University of China</i>, 44(3). (in Chinese)</p>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
<p>2010</p>
</div>
<div class="col-lg-10">
<p>Geng, X., Cheng, C., Song, S., & Li, D. “Global Subdivision Systems Based on Map Kilo-Grids”.
<i>Geography and Geo-Information Science</i>, 2(3). (in Chinese)</p>
</div>
</div>
<div class="row">
<div class="row col-lg-8 col-lg-offset-1">
<h3>Refereed Book Chapters</h3>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
<p>2018</p>
</div>
<div class="col-lg-10">
<p>Li, D. “Geocoding and reverse geocoding". In Cova, T.J. & Tsou, M. (Eds.),
<i>Comprehensive Geographic Information Systems</i>. Vol. 1, Elsevier. doi: <a href="https://doi.org/10.1016/B978-0-12-409548-9.09593-2">10.1016/B978-0-12-409548-9.09593-2</a> [<a href="./pubs/Li_2018_Geocoding.pdf">pdf</a>]
</p>
</div>
</div>
<div class="row">
<div class="row col-lg-8 col-lg-offset-1">
<h3>Refereed Conference Proceedings</h3>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
<p>2015</p>
</div>
<div class="col-lg-10">
<p>Li, D., Cova, T.J., & Dennison, P.E. “An open-source software system for setting wildfire evacuation triggers”.
<i>1st ACM SIGSPATIAL International Workshop on the Use of GIS in Emergency Management</i>. doi: <a href="http://dl.acm.org/citation.cfm?doid=2835596.2835600">10.1145/2835596.2835600</a> [<a href="./pubs/Li_2015.pdf">pdf</a>]</p>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
<p>2010</p>
</div>
<div class="col-lg-10">
<p>Li, D. & Cheng, C. "A proposed architecture for emergency response systems based on Digital Earth".
Proc. SPIE 7840, <i>the Sixth International Symposium on Digital Earth: Models, Algorithms, and Virtual Reality</i>.</p>
</div>
</div>
<div class="row">
<div class="row col-lg-8 col-lg-offset-1">
<h3>Non-refereed Conference Proceedings</h3>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
<p>2015</p>
</div>
<div class="col-lg-10">
<p>Li, D., Cova, T.J., & Dennison, P.E. “Establishing wildfire evacuation zones—a coupled human-environmental system approach”.
<i>Proceedings of the 13th International Wildland Fire Safety Summit & 4th Human Dimensions of Wildland Fire Conference</i>. (Extended abstract)</p>
</div>
</div>
<div class="row">
<div class="row col-lg-8 col-lg-offset-1">
<h3>Other Publications</h3>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
<p>2019</p>
</div>
<div class="col-lg-10">
<p>Li, D. “Transportation infrastructure in disaster resilience assessment”. <i>GIS Professional, 291</i>, 12-14. [<a href="./pubs/Li_2019_GISP.pdf">pdf</a>]</p>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
<p>2010</p>
</div>
<div class="col-lg-10">
<p>Qi, Y., Li, D., Fang, W., et al. “Using Build Forge to Install Tivoli Provisioning Manager”. <i>IBM SSPD database</i>, Document ID: TD105637.</p>
</div>
</div>
<div class="row">
<div class="row 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>2019</p>
</div>
<div class="col-lg-10">
<p>“<a href="https://www.kqed.org/science/1942547/in-the-age-of-the-crazy-fast-fire-a-good-evacuation-plan-may-not-be-enough">
In the Age of Fast-Moving Fires, What's the Best Way to Get People Out?”</a>. KQED Science (Living With Wildfire:
California Reimagined Series), June 3. (Reporter: Jeremy Siegel).</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>South Dakota State University</h4>
</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>Instructor</strong></p>
<p>GEOG 790 Seminar: GIS Programming (Python Programming with ArcGIS) [<a href="./doc/GEOG790_Syllabus_2022S.pdf">Syllabus</a>]</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>Instructor</strong></p>
<p>GEOG 477/577: Spatial Databases [<a href="./doc/GEOG_477-577_Syllabus_2021S.pdf">Syllabus</a>][<a href="./doc/GEOG_477-577_Flyer.pdf">Flyer</a>]</p>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
<p>2019-</p>
</div>
<div class="col-lg-8">
<p><strong>Instructor</strong></p>
<p>GEOG 476/576: Web GIS [<a href="./doc/GEOG_476-576_Syllabus_2022F.pdf">Syllabus</a>][<a href="./doc/GEOG_476-576_Flyer.pdf">Flyer</a>]</p>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
<p>2018-</p>
</div>
<div class="col-lg-8">
<p><strong>Instructor</strong></p>
<p>GEOG 473/573: GIS Data Creation and Integration [<a href="./doc/GEOG_473-573_Syllabus_2022F.pdf">Syllabus</a>][<a href="./doc/GEOG_473-573_Flyer.pdf">Flyer</a>]</p>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
<p>2019-</p>
</div>
<div class="col-lg-8">
<p><strong>Instructor</strong></p>
<p>GEOG 786: Geographic Information Systems [<a href="doc/GEOG786_Syllabus_WebGIS_2019F.pdf">Web GIS</a>] [<a href="doc/GEOG786_Syllabus_Python_2021S.pdf">Python programming</a>]</p>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
<p>2017-</p>
</div>
<div class="col-lg-8">
<p><strong>Instructor</strong></p>
<p>GEOG 372: Introduction to Geographic Information Systems [<a href="./doc/GEOG372_Syllabus_2022S.pdf">Syllabus</a>]</p>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
<p>2017-</p>
</div>
<div class="col-lg-8">
<p><strong>Instructor</strong></p>
<p>GEOG 474/574 GIS: Vector and Raster Modeling [<a href="./doc/GEOG_474-574_Syllabus_2022S.pdf">Syllabus</a>]</p>
</div>
</div>
<div class="row">
<div class="row col-lg-8 col-lg-offset-1">
<h4>University of Utah</h4>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
<p>2014</p>
</div>
<div class="col-lg-8">
<p><strong>Instructor</strong></p>
<p>GEOG 5140: Methods in GIS (an advanced GIS course)</p>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
<p>2013</p>
</div>
<div class="col-lg-8">
<p><strong>Guest Lecturer </strong>(teaching practicum)</p>
<p>GEOG 5180/6180: GIS & Python (ArcPy section)</p>
</div>
</div>
<div class="row">
<div class="row col-lg-8 col-lg-offset-1">
<h3>Course Development Experience</h3>
</div>
</div>
<div class="row">
<div class="row col-lg-8 col-lg-offset-1">
<h4>South Dakota State University</h4>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
<p>2020-</p>
</div>
<div class="col-lg-10">
<p>GEOG 471/571: Introduction to GIS Programming (Python Programming)</p>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
<p>2019</p>
</div>
<div class="col-lg-10">
<p>GEOG 790 Seminar: GIS Programming (Python Programming)</p>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
<p>2019</p>
</div>
<div class="col-lg-10">
<p>GEOG 473/573: GIS Data Creation & Integration</p>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
<p>2019</p>
</div>
<div class="col-lg-10">
<p>GEOG 476/576: Web GIS</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>GEOG 786: Geographic Information Systems (Advanced Web GIS)</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>GEOG 477/577: Spatial Databases (PostgreSQL/PostGIS)</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>GEOG 474/574: GIS: Vector & Raster Modeling</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>GEOG 372: Introduction to Geographic Information Systems</p>
</div>
</div>
<div class="row">
<div class="row col-lg-8 col-lg-offset-1">
<h4>University of Utah</h4>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
<p>2014</p>
</div>
<div class="col-lg-10">
<p>GEOG 1180: Introduction to Geo-Programming (Python programming)</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>2019</p>
</div>
<div class="col-lg-10">
<p>Instructor. Technical Training Session: Basics of Scripting with Python. <i>The 2019 Black Hills Digital Mapping Agency Conference</i>, Rapid City, South Dakota, U.S.A. </p>
</div>
<div class="col-lg-1 col-lg-offset-1">
<p>2019</p>
</div>
<div class="col-lg-10">
<p>Instructor. Technical Training Session: Using Python in Geocoding/Reverse Geocoding. <i>The 2019 Black Hills Digital Mapping Agency Conference</i>, Rapid City, South Dakota, U.S.A. </p>
</div>
<div class="col-lg-1 col-lg-offset-1">
<p>2018</p>
</div>
<div class="col-lg-10">
<p>Instructor. Technical Training Session: Introduction to Git. <i>The 2018 Black Hills Digital Mapping Agency Conference</i>, Rapid City, South Dakota, U.S.A. </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>-->
<!--Presentation Section-->
<section class="success" id="presentations">
<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 Presentations</h3>
</div>
</div>
<div class="row">
<div class="col-lg-1 col-lg-offset-1">
<p>2022</p>
</div>
<div class="col-lg-10">
<p>Li, D. “A data-driven approach to improving evacuation time estimates for resort communities during wildfires”. <i>The 2022 Black Hills Digital Mapping Agency Conference</i>, Rapid City, SD, U.S.A. (Virtual)
</p>
</div>