-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
877 lines (813 loc) · 82.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<title>Xiang Chen's Website</title>
<link rel="icon" type="image/x-icon" href="img/earth.ico" />
<!-- Bootstrap core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom fonts for this template -->
<link href="https://fonts.googleapis.com/css?family=Saira+Extra+Condensed:500,700" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Muli:400,400i,800,800i" rel="stylesheet">
<link href="vendor/fontawesome-free/css/all.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/resume.min.css" rel="stylesheet">
</head>
<body id="page-top">
<nav class="navbar navbar-expand-lg navbar-dark bg-primary fixed-top" id="sideNav">
<a class="navbar-brand js-scroll-trigger" href="#page-top">
<span class="d-block d-lg-none">Xiang Chen</span>
<span class="d-none d-lg-block">
<img class="img-fluid img-profile rounded-circle mx-auto mb-2" src="img/profile4.jpg" alt="">
</span>
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#education">Work & Study</a>
</li>
<!-- This is an old section about COVID-19 research
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#covid19">COVID-19 Research</a>
</li>
-->
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#publications">Publications</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#teaching">Teaching</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#service">Service</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#awards">Awards</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#downloads">Downloads</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#students"> Students</a>
</li>
</ul>
</div>
</nav>
<div class="container-fluid p-0">
<section class="resume-section p-3 p-lg-5 d-flex align-items-center" id="about">
<div class="w-100 mb-0">
<h1 class="mb-0"> Xiang
<span class="text-primary">Chen</span>
</h1>
<div class="subheading mb-5">215 Glenbrook Rd, AUST #431 · Storrs, CT 06269 · (860) 486-3664 ·
<a href="mailto:xiang.chen@uconn.edu">xiang.chen@uconn.edu</a>
</div>
<p class="lead mb-3">I am an Associate Professor in the Department of Geography, Sustainability, Community and Urban Studies (GSCU) at the University of Connecticut, USA. My research interests are focused on <b>GIScience</b> and <b>community health</b>. I employ both data-driven and mixed-method approaches to understand critical health issues within urban communities.</p>
<p class="lead mb-5">My focus area is food access. I view food access beyond spatial concerns; it encompasses temporal and perceptual issues that manifest in residents' daily mobility and lived experiences. </p>
<div class="mb-5">
<a href="https://geography.uconn.edu/people/faculty/peter-chen/">
<button type="button" class="btn btn-outline-primary" style="margin-left:1.5em">UConn</button>
</a>
<a href="https://scholar.google.com/citations?user=wTmbK28AAAAJ&hl=en" target="_blank">
<button type="button" class="btn btn-outline-info" style="margin-left:1.5em">Google Scholar</button>
</a>
<a href="https://www.researchgate.net/profile/Xiang_Chen18?ev=hdr_xprf" target="_blank">
<button type="button" class="btn btn-outline-success" style="margin-left:1.5em">ResearchGate</button>
</a>
<a href="https://orcid.org/0000-0002-5045-9253" target="_blank">
<button type="button" class="btn btn-outline-warning" style="margin-left:1.5em">ORCID</button>
</a>
<a href="https://publons.com/researcher/1248605/xiang-chen/" target="_blank">
<button type="button" class="btn btn-outline-danger" style="margin-left:1.5em">Web of Science</button>
</a>
<a href="https://github.com/peterbest52" target="_blank">
<button type="button" class="btn btn-outline-secondary" style="margin-left:1.5em">GitHub</button>
</a>
</div>
</div>
</section>
<hr class="m-0">
<section class="resume-section p-3 p-lg-5 d-flex justify-content-center" id="education">
<div class="w-100">
<h2 class="mb-5">Employment</h2>
<div class="resume-item d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="resume-content">
<h3 class="mb-1">University of Connecticut</h3>
<div class="subheading mb-3">Department of Geography, Sustainability, Community and Urban Studies (GSCU)</div>
</div>
<div class="resume-date text-md-right">
<span class="text-primary">Associate Professor</span>
</div>
</div>
<div class="resume-item d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="resume-content">
<h3 class="mb-1">UConn Graduate School</h3>
<div class="subheading mb-1">Faculty Affiliate for Inclusive Excellence</div>
</div>
<div class="resume-date text-md-right">
<span class="text-primary">Faculty Affiliate</span>
</div>
</div>
<div class="resume-item d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="resume-content">
<h3 class="mb-1">UConn Research Centers</h3>
<div class="subheading mb-1">Institute for Collaboration on Health, Intervention, and Policy (InCHIP)</div>
<div class="subheading mb-1">Rudd Center for Food Policy and Health</div>
<div class="subheading mb-1">ARMS for Gun Injury Prevention </div>
<div class="subheading mb-3">Sustainable Global Cities Initiative (SGCI)</div>
</div>
<div class="resume-date text-md-right">
<span class="text-primary">Faculty Affiliate</span>
</div>
</div>
<h2 class="mb-5">Education</h2>
<div class="resume-item d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="resume-content">
<h3 class="mb-0">The Ohio State University</h3>
<div class="subheading mb-3">Ph.D. Geography</div>
</div>
<div class="resume-date text-md-right">
<!-- revise here for years of study -->
<!-- <span class="text-primary">2009 - 2014</span>-->
</div>
</div>
<div class="resume-item d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="resume-content">
<h3 class="mb-0">Beijing Normal University</h3>
<div class="subheading mb-3">M.S. Resource Science</div>
</div>
<div class="resume-date text-md-right">
<!-- revise here for years of study -->
<!-- <span class="text-primary">2007 - 2009</span>-->
</div>
</div>
<div class="resume-item d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="resume-content">
<h3 class="mb-0">Beijing Normal University</h3>
<div class="subheading mb-3">B.S. Resource Science</div>
</div>
<div class="resume-date text-md-right">
<!-- revise here for years of study -->
<!-- <span class="text-primary">2003 - 2007 </span> -->
</div>
</div>
</div>
</section>
<!-- This is an old section about COVID-19 research
<hr class="m-0">
<section class="resume-section p-3 p-lg-5 d-flex justify-content-center" id="covid19">
<div class="w-100">
<h2 class="mb-5">COVID-19 RESEARCH</h2>
<div class = "w-100">
<p class="lead mb-5">During the COVID-19 pandemic, I was heavily involved in related public health research and services. </p>
<h3 class="mb-3"> Case Modeling </h3>
<p class="lead mb-2"> We modeled COVID-19 spatial patterns and time series on different scales, including macro-scale time series analysis,<sup><span style = "color:red">[H 49]</span></sup> meso-scale simulations of containment policy effects,<sup><span style = "color:blue">[G 37]</span></sup> and micro-scale simulations of campus transmission.<sup><span style = "color:blue">[G 45]</span></sup></p>
<div class="mb-2"> <span style = "color:red"> [H 49]</span> <b>Chen X*</b>, Wang H, Lyu W, Xu R. (2022). The Mann-Kendall-Sneyers test to identify the change points of COVID-19 time series in the United States. <font color="black"><i>BMC Medical Research Methodology</i></font>, <i>22</i>, 233.
<a href = "https://bmcmedresmethodol.biomedcentral.com/articles/10.1186/s12874-022-01714-6" target="_blank">[Web]</a>
<a href = "https://trebuchet.public.springernature.app/get_content/3de114db-9baa-4d5b-82e4-087f45b5ca63" target="_blank">[PDF]</a>
</div>
<div class="mb-2"> <span style = "color:blue"> [G 45]</span> Liao C, <b>Chen X</b>, Zhuo L, Liu Y, Tao H, Burton C. (2022). Reopen schools safely: Simulating COVID-19 transmission on campus with a contact network agent-based model. <font color="black"><i>International Journal of Digital Earth</i></font>, <i>15</i>(1), 381–396.
<a href = "https://www.tandfonline.com/doi/full/10.1080/17538947.2022.2032419" target="_blank">[Web]</a>
<a href = "https://www.researchgate.net/publication/352896108_Reopen_Schools_Safely_Simulating_COVID-19_Transmission_on_Campus_With_a_Contact_Network_Agent-based_Model" target="_blank">[PDF]</a>
</div>
<div class="mb-5"> <span style = "color:blue"> [G 37]</span> <b>Chen X</b>, Zhang A, Wang H, Gallaher A, Zhu X. (2021). Compliance and containment in social distancing: mathematical modeling of COVID-19 across townships. <span
style="color: black; "><i>International Journal of Geographical Information Science</i></span>, <i>35</i>(3), 446–465.
<a href = "https://www.tandfonline.com/doi/full/10.1080/13658816.2021.1873999" target="_blank">[Web]</a>
<a href = "https://www.medrxiv.org/content/10.1101/2020.06.01.20119073v1.full.pdf" target="_blank">[PDF]</a>
<a href = "https://today.uconn.edu/2021/01/uconn-researcher-develops-town-level-model-for-covid-19-in-connecticut/" target="_blank">[News]</a>
</div>
<h3 class="mb-3"> Geovisualization </h3>
<p class="lead mb-2"> Our department develops a COVID-19 web map product at the town level for Connecticut: <a href = "http://covidct.org" target="_blank"><b>covidct.org</b></a>.</p>
<div class="mb-2"> <span style = "color:blue"> [G 54]</span> Adams A, <b>Chen X*</b>, Li W, Zhang C. (2023). Normalizing the pandemic: Exploring the cartographic issues in state government COVID-19 dashboards. <font color="black"><i>Journal of Maps</i></font>, <i>19</i>(1).
<a href = "https://www.tandfonline.com/doi/full/10.1080/17445647.2023.2235385" target="_blank">[Web]</a>
<a href = "https://www.researchgate.net/publication/372713341_Normalizing_the_pandemic_exploring_the_cartographic_issues_in_state_government_COVID-19_dashboards" target="_blank">[PDF]</a>
</div>
<div class="mb-5"> <span style = "color:red"> [H 31]</span> Adams A, Li W, Zhang C, <b>Chen X*</b>. (2020). The disguised pandemic: The importance of data normalization in COVID-19 web mapping. <font color="black"><i>Public Health</i></font>, <i>183</i>, 36-37. <a href = "https://www.sciencedirect.com/science/article/pii/S0033350620301396?via%3Dihub" target="_blank">[Web]</a> <a href = "#" target="_blank">[PDF]</a></div>
<div class="mb-5"> </div>
<h3 class="mb-3"> Health Inequity </h3>
<p class="lead mb-2"> We employ primary survey data and secondary health data to examine inequity issues arising from the pandemic, including vaccination and food access.</p>
<div class="mb-2"> <span style = "color:red"> [H 44]</span> <b>Chen X</b>, Wang H. (2021). On the rise of the new B.1.1.529 variant: Five dimensions of access to a COVID-19 vaccine. <font color="black"><i>Vaccine</i></font>, <i>40</i>(3), 403-405.
<a href = "https://www.sciencedirect.com/science/article/pii/S0264410X21015966?via%3Dihub" target="_blank">[Web]</a>
<a href = "https://www.researchgate.net/publication/357021988_On_the_rise_of_the_new_B11529_variant_Five_dimensions_of_access_to_a_COVID-19_vaccine" target="_blank">[PDF]</a>
</div>
<div class="mb-2"> <span style = "color:red"> [H 41]</span> Wang H, Xu R, Qu S, Schwartz M, Adams A, <b>Chen X*</b>. (2021). Health inequities in COVID-19 vaccination among the elderly: Case of Connecticut. <font color="black"><i>Journal of Infection and Public Health</i></font>, <i>14</i>(10), 1563-1565.
<a href = "https://www.sciencedirect.com/science/article/pii/S1876034121002008?via%3Dihub" target="_blank">[Web]</a>
<a href = "#" target="_blank">[PDF]</a>
</div>
<div class="mb-2"> <span style = "color:red"> [H 39]</span> Wang Y, <b>Chen X*</b>, Yang Y, Cui Y, Xu R. (2021). Risk perception and resource scarcity in food procurement during the early outbreak of COVID-19. <font color="black"><i>Public Health</i></font>, <i>195</i>, 152–157.
<a href = "https://www.sciencedirect.com/science/article/pii/S0033350621001669?dgcid=author" target="_blank">[Web]</a>
<a href = "https://www.researchgate.net/publication/351355641_Risk_perception_and_resource_scarcity_in_food_procurement_during_the_early_outbreak_of_COVID-19" target="_blank">[PDF]</a>
<a href = "https://www.sciencedirect.com/science/article/pii/S003335062100439X?via%3Dihub" target="_blank">[Erratum]</a>
</div>
<div class="mb-5"> <span style = "color:red"> [H 35]</span> Wang Y, Xu R, Schwartz M, Debarchana D, <b>Chen X*</b> (2020). COVID-19 and retail grocery management: Insights from a broad-based consumer survey. <font color="black"><i>IEEE Engineering Management Review</i></font>, <i>48</i>(3), 202–211. <a href = "https://ieeexplore.ieee.org/document/9146107/" target="_blank">[Web]</a> <a href = "https://ieeexplore.ieee.org/stamp/stamp.jsp?tp=&arnumber=9146107" target="_blank">[PDF]</a>
</div>
<h3 class="mb-3"> Tourism</h3>
<p class="lead mb-2"> We examine the impact of the coronavirus outbreak on tourism using econometric models and big data (e.g., mobile phone data, transaction data). These studies suggest policy initiatives to boost the tourism economy. </p>
<div class="mb-2"> <span style = "color:red"> [H 36]</span> Yang Y, Liu H, <b>Chen X</b>. (2020). COVID-19 and restaurant demand: early effects of the pandemic and stay-at-home orders. <font color="black"><i>International Journal of Contemporary Hospitality Management</i></font>, <i>13</i>(12), 3809–3834.
<a href = "https://www.emerald.com/insight/content/doi/10.1108/IJCHM-06-2020-0504/full/html" target="_blank">[Web]</a>
<a href = "https://www.researchgate.net/profile/Yang_Yang207/publication/345344294_COVID-19_and_restaurant_demand_Early_effects_of_the_pandemic_and_stay-at-home_orders/links/5fa4582b92851cc28698a79b/COVID-19-and-restaurant-demand-Early-effects-of-the-pandemic-and-stay-at-home-orders.pdf?_sg%5B0%5D=MdV9AEaFhXNFSvwOcn9at_CkqsmWa3-9BZg9V_1y5SQGa9abJA9o6QpZLwRP7Zve3_1jT8FUCGGZ1uBWE4b3xA.w2obSEwEjLxKC-qBnMsAnc3Gdq8zg42AqICKsBOQy1tRqrdzdGeVGoQesNAWazYIcj2LRe99r2GqGIoaYNsFyw&_sg%5B1%5D=ctakb9FZzEkzkaznaXrTQ_7XSmlx88mw07D8d9-uH2YwAFUTt5YQsseLWbFGXIpRlgD9yyp3IsD3qPr8f3mMI4hhHq5ZEHHgn8Jlw5_hdnja.w2obSEwEjLxKC-qBnMsAnc3Gdq8zg42AqICKsBOQy1tRqrdzdGeVGoQesNAWazYIcj2LRe99r2GqGIoaYNsFyw&_iepl=" target="_blank">[PDF]</a>
<a href = "https://sthm.temple.edu/all-sthm-school-news/restaurant-resilience-index/" target="_blank">[News]</a>
</div>
<div class="mb-5"> <span style = "color:red"> [H 30]</span> Yang Y, Zhang H, <b>Chen X</b>. (2020). Coronavirus pandemic and tourism: Dynamic stochastic general equilibrium modeling of infectious disease outbreak. <font color="black"><i>Annals of Tourism Research</i></font>, <i>83</i>, 102913.
<a href = "https://www.sciencedirect.com/science/article/pii/S0160738320300578?via%3Dihub" target="_blank">[Web]</a>
<a href = "https://www.researchgate.net/profile/Yang_Yang207/publication/340210490_Coronavirus_pandemic_and_tourism_Dynamic_stochastic_general_equilibrium_modeling_of_infectious_disease_outbreak/links/5e7d32ad299bf1a91b7efe68/Coronavirus-pandemic-and-tourism-Dynamic-stochastic-general-equilibrium-modeling-of-infectious-disease-outbreak.pdf" target="_blank">[PDF]</a>
<a href = "https://sthm.temple.edu/faculty/post-coronavirus-vouchers-tourism/" target="_blank">[News]</a>
</div>
</div>
</div>
</section>
-->
<hr class="m-0">
<section class="resume-section p-3 p-lg-5 d-flex align-items-center" id="publications">
<div class="w-100">
<h2 class="mb-3">Publications</h2>
<div class="resume-date text-md-right">
<span style = "color:blue">[<b>G</b>IS]</span><br>
<span style = "color:red; margin-left:1.5em">[<b>H</b>ealth]</span><br>
<span style = "color:green; margin-left:1.5em">[<b>O</b>ther]</span>
</div>
<div class="resume-item d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="resume-content">
<h3 class="mb-0">Peer-review Journal</h3>
<div class="subheading mb-3">* Corresponding Author</div>
<div class="mb-2"> <span style = "color:red"> [H 61]</span> Kim K, Yao J, Jacobs Jr D, Martin R, van Donkelaar A, Su W, Zhang C, <b>Chen X</b>, Murthy V, Zhang X, Lloyd-Jones D, Hou L, Zhang, K (2024). Associations of exposure to PM2. 5 and its compounds with carotid intima-media thickness among middle-aged adults. <font color="black"><i>The Science of the Total Environment</i></font>, 177098.
<a href = "https://www.sciencedirect.com/science/article/pii/S0048969724072553?dgcid=coauthor" target="_blank">[Web]</a>
<a href = "https://www.researchgate.net/publication/385280686_Associations_of_exposure_to_PM25_and_its_compounds_with_carotid_intima-media_thickness_among_middle-aged_adults" target="_blank">[PDF]</a>
</div>
<br>
<div class="mb-2"> <span style = "color:blue"> [G 60]</span> Cui C, Han Z, Liu F, Ma J, Wang H, <b>Chen X</b> (2024). Improving service accessibility and equity for sustainable development goals without newly facilities by rural settlement reconstruction. <font color="black"><i>Geography and Sustainability</i></font>, <i>In Press</i>.
<a href = "https://www.sciencedirect.com/science/article/pii/S2666683924000683" target="_blank">[Web]</a>
<a href = "https://www.sciencedirect.com/science/article/pii/S2666683924000683/pdfft?md5=711f572bc35b8b0da855c26336aeba3b&pid=1-s2.0-S2666683924000683-main.pdf" target="_blank">[PDF]</a>
</div>
<br>
<div class="mb-2"> <span style = "color:blue"> [G 59]</span> Miao C, <b>Chen X*</b>, Zhang C. (2024). Assessing network-based traffic crash risk using prospective space-time scan statistic method. <font color="black"><i>Journal of Transport Geography</i></font>, <i>119</i>, 103958.
<a href = "https://www.sciencedirect.com/science/article/pii/S0966692324001674?casa_token=0GGrdf7IwDMAAAAA:j_5CTyTsmli4AuLCqGb-tnOqA9AQyUodCJtfkBWj8BXFwAKVww6kEReskn4mkhaajW07HRIo" target="_blank">[Web]</a>
<a href = "https://www.researchgate.net/publication/382765085_Assessing_network-based_traffic_crash_risk_using_prospective_space-time_scan_statistic_method?_sg%5B0%5D=cqYRKH3qQpl38NScLLyr_c-FH2fDcUY6SDCEnsl1dkMRrbZ2mz2nuy9t94Q-CnLNBJ3m2gHxG7U57JAJAJWe-kZTBp36eZxEbSZBJQPa.d7Dtu3WD3yJu1HCW8qCB9F8aclCfynY_Kb8WVnGCpaavwCeXlpLFZGwPwwt1VBObsYG0GU_q7eMWrfXz044mJw&_tp=eyJjb250ZXh0Ijp7ImZpcnN0UGFnZSI6ImxvZ2luIiwicGFnZSI6InByb2ZpbGUiLCJwcmV2aW91c1BhZ2UiOiJwcm9maWxlIiwicG9zaXRpb24iOiJwYWdlQ29udGVudCJ9fQ" target="_blank">[PDF]</a>
</div>
<br>
<div class="mb-2"> <span style = "color:blue"> [G 58]</span> Din A, <b>Chen X*</b>. (2023). Leveraging accessibility modeling to improve housing equity for low-income renters: A case study in Bridgeport, Connecticut. <font color="black"><i>Cities</i></font>, <i>147</i>, 104763.
<a href = "https://www.sciencedirect.com/science/article/abs/pii/S0264275123005759" target="_blank">[Web]</a>
<a href = "https://www.researchgate.net/publication/377530295_Leveraging_accessibility_modeling_to_improve_housing_equity_for_low-income_assisted_renters_A_case_study_in_Bridgeport_Connecticut" target="_blank">[PDF]</a>
</div>
<br>
<div class="mb-2"> <span style = "color:red"> [H 57]</span> Xu R, Huang X, Zhang K, Lyu W, Ghosh D, Li Z, <b>Chen X*</b>. (2023) Activity-integrated food environment measures can predict cardiometabolic disorders in the United States. <font color="black"><i>Nature Communications</i></font>, <i>14</i>(7326).
<a href = "https://www.nature.com/articles/s41467-023-42667-8?utm_source=rct_congratemailt&utm_medium=email&utm_campaign=oa_20231113&utm_content=10.1038/s41467-023-42667-8" target="_blank">[Web]</a>
<a href = "https://www.researchgate.net/profile/Xiang-Chen-29/publication/375604635_Integrating_human_activity_into_food_environments_can_better_predict_cardiometabolic_diseases_in_the_United_States/links/65525eb7b1398a779d879bdc/Integrating-human-activity-into-food-environments-can-better-predict-cardiometabolic-diseases-in-the-United-States.pdf?origin=publicationDetail&_sg%5B0%5D=AenPWXlzqtFP78y5KMOupAA_pgtpLZlK3WbAmtRsUFdI7MvmKLClkfdoDf3Qp24dKw5Ooep8wtXF2lRuy3zg8w.Wzuir8UjpAtlz82RvoYiWeQae6jlts_r_ErNHzZOO5cN_ezrxMsr-hcX0SGoIlls4LqwhjyzFvBuOz32So6kLA&_sg%5B1%5D=l-JqK5af2OP3jTi5P86-LKvvop9vT8gCtTM4rfBjKXMSz0d2Q7LwPi4tB0SKDwPF8Q7kKyEgCekL59rkEKDr5FE1k9hHKvJaAHT30DoYPwSh.Wzuir8UjpAtlz82RvoYiWeQae6jlts_r_ErNHzZOO5cN_ezrxMsr-hcX0SGoIlls4LqwhjyzFvBuOz32So6kLA&_iepl=&_rtd=eyJjb250ZW50SW50ZW50IjoibWFpbkl0ZW0ifQ%3D%3D&_tp=eyJjb250ZXh0Ijp7ImZpcnN0UGFnZSI6Il9kaXJlY3QiLCJwYWdlIjoicHVibGljYXRpb24iLCJwcmV2aW91c1BhZ2UiOiJfZGlyZWN0IiwicG9zaXRpb24iOiJwYWdlSGVhZGVyIn19" target="_blank">[PDF]</a>
<a href = "https://www.nature.com/articles/d41586-023-03617-y" target="_blank">[Nature News]</a>
<a href = "https://today.uconn.edu/2023/11/nationwide-study-redefines-how-food-environment-impacts-cardiometabolic-diseases/" target="_blank">[UConn News]</a>
</div>
<br>
<div class="mb-2"> <span style = "color:red"> [H 56]</span> Lyu W, Seok N, <b>Chen X</b>, Xu R. (2023). Using crowdsourced food image data for assessing restaurant nutrition environment: A validation study. <font color="black"><i>Nutrients</i></font>, <i>15</i>(19), 4287.
<a href = "https://www.mdpi.com/2072-6643/15/19/4287" target="_blank">[Web]</a>
<a href = "https://nam10.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.mdpi.com%2F2072-6643%2F15%2F19%2F4287%2Fpdf&data=05%7C01%7Cpeter.chen%40uconn.edu%7C378e8df4a033464b0def08dbc7cecafd%7C17f1a87e2a254eaab9df9d439034b080%7C0%7C0%7C638323463344307613%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=EjwK5NMZNuVadP%2Fd9aztmTO3uUuhKRA5KapwpyiE%2BsQ%3D&reserved=0" target="_blank">[PDF]</a>
</div>
<br>
<div class="mb-2"> <span style = "color:blue"> [G 55]</span> Li L, Li Q, Pei Z, Hao F, <b>Chen X</b>, Chen J. (2023). Identifying tourism attractiveness based on intra-destination tourist behaviors: Evidence from Wi-Fi data. <font color="black"><i>Current Issues in Tourism</i></font>, 1–19.
<a href = "https://doi.org/10.1080/13683500.2023.2252562" target="_blank">[Web]</a>
<a href = "https://www.researchgate.net/publication/373691903_Identifying_tourism_attractiveness_based_on_intra-destination_tourist_behaviour_evidence_from_Wi-Fi_data" target="_blank">[PDF]</a>
</div>
<br>
<div class="mb-2"> <span style = "color:blue"> [G 54]</span> Adams A, <b>Chen X*</b>, Li W, Zhang C. (2023). Normalizing the pandemic: Exploring the cartographic issues in state government COVID-19 dashboards. <font color="black"><i>Journal of Maps</i></font>, <i>19</i>(1).
<a href = "https://www.tandfonline.com/doi/full/10.1080/17445647.2023.2235385" target="_blank">[Web]</a>
<a href = "https://www.researchgate.net/publication/372713341_Normalizing_the_pandemic_exploring_the_cartographic_issues_in_state_government_COVID-19_dashboards" target="_blank">[PDF]</a>
</div>
<br>
<div class="mb-2"> <span style = "color:blue"> [G 53]</span> Yang Y, <b>Chen X</b> (co-first author), Gao S, Li Z, Zhang Z, Zhao B. (2023). Embracing geospatial analytical technologies in tourism studies. <font color="black"><i>Information Technology & Tourism</i></font>, <i>25</i>, 137–150.
<a href = "https://link.springer.com/article/10.1007/s40558-023-00249-w" target="_blank">[Web]</a>
<a href = "https://rdcu.be/daiYD" target="_blank">[PDF]</a>
</div>
<br>
<div class="mb-2"> <span style = "color:blue"> [G 52]</span> Han Z, Cui C, Kong Y, Li Q, Chen Y, <b>Chen X</b>. (2023). Improving educational equity by maximizing service coverage in rural Changyuan, China: An evaluation-optimization-validation framework based on spatial accessibility to schools. <font color="black"><i>Applied Geography</i></font>, <i>152</i>, 102891.
<a href = "https://www.sciencedirect.com/science/article/pii/S014362282300022X?via%3Dihub" target="_blank">[Web]</a>
<a href = "https://www.sciencedirect.com/science/article/pii/S014362282300022X/pdfft?md5=bd54ac6a1196345de33afe5c2375b179&pid=1-s2.0-S014362282300022X-main.pdf" target="_blank">[PDF]</a>
</div>
<br>
<div class="mb-2"> <span style = "color:red"> [H 51]</span> Jin A, <b>Chen X</b>, Huang X, Li Z, Caspi CE, Xu R. (2023). Selective daily mobility bias in the community food environment: Case study of Greater Hartford, Connecticut. <font color="black"><i>Nutrients</i></font>, <i>15</i>(2), 404.
<a href = "https://www.mdpi.com/2072-6643/15/2/404" target="_blank">[Web]</a>
<a href = "https://www.mdpi.com/2072-6643/15/2/404/pdf?version=1673588117" target="_blank">[PDF]</a>
</div>
<br>
<div class="mb-2"> <span style = "color:blue"> [G 50]</span> <b>Chen X*</b>, Ye X, Widener M, Delmelle E, Kwan M, Shannon J, Racine EF, Adams A, Liang L, Jia P. (2022). A systematic review of the modifiable areal unit problem (MAUP) in community food environmental research. <font color="black"><i>Urban Informatics</i></font>, <i>1</i>(1), 22.
<a href = "https://link.springer.com/article/10.1007/s44212-022-00021-1" target="_blank">[Web]</a>
<a href = "https://link.springer.com/content/pdf/10.1007/s44212-022-00021-1.pdf?pdf=button%20sticky" target="_blank">[PDF]</a>
</div>
<br>
<div class="mb-2"> <span style = "color:red"> [H 49]</span> <b>Chen X*</b>, Wang H, Lyu W, Xu R. (2022). The Mann-Kendall-Sneyers test to identify the change points of COVID-19 time series in the United States. <font color="black"><i>BMC Medical Research Methodology</i></font>, <i>22</i>, 233.
<a href = "https://bmcmedresmethodol.biomedcentral.com/articles/10.1186/s12874-022-01714-6" target="_blank">[Web]</a>
<a href = "https://trebuchet.public.springernature.app/get_content/3de114db-9baa-4d5b-82e4-087f45b5ca63" target="_blank">[PDF]</a>
</div>
<br>
<div class="mb-2"> <span style = "color:blue"> [G 48]</span> Li L, <b>Chen X</b>, Zhang L, Qiang L, Yang Y, Chen J. (2022). Space-time tourist flow patterns in community-based tourism: An application of the empirical orthogonal function to Wi-Fi data. <font color="black"><i>Current Issues in Tourism</i></font>, <i>26</i>(18), 3004-3022.
<a href = "https://www.tandfonline.com/doi/full/10.1080/13683500.2022.2106826" target="_blank">[Web]</a>
<a href = "https://www.researchgate.net/publication/362653150_Space-time_tourist_flow_patterns_in_community-based_tourism_an_application_of_the_empirical_orthogonal_function_to_Wi-Fi_data" target="_blank">[PDF]</a>
</div>
<br>
<div class="mb-2"> <span style = "color:blue"> [G 47]</span> <b>Chen X*</b>, Zhao B, Yang X. (2022). The obesogenity of restaurant food: Mapping the nutritional foodscape of Franklin County, Ohio using food review images. <font color="black"><i>Applied Geography</i></font>, <i>144</i>, 102717.
<a href = "https://www.sciencedirect.com/science/article/abs/pii/S0143622822000881?via%3Dihub" target="_blank">[Web]</a>
<a href = "https://www.researchgate.net/publication/360639253_The_obesogenity_of_restaurant_food_Mapping_the_nutritional_foodscape_of_Franklin_County_Ohio_using_food_review_images" target="_blank">[PDF]</a>
</div>
<br>
<div class="mb-2"> <span style = "color:blue"> [G 46]</span> Cui Y, <b>Chen X*</b>, Chen X, Zhang C. (2022). Competition, integration, or complementation? Exploring the role of dock-based bike-sharing in New York City. <font color="black"><i>The Professional Geographer</i></font>, <i>75</i>(1), 65–75.
<a href = "https://www.tandfonline.com/doi/full/10.1080/00330124.2022.2081224" target="_blank">[Web]</a>
<a href = "https://www.researchgate.net/publication/362332549_Competition_Integration_or_Complementation_Exploring_Dock-Based_Bike-Sharing_in_New_York_City" target="_blank">[PDF]</a>
</div>
<br>
<div class="mb-2"> <span style = "color:blue"> [G 45]</span> Liao C, <b>Chen X</b>, Zhuo L, Liu Y, Tao H, Burton C. (2022). Reopen schools safely: Simulating COVID-19 transmission on campus with a contact network agent-based model. <font color="black"><i>International Journal of Digital Earth</i></font>, <i>15</i>(1), 381–396.
<a href = "https://www.tandfonline.com/doi/full/10.1080/17538947.2022.2032419" target="_blank">[Web]</a>
<a href = "https://www.researchgate.net/publication/352896108_Reopen_Schools_Safely_Simulating_COVID-19_Transmission_on_Campus_With_a_Contact_Network_Agent-based_Model" target="_blank">[PDF]</a>
</div>
<br>
<div> <span style = "color:red"> [H 44]</span> <b>Chen X</b>, Wang H. (2021). On the rise of the new B.1.1.529 variant: Five dimensions of access to a COVID-19 vaccine. <font color="black"><i>Vaccine</i></font>, <i>40</i>(3), 403-405.
<a href = "https://www.sciencedirect.com/science/article/pii/S0264410X21015966?via%3Dihub" target="_blank">[Web]</a>
<a href = "https://www.researchgate.net/publication/357021988_On_the_rise_of_the_new_B11529_variant_Five_dimensions_of_access_to_a_COVID-19_vaccine" target="_blank">[PDF]</a>
</div>
<br>
<div> <span style = "color:red"> [H 43]</span> <b>Chen X</b>, Johnson E, Kulkarni A, Ding C, Ranelli N, Chen Y, Xu R. (2021). An exploratory approach to deriving nutrition information of restaurant food from crowdsourced food images: Case of Hartford. <font color="black"><i>Nutrients</i></font>, <i>13</i>(11), 4132.
<a href = "https://www.mdpi.com/2072-6643/13/11/4132/htm" target="_blank">[Web]</a>
<a href = "https://nam10.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.mdpi.com%2F2072-6643%2F13%2F11%2F4132%2Fpdf&data=04%7C01%7C%7C45edd109c71c4304c2ba08d9aa9e3175%7C17f1a87e2a254eaab9df9d439034b080%7C0%7C0%7C637728418712340649%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&sdata=Xv3Cs%2FD60oasMp4RZYrSO7OEKj6fe8RMZa%2FVunHApqA%3D&reserved=0" target="_blank">[PDF]</a>
</div>
<br>
<div> <span style = "color:blue"> [G 42]</span> Han Z, Kong Y, Cui C, Wang J, Li Q, <b>Chen X</b>. (2022). TiGrid: A raster-based method for time interval information representation with geotagged videos as an example. <font color="black"><i>Transactions in GIS</i></font>, <i>28</i>(1), 362-384.
<a href = "https://onlinelibrary.wiley.com/doi/epdf/10.1111/tgis.12853" target="_blank">[Web]</a>
</div>
<br>
<div> <span style = "color:red"> [H 41]</span> Wang H, Xu R, Qu S, Schwartz M, Adams A, <b>Chen X*</b>. (2021). Health inequities in COVID-19 vaccination among the elderly: Case of Connecticut. <font color="black"><i>Journal of Infection and Public Health</i></font>, <i>14</i>(10), 1563-1565.
<a href = "https://www.sciencedirect.com/science/article/pii/S1876034121002008?via%3Dihub" target="_blank">[Web]</a>
<a href = "#" target="_blank">[PDF]</a>
</div>
<br>
<div> <span style = "color:blue"> [G 40]</span> Li L, <b>Chen X</b> (co-first author), Li Q, Tan X, Chen J, Wang D, Jia P. (2021). Contextualizing human dynamics: Understanding the semantics of movement trajectories with Wi-Fi data. <font color="black"><i>Travel Behaviour and Society</i></font>, <i>25</i>, 183–192.
<a href = "https://www.sciencedirect.com/science/article/pii/S2214367X21000673?dgcid=coauthor" target="_blank">[Web]</a>
<a href = "https://www.researchgate.net/profile/Xiang-Chen-29/publication/353548649_Contextualizing_human_dynamics_Understanding_the_semantics_of_movement_trajectories_with_Wi-Fi_data/links/61026f9b1ca20f6f86e6bc3d/Contextualizing-human-dynamics-Understanding-the-semantics-of-movement-trajectories-with-Wi-Fi-data.pdf?_sg%5B0%5D=gt_V-c_mAqNPYVavZeN62oocXeHLnA5JLLFM3RGixG9J3ESbATY-ne9v1TlcF_k6RRewritUWE1Dlo75apLTbw.N5u9bZD7Oy_a51hc8ny7iGvLESKdZZP7jZxMlOM607kVtzc-e2M5MRrEDdXOp836KpU9NXQkj3ZCE6fh2E_vYg&_sg%5B1%5D=SRlgoHX1XnTg-7pEX5zpN4cDTWGhkzalhlwqbVjjDpwwcFhkrbp-bu9LnRubhX5OieahOvakfl7ZxSDgrv-6VzSjhtkawduAql_ge_uKv1-g.N5u9bZD7Oy_a51hc8ny7iGvLESKdZZP7jZxMlOM607kVtzc-e2M5MRrEDdXOp836KpU9NXQkj3ZCE6fh2E_vYg&_iepl=" target="_blank">[PDF]</a>
</div>
<br>
<div> <span style = "color:red"> [H 39]</span> Wang Y, <b>Chen X*</b>, Yang Y, Cui Y, Xu R. (2021). Risk perception and resource scarcity in food procurement during the early outbreak of COVID-19. <font color="black"><i>Public Health</i></font>, <i>195</i>, 152–157.
<a href = "https://www.sciencedirect.com/science/article/pii/S0033350621001669?dgcid=author" target="_blank">[Web]</a>
<a href = "https://www.researchgate.net/publication/351355641_Risk_perception_and_resource_scarcity_in_food_procurement_during_the_early_outbreak_of_COVID-19" target="_blank">[PDF]</a>
<a href = "https://www.sciencedirect.com/science/article/pii/S003335062100439X?via%3Dihub" target="_blank">[Erratum]</a>
</div>
<br>
<div> <span style = "color:blue"> [G 38]</span> Xiao Y, <b>Chen X</b>, Li Q, Jia P, Li L, Chen Z. (2021). Towards Healthy China 2030: Modeling health care accessibility with patient referral. <font color="black"><i>Social Science & Medicine</i></font>, <i>276</i>, 113834.
<a href = "https://www.sciencedirect.com/science/article/pii/S0277953621001660" target="_blank">[Web]</a>
<a href = "https://www.researchgate.net/publication/350044434_Towards_Healthy_China_2030_Modeling_health_care_accessibility_with_patient_referral" target="_blank">[PDF]</a>
</div>
<br>
<div> <span style = "color:blue"> [G 37]</span> <b>Chen X</b>, Zhang A, Wang H, Gallaher A, Zhu X. (2021). Compliance and containment in social distancing: mathematical modeling of COVID-19 across townships. <font color="black"><i>International Journal of Geographical Information Science</i></font>, <i>35</i>(3), 446–465.
<a href = "https://www.tandfonline.com/doi/full/10.1080/13658816.2021.1873999" target="_blank">[Web]</a>
<a href = "https://www.medrxiv.org/content/10.1101/2020.06.01.20119073v1.full.pdf" target="_blank">[PDF]</a>
<a href = "https://today.uconn.edu/2021/01/uconn-researcher-develops-town-level-model-for-covid-19-in-connecticut/" target="_blank">[News]</a>
</div>
<br>
<div> <span style = "color:red"> [H 36]</span> Yang Y, Liu H, <b>Chen X</b>. (2020). COVID-19 and restaurant demand: early effects of the pandemic and stay-at-home orders. <font color="black"><i>International Journal of Contemporary Hospitality Management</i></font>, <i>13</i>(12), 3809–3834.
<a href = "https://www.emerald.com/insight/content/doi/10.1108/IJCHM-06-2020-0504/full/html" target="_blank">[Web]</a>
<a href = "https://www.researchgate.net/profile/Yang_Yang207/publication/345344294_COVID-19_and_restaurant_demand_Early_effects_of_the_pandemic_and_stay-at-home_orders/links/5fa4582b92851cc28698a79b/COVID-19-and-restaurant-demand-Early-effects-of-the-pandemic-and-stay-at-home-orders.pdf?_sg%5B0%5D=MdV9AEaFhXNFSvwOcn9at_CkqsmWa3-9BZg9V_1y5SQGa9abJA9o6QpZLwRP7Zve3_1jT8FUCGGZ1uBWE4b3xA.w2obSEwEjLxKC-qBnMsAnc3Gdq8zg42AqICKsBOQy1tRqrdzdGeVGoQesNAWazYIcj2LRe99r2GqGIoaYNsFyw&_sg%5B1%5D=ctakb9FZzEkzkaznaXrTQ_7XSmlx88mw07D8d9-uH2YwAFUTt5YQsseLWbFGXIpRlgD9yyp3IsD3qPr8f3mMI4hhHq5ZEHHgn8Jlw5_hdnja.w2obSEwEjLxKC-qBnMsAnc3Gdq8zg42AqICKsBOQy1tRqrdzdGeVGoQesNAWazYIcj2LRe99r2GqGIoaYNsFyw&_iepl=" target="_blank">[PDF]</a>
<a href = "https://sthm.temple.edu/all-sthm-school-news/restaurant-resilience-index/" target="_blank">[News]</a>
</div>
<br>
<div> <span style = "color:red"> [H 35]</span> Wang Y, Xu R, Schwartz M, Ghosh D, <b>Chen X*</b> (2020). COVID-19 and retail grocery management: Insights from a broad-based consumer survey. <font color="black"><i>IEEE Engineering Management Review</i></font>, <i>48</i>(3), 202–211. <a href = "https://ieeexplore.ieee.org/document/9146107/" target="_blank">[Web]</a> <a href = "https://ieeexplore.ieee.org/stamp/stamp.jsp?tp=&arnumber=9146107" target="_blank">[PDF]</a></div>
<br>
<div> <span style = "color:red"> [H 34]</span> Yang S, <b>Chen X</b> (co-first author), Wang L,..., Jia P. (2021). Walkability indices and childhood obesity: A review of epidemiologic evidence. <font color="black"><i>Obesity Reviews</i></font>, <i>22</i>(S1), e13096. <a href = "https://onlinelibrary.wiley.com/doi/full/10.1111/obr.13096" target="_blank">[Web]</a> <a href = "https://www.researchgate.net/profile/Xiang_Chen18/publication/343261235_Walkability_indices_and_childhood_obesity_A_review_of_epidemiologic_evidence/links/5f206ead299bf1720d6b1a30/Walkability-indices-and-childhood-obesity-A-review-of-epidemiologic-evidence.pdf?_sg%5B0%5D=hLuqPIrkdZWZJjkWEsLuGWkUIHMOt5pKygqlQYm-aN3nrkOm5B2jL_28zduqs1-AQ878IdFA6KDjdOYLBxtHzw.dOXmhog5JqwiiejxrjmEt6cZqmc21GzReP7k7gDxd2R5O3UTTkULnewm8sGH4baJ0jNRO8Qjk5P8f7QWLG7ADA&_sg%5B1%5D=OziBcb33SvZrpUkRJ6fh-gtxC7zO6ZscOi7uHD5CGvh5qPsbngYV0LNrd-dLmpylrDLcJOkTdIc9NPX-kbAAg4OXKUkwYCZbWlSZssy-LjtP.dOXmhog5JqwiiejxrjmEt6cZqmc21GzReP7k7gDxd2R5O3UTTkULnewm8sGH4baJ0jNRO8Qjk5P8f7QWLG7ADA&_iepl=" target="_blank">[PDF]</a></div>
<br>
<div> <span style = "color:red"> [H 33]</span> Mei K, Hung H, Fang X, Hong A, <b>Chen X</b>,..., Jia P. (2020). State-of-the-art of measures of the obesogenic environment for children. <font color="black"><i>Obesity Reviews</i></font>, <i>22</i>(S1), e13093. <a href = "https://onlinelibrary.wiley.com/doi/full/10.1111/obr.13093" target="_blank">[Web]</a> <a href = "https://www.researchgate.net/profile/Xiang_Chen18/publication/343287775_State-of-the-art_of_measures_of_the_obesogenic_environment_for_children/links/5f218a3da6fdcccc43966a37/State-of-the-art-of-measures-of-the-obesogenic-environment-for-children.pdf?_sg%5B0%5D=ng1bakzY6JVeHumGZewZFZy_G-EDx8yGn_LrC-MDZ_QKA89BLQ1EQMQxx0PSR3b6miKpN9svc-LXRBeUs9CJkA.uOnkFrSzAg80PeSbQkzf486bUZXkXUStciF7mzedBM84oJYXZJiJADX5lWR-vqPY0IJvbQXuHDpSZV_7fuFWTg&_sg%5B1%5D=pQmmkV4gk37pu9jPeJ5qaFxJD__je89Ks9HKSaTlbJ7NdMYSIRnyCXYTFo_RZ7GmU9R7oo9p15yHsohLxmejrarlN0a0kPus7VGdySxhuDca.uOnkFrSzAg80PeSbQkzf486bUZXkXUStciF7mzedBM84oJYXZJiJADX5lWR-vqPY0IJvbQXuHDpSZV_7fuFWTg&_iepl=" target="_blank">[PDF]</a></div>
<br>
<div> <span style = "color:green"> [O 32]</span> Yang B, <b>Chen X</b>, Wang Z, Li W, Zhang C, Yao X. (2020). Analyzing land use structure efficiency with carbon emissions: A case study in the Middle Reaches of the Yangtze River, China. <font color="black"><i>Journal of Cleaner Production</i></font>, <i>274</i>, 123076. <a href = "https://www.sciencedirect.com/science/article/abs/pii/S0959652620331218?via%3Dihub" target="_blank">[Web]</a> <a href = "https://www.researchgate.net/profile/Xiang_Chen18/publication/343015333_Analyzing_land_use_structure_efficiency_with_carbon_emissions_A_case_study_in_the_Middle_Reaches_of_the_Yangtze_River_China/links/5f243b4892851cd302cbb083/Analyzing-land-use-structure-efficiency-with-carbon-emissions-A-case-study-in-the-Middle-Reaches-of-the-Yangtze-River-China.pdf?_sg%5B0%5D=4YxDoLK8uXYkqqXRtK1pV7kBdTeaCZdDiiDMvp2V4Lv2Gcw1YVW5qCAIME3pjWVTTecAbqoijZTBiMVyTWd81A.Vrst2XVjsYJgBtS9fScxdwcuLc1b40GYfUy5Mf7iZQ-tKGIIAHNk0mL9M-3ydeDDihjog4TSA9KbP-vDh6x8Iw&_sg%5B1%5D=WNr7KaGAAOWLN3brcqqZTt1MvqDcmDgVBpf5Itgsf63QY-fopb0B3CI5mA55MjnbbNRM4GBbwiLg56toIne8A1PW0rtWgYv0iGF3YyADSXrd.Vrst2XVjsYJgBtS9fScxdwcuLc1b40GYfUy5Mf7iZQ-tKGIIAHNk0mL9M-3ydeDDihjog4TSA9KbP-vDh6x8Iw&_sg%5B2%5D=xqMh6tMpeP2XXa4e-Am16zJT37xy953CkfwGMqNloDG6VKqRuBQVIL58AapDyXk2PcDial3wyQlJZsM.aZE0uLrT0kWxIdK6A4gPE4mS8XeoaMTT77JdXdlINV2enQnN-QjDj6rq3bw-E8e6boj6lZFeNC2E1U1iUJkx7A&_iepl=" target="_blank">[PDF]</a></div>
<br>
<div> <span style = "color:red"> [H 31]</span> Adams A, Li W, Zhang C, <b>Chen X*</b>. (2020). The disguised pandemic: The importance of data normalization in COVID-19 web mapping. <font color="black"><i>Public Health</i></font>, <i>183</i>, 36–37. <a href = "https://www.sciencedirect.com/science/article/pii/S0033350620301396?via%3Dihub" target="_blank">[Web]</a> <a href = "https://www.sciencedirect.com/science/article/pii/S0033350620301396/pdfft?md5=9bc341834baa346a8108b4004e005f9e&pid=1-s2.0-S0033350620301396-main.pdf" target="_blank">[PDF]</a></div>
<br>
<div> <span style = "color:red"> [H 30]</span> Yang Y, Zhang H, <b>Chen X</b>. (2020). Coronavirus pandemic and tourism: Dynamic stochastic general equilibrium modeling of infectious disease outbreak. <font color="black"><i>Annals of Tourism Research</i></font>, <i>83</i>, 10291.
<a href = "https://www.sciencedirect.com/science/article/pii/S0160738320300578?via%3Dihub" target="_blank">[Web]</a>
<a href = "https://www.researchgate.net/profile/Yang_Yang207/publication/340210490_Coronavirus_pandemic_and_tourism_Dynamic_stochastic_general_equilibrium_modeling_of_infectious_disease_outbreak/links/5e7d32ad299bf1a91b7efe68/Coronavirus-pandemic-and-tourism-Dynamic-stochastic-general-equilibrium-modeling-of-infectious-disease-outbreak.pdf" target="_blank">[PDF]</a>
<a href = "https://sthm.temple.edu/faculty/post-coronavirus-vouchers-tourism/" target="_blank">[News]</a>
</div>
<br>
<div> <span style = "color:red"> [H 29]</span> Xu F, Jin L, Qin Z, <b>Chen X</b>,…, Jia P. (2021). Access to public transport and childhood obesity: A systematic review. <font color="black"><i>Obesity Reviews</i></font>, <i>22</i>(S1), e12987. <a href = "https://onlinelibrary.wiley.com/doi/full/10.1111/obr.12987" target="_blank">[Web]</a> <a href = "https://onlinelibrary.wiley.com/doi/pdf/10.1111/obr.12987" target="_blank">[PDF]</a></div>
<br>
<div> <span style = "color:red"> [H 28]</span> Jia P, Liang L, Tan X, Chen J, <b>Chen X*</b>. (2019). Potential effects of heat waves on the population dynamics of the dengue mosquito Aedes albopictus. <font color="black"><i>PLOS Neglected Tropical Diseases</i></font>, <i>13</i>(7). <a href = "https://journals.plos.org/plosntds/article?id=10.1371/journal.pntd.0007528" target="_blank">[Web]</a> <a href = "https://journals.plos.org/plosntds/article/file?id=10.1371/journal.pntd.0007528&type=printable" target="_blank">[PDF]</a></div>
<br>
<div> <span style = "color:blue"> [G 27]</span> <b>Chen X*</b>, Jia P. (2019). A comparative analysis of accessibility measures by the two-step floating catchment area (2SFCA) method. <font color="black"><i>International Journal of Geographical Information Science</i></font>, <i>33</i>(9), 1739-1758. <a href = "https://www.tandfonline.com/doi/abs/10.1080/13658816.2019.1591415?journalCode=tgis20" target="_blank">[Web]</a> <a href = "https://www.researchgate.net/publication/331983906_A_Comparative_Analysis_of_Accessibility_Measures_by_the_Two-Step_Floating_Catchment_Area_2SFCA_Method" target="_blank">[PDF]</a></div>
<br>
<div> <span style = "color:red"> [H 26]</span> <b>Chen X*</b>. (2019). Enhancing the two-step floating catchment area model for community food access mapping: Case of Supplemental Nutrition Assistance Program. <font color="black"><i>The Professional Geographer</i></font>, <i>71</i>(4), 668–680. <a href = "https://www.tandfonline.com/doi/abs/10.1080/00330124.2019.1578978?journalCode=rtpg20" target="_blank">[Web]</a></div>
<br>
<div> <span style = "color:blue"> [G 25]</span> Wang D, Li L, Hu C, Li Q, <b>Chen X</b>, Huang P. (2019). A modified inverse distance weighting method for interpolation in open public places based on Wi-Fi probe data. <font color="black"><i>Journal of Advanced Transportation</i></font>, 7602792. <a href = "https://www.hindawi.com/journals/jat/2019/7602792/" target="_blank">[Web]</a> <a href = "http://downloads.hindawi.com/journals/jat/2019/7602792.pdf" target="_blank">[PDF]</a></div>
<br>
<div> <span style = "color:blue"> [G 24]</span> Han Z, Cui C, Miao C, Wang H, <b>Chen X</b> (2019). Identifying spatial patterns of retail stores in road network structure. <font color="black"><i>Sustainability</i></font>, <i>11</i>(17), 4539. <a href = "https://www.mdpi.com/2071-1050/11/17/4539" target="_blank">[Web]</a> <a href = "https://www.mdpi.com/2071-1050/11/17/4539/pdf" target="_blank">[PDF]</a></div>
<br>
<div> <span style = "color:green"> [O 23]</span> <b>Chen X*</b>, Frazier C, Manandhar R, Han Z, Jia P. (2019). Inequalities of risk communication within and beyond evacuation planning zone. <font color="black"><i>Applied Spatial Analysis & Policy</i></font>, <i>12</i>(3), 587–604. <a href = "https://link.springer.com/article/10.1007/s12061-018-9257-7" target="_blank">[Web]</a></div>
<br>
<div> <span style = "color:green"> [O 22]</span> <b>Chen X</b>, Wang D, Chen J, Wang C, Shen M. (2018). The mixed pixel effect in land surface phenology: A simulation study. <font color="black"><i>Remote Sensing of Environment</i></font>, <i>211</i>, 338–344. <a href = "https://www.sciencedirect.com/science/article/abs/pii/S0034425718301871" target="_blank">[Web]</a> <a href = "https://www.researchgate.net/publication/324819788_The_mixed_pixel_effect_in_land_surface_phenology_A_simulation_study" target="_blank">[PDF]</a></div>
<br>
<div> <span style = "color:blue"> [G 21]</span> Zhang K, <b>Chen X*</b>, Zhang S, Wilson-Gray G. (2018). Towards a healthy ride: Locating public toilets in the Shanghai metro system. <font color="black"><i>Applied Spatial Analysis & Policy</i></font>, <i>11</i>(2), 381–335. <a href = "https://link.springer.com/article/10.1007%2Fs12061-018-9257-7" target="_blank">[Web]</a></div>
<br>
<div> <span style = "color:green"> [O 20]</span> Chen S, Chen X, <b>Chen X</b>, Chen J, Cao X, Shen M, Yang W, Cui X. (2018). A novel cloud removal method based on IHOT and the cloud trajectories. <font color="black"><i>Remote Sensing</i></font>, <i>10</i>(7). <a href = "https://www.mdpi.com/2072-4292/10/7/1040" target="_blank">[Web]</a> <a href = "https://www.mdpi.com/2072-4292/10/7/1040/pdf" target="_blank">[PDF]</a></div>
<br>
<div> <span style = "color:blue"> [G 19]</span> <b>Chen X*</b>. (2017). Take the edge off: A hybrid food access measure. <font color="black"><i>Applied Geography</i></font>, <i>87</i>, 149-159. <a href = https://www.sciencedirect.com/science/article/abs/pii/S014362281730173X" target="_blank">[Web]</a></div>
<br>
<div> <span style = "color:blue"> [G 18]</span> <b>Chen X*</b>. Li Q. (2017). Modeling road network vulnerability for evacuees and first responders during no-notice evacuation. <font color="black"><i>Journal of Advanced Transportation</i></font>. <a href = "https://www.hindawi.com/journals/jat/2017/6193127/" target="_blank">[Web]</a> <a href="http://downloads.hindawi.com/journals/jat/2017/6193127.pdf" target="_blank">[PDF]</a></div>
<br>
<div> <span style = "color:red"> [H 17]</span> Jia P, <b>Chen X*</b>, Chen J, Lu L, Liu Q, Tan X. (2017). How does the dengue vector mosquito Aedes albopictus respond to global warming?. <font color="black"><i>Parasites & Vectors</i></font>, <i>10</i>(140). <a href = "https://parasitesandvectors.biomedcentral.com/articles/10.1186/s13071-017-2071-2" target="_blank">[Web]</a>
<a href="https://parasitesandvectors.biomedcentral.com/track/pdf/10.1186/s13071-017-2071-2" target="_blank">[PDF]</a>
<a href="https://www.researchgate.net/publication/305776888_Erratum_A_climate-driven_mechanistic_populationmodel_of_Aedes_albopictus_with_diapause" target="_blank">[Erratum]</a>
</div>
<br>
<div> <span style = "color:blue"> [G 16]</span> Xiao Y, <b>Chen X</b>, Li Q, Yu X, Chen J, Guo J. (2017). Exploring determinants of housing prices in Beijing: An enhanced hedonic regression with open access POI data. <font color="black"><i>International Journal of Geo-Information</i></font>, <i>6</i>(11). <a href = "https://www.mdpi.com/2220-9964/6/11/358" target="_blank">[Web]</a> <a href="https://www.mdpi.com/2220-9964/6/11/358/pdf" target="_blank">[PDF]</a></div>
<br>
<div> <span style = "color:green"> [O 15]</span> Yang D, Chen J, Zhou Y, <b>Chen X</b>, Chen X, Cao X. (2017). Mapping plastic greenhouse with medium spatial resolution satellite data: Development of a new spectral index. <font color="black"><i>ISPRS Journal of Photogrammetry and Remote Sensing</i></font>, <i>128</i>, 47-60. <a href = "https://www.sciencedirect.com/science/article/abs/pii/S0924271616302982" target="_blank">[Web]</a></div>
<br>
<div> <span style = "color:blue"> [G 14]</span> <b>Chen X*</b>, Clark J. (2016). Measuring space–time access to food retailers: A case of temporal access disparity in Franklin County, Ohio. <font color="black"><i>The Professional Geographer</i></font>, <i>68</i>(2), 175–188. <a href = "https://www.tandfonline.com/doi/abs/10.1080/00330124.2015.1032876" target="_blank">[Web]</a></div>
<br>
<div> <span style = "color:red"> [H 13]</span> Jia P, Lu L, <b>Chen X*</b>, Chen J, Guo L, Yu X, Liu Q. (2016). A climate-driven mechanistic population model of Aedes albopictus with diapause. <font color="black"><i>Parasites & Vectors</i></font>, <i>9</i>(175). <a href = "https://parasitesandvectors.biomedcentral.com/articles/10.1186/s13071-016-1448-y" target="_blank">[Web]</a> <a href="https://parasitesandvectors.biomedcentral.com/track/pdf/10.1186/s13071-016-1448-y" target="_blank">[PDF]</a> <a href="https://cxpeter.files.wordpress.com/2014/06/erratum2.pdf" target="_blank">[Erratum]</a></div>
<br>
<div> <span style = "color:green"> [O 12]</span> Zhu W, Zhang D, <b>Chen X</b>, Zheng Z, Zhou X, Jiang T. (2016). A correction method for false topographic perception of remote sensing images based on an inverse topographic correction technique. <font color="black"><i>International Journal of Digital Earth</i></font>, <i>9</i>(10), 1021–1034. <a href = "https://www.tandfonline.com/doi/abs/10.1080/17538947.2016.1187672" target="_blank">[Web]</a></div>
<br>
<div> <span style = "color:red"> [H 11]</span> <b>Chen X*</b>, Kwan M. (2015). Contextual uncertainties, human mobility, and perceived food environment: The uncertain geographic context problem in food access research. <font color="black"><i>American Journal of Public Health</i></font>, <i>105</i>(9), 1734–1737. <a href = "https://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2015.302792" target="_blank">[Web]</a></div>
<br>
<div> <span style = "color:red"> [H 10]</span> <b>Chen X*</b>, Zhao B, Blackard E. (2015). Unveiling perceptions of food safety scandals in China: An exploratory study with search engine. <font color="black"><i>Global Media Journal</i></font>. <a href = "http://www.globalmediajournal.com/open-access/unveiling-perceptions-of-food-safety-scandals-in-china-an-exploratory-study-with-search-engine.php?aid=62786" target="_blank">[Web]</a></div>
<br>
<div> <span style = "color:blue"> [G 9]</span> Xu H, Li Q, <b>Chen X</b>, Chen J, Guo J, Wang Y. (2015). Logistical routing of park tours with waiting times: Case of Beijing Zoo. <font color="black"><i>Tourism Geographies</i></font>, <i>17</i>(2), 208–222. <a href = "https://www.tandfonline.com/doi/abs/10.1080/14616688.2014.997281" target="_blank">[Web]</a></div>
<br>
<div> <span style = "color:red"> [H 8]</span> <b>Chen X*</b>, Yang X. (2014). Does food environment influence food choices? A space-time analysis through “tweets”. <font color="black"><i>Applied Geography</i></font>, <i>51</i>, 82–89. <a href = "https://www.sciencedirect.com/science/article/abs/pii/S0143622814000733" target="_blank">[Web]</a> <a href = "https://blogs.lse.ac.uk/usappblog/2014/06/13/analyzing-tweets-shows-that-people-living-closer-to-grocery-stores-make-healthier-food-choices/" target="_blank">[News]</a></div>
<br>
<div> <span style = "color:red"> [H 7]</span> <b>Chen X*</b>, Clark J. (2013). Interactive three-dimensional geovisualization of space-time access to food. <font color="black"><i>Applied Geography</i></font>, <i>43</i>, 81–86. <a href = "https://www.sciencedirect.com/science/article/abs/pii/S0143622813001367" target="_blank">[Web]</a></div>
<br>
<div> <span style = "color:blue"> [G 6]</span> Chen Z, <b>Chen X</b> (co-first author), Li Q, Chen J. (2013). The temporal hierarchy of shelters: A hierarchical location model for earthquake-shelter planning. <font color="black"><i>International Journal of Geographical Information Science</i></font>, <i>27</i>(8), 1612–1630. <a href = "https://www.tandfonline.com/doi/abs/10.1080/13658816.2013.763944#.U6t4gvldXTw" target="_blank">[Web]</a></div>
<br>
<div> <span style = "color:blue"> [G 5]</span> <b>Chen X*</b>, Kwan M. (2012). Choice set formation with multiple flexible activities under space-time constraints. <font color="black"><i>International Journal of Geographical Information Science</i></font>, <i>26</i>(5), 941-961. <a href = "https://www.tandfonline.com/doi/abs/10.1080/13658816.2011.624520#.U6t4ofldXTw" target="_blank">[Web]</a></div>
<br>
<div> <span style = "color:blue"> [G 4]</span> <b>Chen X</b>, Kwan M, Li Q, Chen J. (2012). A model for evacuation risk assessment with consideration of pre-and-post disaster factors. <font color="black"><i>Computers, Environment and Urban Systems</i></font>, <i>36</i>(3), 207-217. <a href = "https://www.sciencedirect.com/science/article/pii/S019897151100113X" target="_blank">[Web]</a></div>
<br>
<div> <span style = "color:blue"> [G 3]</span> Li Q, <b>Chen X</b>, Chen J, Tang Q. (2010). An evacuation risk assessment model for emergency traffic with consideration of urban hazard installations. <font color="black"><i>Chinese Science Bulletin</i></font>, <i>55</i>(10), 1000-1006. <a href = "https://link.springer.com/article/10.1007%2Fs11434-009-0277-1" target="_blank">[Web]</a></div>
</div>
</div>
<div class="resume-item d-flex flex-column flex-md-row justify-content-between">
<div class="resume-content mb-5">
<h3 class="mb-0">Chinese Peer-review Journal</h3>
<div class="subheading mb-3">中文学术期刊</div>
<div> <span style = "color:blue"> [G 2]</span> <b>陈翔</b>, 李强, 王运静, 陈晋, 唐巧. (2009). 临界簇模型及其在地面公交线网可达性评价中的应用. <font color="black"><i>地理学报</i></font>, <i>64</i>(16), 693-700. <b>Chen X</b>, Li Q, Wang Y, Chen J, Tang Q. (2009). The Critical Cluster Model and its application for measuring accessibility of public transit networks. <font color="black"><i>Acta Geographica Sinica</i></font>, <i>64</i>(16), 693-700. <a href = "http://www.geog.com.cn/CN/abstract/abstract18322.shtml" target="_blank">[Web]</a> <a href = "http://www.paper.edu.cn/scholar/showpdf/MUT2EN1INTj0kxyh" target="_blank">[PDF]</a> <a href = "https://cxpeter.files.wordpress.com/2017/12/2009_chen_chinese-version.docx" target="_blank">[Translation]</a></div>
<br>
<div> <span style = "color:blue"> [G 1]</span> 李强, <b>陈翔</b>, 陈晋, 唐巧. (2009). 考虑危险源的城市应急交通疏散风险评价模型. <font color="black"><i>科学通报</i></font>, <i>54</i>(16), 2431-2436. Li Q, <b>Chen X</b>, Chen J, Tang Q. (2009). Modeling evacuation risk by considering potential urban hazards. <font color="black"><i>Chinese Science Bulletin</i></font>, <i>54</i>(16), 2431-2436. <a href = "http://engine.scichina.com/publisher/scp/journal/CSB/54/16/10.1360/csb2009-54-16-2431?slug=abstract" target="_blank">[Web]</a> <a href = "http://engine.scichina.com/doi/pdf/fc9df244fea441dba9ccd794db3434c1" target="_blank">[PDF]</a></div>
</div>
</div>
<div class="resume-item d-flex flex-column flex-md-row justify-content-between">
<div class="resume-content mb-5">
<h3 class="mb-3">Peer-review Book Chapters</h3>
<div> Adams A, Ghosh D, <b>Chen X</b>, Li W, Zhang C, Gallaher A, Benitez Ou A. (2024). Using geospatial visualizations to better understand public health data. In <font color="black"><i>Spatial Literacy in Public Health</i></font>. ACRL Books. <a href = "https://www.researchgate.net/publication/382462019_Using_Geospatial_Visualizations_to_Better_Understand_Public_Health_Data?_sg%5B0%5D=cqYRKH3qQpl38NScLLyr_c-FH2fDcUY6SDCEnsl1dkMRrbZ2mz2nuy9t94Q-CnLNBJ3m2gHxG7U57JAJAJWe-kZTBp36eZxEbSZBJQPa.d7Dtu3WD3yJu1HCW8qCB9F8aclCfynY_Kb8WVnGCpaavwCeXlpLFZGwPwwt1VBObsYG0GU_q7eMWrfXz044mJw&_tp=eyJjb250ZXh0Ijp7ImZpcnN0UGFnZSI6ImxvZ2luIiwicGFnZSI6InByb2ZpbGUiLCJwcmV2aW91c1BhZ2UiOiJwcm9maWxlIiwicG9zaXRpb24iOiJwYWdlQ29udGVudCJ9fQ" target="_blank">[Web]</a></div>
<br>
<div> Wang Y, Gürce MY, Lopes JN, Xu T, <b>Chen X</b>. (2022). How did COVID-19 reshape food procurement around the Globe? Effective operation and redesign of the food retail industry in China, Portugal, Turkey, and the USA. In <font color="black"><i>Socioeconomic Dynamics of the COVID-19 Crisis</i></font>. <a href = "https://link.springer.com/chapter/10.1007%2F978-3-030-89996-7_21" target="_blank">[Web]</a></div>
</div>
</div>
<div class="resume-item d-flex flex-column flex-md-row justify-content-between">
<div class="resume-content mb-5">
<h3 class="mb-3">Non-peer-review Articles</h3>
<div> <b>Chen X</b>, Jin A, Xu R. (2023). Examining human mobility patterns in restaurant visits: A social vulnerability perspective. <font color="black"><i>Proceedings of the Northeast Travel and Tourism Research Association (NETTRA) Annual Conference 2023.</i></font> <a href = "https://www.nettra.org/2023-conference-proceedings.html" target="_blank">[PDF]</a></div>
<br>
<div> Bennett BL, Burkholder K, Esposito J, <b>Chen X</b>, McKee S, Chafouleas S, Schwartz MB. (2021). Feeding Connecticut's children during the summer: An evaluation of access and family perspectives on meal sites. <font color="black"><i>UConn Rudd Center for Food Policy and Health</i></font>. <a href = "https://www.researchgate.net/publication/360577571_Feeding_Connecticut's_children_during_the_summer_An_evaluation_of_access_and_family_perspectives_on_meal_sites" target="_blank">[Web]</a></div>
<br>
<div> <b>Chen X</b>. (Sep 19, 2021). Review of "Estimating data-driven COVID-19 mitigation strategies for safe university reopening." <font color="black"><i>Rapid Reviews: COVID-19</i></font>. <a href = "https://rapidreviewscovid19.mitpress.mit.edu/pub/ew1rgf8r/release/1" target="_blank">[Web]</a></div>
<br>
<div> <b>Chen X</b>. (Spring, 2021). Food access: A time issue. <font color="black"><i>Repost for Geographies of Food and Agriculture Specialty Group</i></font>, AAG. <a href = "https://gfasg.files.wordpress.com/2021/04/gfasg-spring-2021-1.pdf" target="_blank">[PDF]</a></div>
<br>
<div> <b>Chen X</b>. (Feb 10, 2021). Food access: A time issue. <font color="black"><i>Geography Blog</i></font>, The Ohio State University. <a href = "https://u.osu.edu/geographyblog/2021/02/10/food-access-a-time-issue/" target="_blank">[Web]</a></div>
<br>
<div> <b>Chen X</b>. (Jun 13, 2014). Analyzing tweets shows that people living closer to grocery stores make healthier food choices. <font color="black"><i>USApp</i></font>, The London School of Economics and Political Science. <a href = "https://blogs.lse.ac.uk/usappblog/2014/06/13/analyzing-tweets-shows-that-people-living-closer-to-grocery-stores-make-healthier-food-choices/" target="_blank">[Web]</a></div>
</div>
</div>
<div class="resume-item d-flex flex-column flex-md-row justify-content-between">
<div class="resume-content mb-5">
<h3 class="mb-3">Dissertation</h3>
<div> <b>Chen X</b>. (2014). <i>Bringing Time into Measure of Food Access: Place vs. People</i>. The Ohio State University. <a href = "https://etd.ohiolink.edu/apexprod/rws_etd/send_file/send?accession=osu1404313043&disposition=inline" target="_blank">[Web]</a></div>
</div>
</div>
<div class="resume-item d-flex flex-column flex-md-row justify-content-between">
<div class="resume-content mb-5">
<h3 class="mb-3">Podcast & Recording</h3>
<div> <b>Chen X</b>. (Nov 18, 2022). Geography 2050: The Future of Food. Columbia University. <a href = "https://www.geography2050.org/cellar-2022/daytwo-lightning" target="_blank">[Web]</a></div>
<br>
<div> <b>Chen X</b>, Kolak M. (Mar 4, 2022). The spatial origins of population health (in-)equity. Interdisciplinary Association for Population Health Science (IAPHS). <a href = "https://sickindividualssickpopulations.blubrry.net/2022/03/04/2-10-the-spatial-origins-of-population-health-in-equity/" target="_blank">[Web]</a></div>
<br>
<div> <b>Chen X</b>. (Jan 31, 2022). One Health, One Community. University of Connecticut. <a href = "https://onehealth.cahnr.uconn.edu/one-health-one-community/" target="_blank">[Web]</a></div>
</div>
</div>
</div>
</section>
<hr class="m-0">
<section class="resume-section p-3 p-lg-5 d-flex align-items-center" id="teaching">
<div class="w-100">
<h2 class="mb-5">Teaching</h2>
<div class="subheading mb-3">University of Connecticut</div>
<ul class="fa-ul mb-5">
<li>
<i class="fa-li fa fa-check"></i>
GEOG 2500 Introduction to GIS <a href="https://www.youtube.com/channel/UCjeg8HkoLE8gEBnQNNneCxw/playlists" target="_blank">[YouTube Channel] </a>
</li>
<Li>
<i class="fa-li fa fa-check"></i>
GEOG 2505 Applications of GIS
</Li>
<Li>
<i class="fa-li fa fa-check"></i>
GEOG 4516 Fundamentals of Spatial Database Systems
</Li>
<Li>
<i class="fa-li fa fa-check"></i>
GEOG 4518 Mobile GIS
</Li>
<Li>
<i class="fa-li fa fa-check"></i>
GEOG 6815 Graduate Seminar on GIS
</Li>
</ul>
<div class="subheading mb-3">Arkansas Tech University</div>
<ul class="fa-ul mb-0">
<li>
<i class="fa-li fa fa-check"></i>
EAM 4023 Geographic Information Systems <a href="https://www.youtube.com/playlist?list=PLWkhm9iTOhZ9zIXWosGhiS3G_NEC3O02v" target="_blank">[YouTube Channel] </a> </li>
<li>
<i class="fa-li fa fa-check"></i>
EAM 4033 Undergraduate Research Methods & Analysis</li>
<li>
<i class="fa-li fa fa-check"></i>
EAM 4993 Advanced GIS</li>
<li>
<i class="fa-li fa fa-check"></i>
EMHS 6043 Contemporary Issues in Emergency Management</li>
<li>
<i class="fa-li fa fa-check"></i>
EMHS 6513 Technology for Comprehensive EM</li>
<li class="mb-5">
<i class="fa-li fa fa-check"></i>
EMHS 6543 Advanced Digital Technology in EM</li>
</ul>
<div class="subheading mb-3">The Ohio State University</div>
<ul class="fa-ul mb-0">
<li>
<i class="fa-li fa fa-check"></i>
Geography 3300 Transportation Security </li>
<li>
<i class="fa-li fa fa-check"></i>
Geography 5220 Fundamentals of GIS </li>
<li>
<i class="fa-li fa fa-check"></i>
Geography 5222 GIS Applications in Social Science and Business</li>
</ul>
</div>
</section>
<hr class="m-0">
<section class="resume-section p-3 p-lg-5 d-flex justify-content-center" id="service">
<div class="w-100">
<h2 class="mb-5">Service</h2>
<div class="resume-item d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="resume-content">
<h3 class="mb-3">Professional Community</h3>
<ul class="fa-ul mb-5">
<li>
<i class="fa-li fa fa-check"></i>
Board of Director. International Association of Chinese Professionals in Geographic Information Sciences (CPGIS)
<span style="color:indianred"> 2020–2022 </span> </li>
<li>
<i class="fa-li fa fa-check"></i>
Paper Competition Committee Chair. CPGIS
<span style="color:indianred"> 2015– </span> </li>
<li>
<i class="fa-li fa fa-check"></i>
Board Member. American Association of Geographers (AAG) Geographies of Food and Agriculture Specialty Group
<span style="color:indianred"> 2014–16 2017–19 </span> </li>
<li>
<i class="fa-li fa fa-check"></i>
Board Member. AAG Health and Medical Geography Specialty Group
<span style="color:indianred"> 2016–18 </span> </li>
</ul>
<h3 class="mb-0">Journal Reviewer</h3>
<ul class="fa-ul mb-0">
<li class="text-md-right">
<i class="fa fa-user text-danger fa-align-right"></i>10+
<i class="fa fa-user text-warning fa-align-right"></i>5+
<i class="fa fa-user fa-align-right"></i>3+
</li>
<li> American Journal of Preventive Medicine </li>
<li>
<i class="fa-li fa fa-user"></i>
American Journal of Public Health</li>
<li>
<i class="fa-li fa fa-user text-warning"></i>
Annals of the Association of American Geographers</li>
<li> Annals of Tourism Research </li>
<li>
<i class="fa-li fa fa-user text-danger"></i>
Applied Geography </li>
<li> Annals of Tourism Research </li>
<li> Applied Spatial Analysis and Policy </li>
<li>
<i class="fa-li fa fa-user text-warning"></i>
BMC Public Health </li>
<li>
<i class="fa-li fa fa-user text-warning"></i>
Computers, Environment and Urban Systems </li>
<li>
<i class="fa-li fa fa-user"></i>
Food Security </li>
<li> Future Internet </li>
<li> GeoJournal </li>
<li>
<i class="fa-li fa fa-user text-warning"></i>
International Journal of Geo-Information </li>
<li>
<i class="fa-li fa fa-user"></i>
International Journal of Digital Earth </li>
<li>
<i class="fa-li fa fa-user text-danger"></i>
International Journal of Environmental Research and Public Health </li>
<li>
<i class="fa-li fa fa-user text-warning"></i>
International Journal of Geographical information Science </li>
<li> International Journal of Sustainable Transportation </li>
<li> Journal of Modeling Choice </li>
<li>
<i class="fa-li fa fa-user"></i>
Journal of Sustainability </li>
<li> Northeastern Geographer </li>
<li> Nutrients </li>
<li> Professional Geographer </li>
<li> Public Health </li>
<li> Public Health Nutrition </li>
<li> Southeastern Geographer </li>
<li> Transactions in GIS </li>
<li> Transportation </li>
<li> Transportation Research Records </li>
<li> Urban Geography </li>
</ul>
</div>
</div>
</div>
</section>
<hr class="m-0">
<section class="resume-section p-3 p-lg-5 d-flex align-items-center" id="awards">
<div class="w-100">
<h2 class="mb-2">Awards</h2>
<ul class="fa-ul mb-0">
<li class="text-md-right">
<i class="fa fa-trophy text-warning fa-align-right"></i>
Significant Honor</li>
<br>
<li>
<i class="fa-li fa fa-trophy text-warning"></i>
2024 Emerging Scholar Award. AAG Regional Development and Planning Specialty Group (RDPSG).</li>
<li>
<i class="fa-li fa fa-trophy text-warning"></i>
2024 Pearson Excellence in Higher Education Awards: Community Advancement.</li>
<li>
<i class="fa-li fa fa-trophy text-warning"></i>
2024 SDOH & Place Fellowship, RWJF Foundation & University of Illinois at Urbana-Champaign.</li>
<li>
<i class="fa-li fa fa-trophy text-warning"></i>
2023 Top 2% Scientists Worldwide in 2022. Stanford University.</li>
<li>
2023 Service-Learning Fellowship. Office of Outreach & Engagement, University of Connecticut.</li>
<li>
2022 InCHIP Grant Development Summer Award, University of Connecticut.</li>
<li>
2021 Outstanding Professor Award, UConn Marching Band.</li>
<Li>
<i class="fa-li fa fa-trophy text-warning"></i>
2020 NSF Geospatial Fellow for COVID-19 Research, Geospatial Software Institute, University of Illinois at Urbana-Champaign.</li>
<li>
2019 The 29th International Cartographic Conference (Tokyo, Japan) Travel Award, U.S. National Committee </li>
<li>
2019 The 29th International Cartographic Conference (Tokyo, Japan) Local Travel Grant </li>
<li>
2017 Agro-Geoinformatics 2017 Travel Award </li>
<li>
<i class="fa-li fa fa-trophy text-warning"></i>
2015 Jacques May Thesis Prize. AAG Health and Medical Geography Specialty Group </li>
<li>
2013 <i>Fenburr</i> Travel Scholarship, Geography, The Ohio State University </li>
<li>
2013 The 26th International Cartographic Conference (Dresden, Germany) Travel Award, U.S. National Committee </li>
<li>
<i class="fa-li fa fa-trophy text-warning"></i>
2012 <i>Robert Max Thomas</i> Fellowship, Geography, The Ohio State University </li>
<li>
2010 College of Social and Behavioral Sciences Fellowship, The Ohio State University </li>
<li>
2009 Distinguished University Fellowship, The Ohio State University </li>
</ul>
</div>
</section>
<hr class="m-0">
<section class="resume-section p-3 p-lg-5 d-flex align-items-center" id="downloads">
<div class="w-100">
<h2 class="mb-5">Downloads</h2>
<div class="resume-item d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="resume-content">
<p class="lead mb-3">Please go to my GitHub account for downloading other project data and codes →
<a href="https://github.com/peterbest52" target="_blank"> <button type="button" class="btn btn-outline-secondary" style="margin-left:0.2em">GitHub</button></a>
</p>
<h3 class="mb-3">Global Health</h3>
<h4 class ="mb-2 text-danger"> Mosquito Population Modeling </h4>
<ul class="fa-ul mb-3">
<li>
<i class="fa-li fa fa-plus"></i>
We have developed the mechanistic population model of <i>Ae. albopictus</i> (Asian Tiger Mosquito) with diapause (MPAD).
<li>
<i class="fa-li fa fa-plus"></i>
The model derives the mosquito population abundance in a seven-stage climate-driven development.
<li>
<i class="fa-li fa fa-plus"></i>
The original model (2016) is further extended to studying global warming (2017) and heat waves (2019).
</ul>
<div class="mb-5">
<b class="text-secondary"> Read More </b>
<a href="https://parasitesandvectors.biomedcentral.com/articles/10.1186/s13071-016-1448-y" target="_blank"><button type="button" class="btn btn-primary btn-sm">MPAD Model</button></a>
<a href="https://parasitesandvectors.biomedcentral.com/articles/10.1186/s13071-017-2071-2" target="_blank"><button type="button" class="btn btn-primary btn-sm">Global Warming</button></a>
<a href="https://journals.plos.org/plosntds/article?rev=1&id=10.1371/journal.pntd.0007528" target="_blank"><button type="button" class="btn btn-primary btn-sm">Heat Waves</button></a>
<b class="text-secondary"> Download </b>
<a href="https://github.com/J-Phx13/Albopictus-Model/blob/master/Albopictus_Simulation.py" target="_blank"><button type="button" class="btn btn-primary btn-sm">GitHub</button></a>
</div>
<h3 class="mb-3">Remote Sensing</h3>
<h4 class ="mb-2 text-danger"> Simulation Toolkit for Mixed Pixel Phenology </h4>
<ul class="fa-ul mb-3">
<li>
<i class="fa-li fa fa-plus"></i>
The green-up date (GUD) characterizes the onset of measurable photosynthetic activities or the timing of spring arrivals.
<li>
<i class="fa-li fa fa-plus"></i>
Vegetation index products may contain mixed pixels, introducing uncertainties to GUD detection.
<li>
<i class="fa-li fa fa-plus"></i>
This simulation toolkit identifies the GUD in a mixed pixel based on the NDVI time series of the endmembers in the pixel.
</ul>
<div class="mb-5">
<b class="text-secondary"> Read More </b>
<a href="https://www.researchgate.net/publication/324819788_The_mixed_pixel_effect_in_land_surface_phenology_A_simulation_study" target="_blank"><button type="button" class="btn btn-primary btn-sm">Article</button></a>
<a href="https://cxpeter.files.wordpress.com/2017/12/appendix.pdf" target="_blank"><button type="button" class="btn btn-primary btn-sm">User Guide</button></a>
<b class="text-secondary"> Download </b>
<a href="https://drive.google.com/file/d/1Ruixi1u4IFy-ctTQAFet3LPJ6IW6e8q1/view?usp=sharing" target="_blank"><button type="button" class="btn btn-primary btn-sm">Google Drive</button></a>
<a href="https://pan.baidu.com/s/1pKHbzNt" target="_blank"><button type="button" class="btn btn-primary btn-sm">Baidu Cloud</button></a>
</div>
<h3 class="mb-3">Emergency Management</h3>
<h4 class ="mb-2 text-danger"> Network-based Evacuation Risk Assessment </h4>
<ul class="fa-ul mb-3">
<li>
<i class="fa-li fa fa-plus"></i>
In emergencies, evacuation via road networks is characterized with a high degree of uncertainties
<li>
<i class="fa-li fa fa-plus"></i>
The critical cluster model (CCM) is developed to quantify the evacuation risk in network-based neighborhoods
<li>
<i class="fa-li fa fa-plus"></i>
This custom simulation toolkit identifies the network vulnerability based on the CCM
</ul>
<div class="mb-7">
<b class="text-secondary"> Read more </b>
<a href="https://www.researchgate.net/profile/Xiang_Chen18/publication/257054899_A_model_for_evacuation_risk_assessment_with_consideration_of_pre-_and_post-disaster_factors/links/5a0f3e3ea6fdccc2d7983051/A-model-for-evacuation-risk-assessment-with-consideration-of-pre-and-post-disaster-factors.pdf" target="_blank"><button type="button" class="btn btn-primary btn-sm">Article</button></a>
<a href="https://cxpeter.files.wordpress.com/2015/07/readme.pdf" target="_blank"><button type="button" class="btn btn-primary btn-sm">User Guide</button></a>
<b class="text-secondary"> Download </b>
<a href="https://drive.google.com/file/d/1_y53vpHsWcb_wN1Nn7XiFteolXWVXlGB/view?usp=sharing" target="_blank"><button type="button" class="btn btn-primary btn-sm">Google Drive</button></a>
<a href="https://pan.baidu.com/s/1kV48AN1" target="_blank"><button type="button" class="btn btn-primary btn-sm">Baidu Cloud</button></a>
</div>
</div>
</div>
</div>>
</section>
<hr class="m-0">
<section class="resume-section p-3 p-lg-5 d-flex align-items-center" id="students">
<div class="w-100">
<h2 class="mb-5">Students</h2>
<h3 class="mb-3">Current Students</h3>
<p class="mb-0" style = "color:brown"><b>Weixuan Lyu</b></p>
<p class="mb-2">(PhD, advisee)</p>
<p class="mb-0" style = "color:brown"><b>Ailin Jin</b></p>
<p class="mb-2">(PhD, advisee)</p>
<p class="mb-0" style = "color:brown"><b>Congcong Miao</b></p>
<p class="mb-5">(PhD, co-advisee)</p>
<h3 class="mb-3">Graduated Students</h3>
<p class="mb-0" style = "color:brown"><b>Aaron Adams</b></p>
<p class="mb-2">(PhD 2024, co-advisee)</p>
<p class="mb-0" style = "color:brown"><b>Yunhe Cui</b></p>
<p class="mb-2">(PhD 2024, co-advisee)</p>
<p class="mb-5"></p>
<p> Check out <a href="https://geography.uconn.edu/graduate/" target="_blank">UConn Geography</a> for more information about our graduate program. </p>
</div>
</section>
</div>
<!-- Bootstrap core JavaScript -->
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<!-- Plugin JavaScript -->
<script src="vendor/jquery-easing/jquery.easing.min.js"></script>
<!-- Custom scripts for this template -->
<script src="js/resume.min.js"></script>
</body>
<div id="footer" style="text-align:center">
<p>Created by: <i>Xiang Chen</i> Contact Information: <a href="mailto:xiang.chen@uconn.edu">
xiang.chen@uconn.edu</a> </p>
<p>© 2021 All Rights Reserved</p>
</div>
</html>