-
Notifications
You must be signed in to change notification settings - Fork 106
/
cv-gboeing.tex
1001 lines (592 loc) · 72.3 KB
/
cv-gboeing.tex
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
%!TeX program = pdflatex
% Geoff Boeing's Curriculum Vitae
% Email: [email protected]
% Web: https://geoffboeing.com/
% Repo: https://github.com/gboeing/cv
\documentclass[11pt,letterpaper]{report}
\usepackage[T1]{fontenc} % output T1 font encoding (8-bit) for accented characters as single glyph
\usepackage[strict,autostyle]{csquotes} % smart and nestable quote marks
\usepackage[USenglish]{babel} % regionalize hyphens, quote marks, etc automatically
\usepackage{microtype}% improve text appearance with kerning, etc
\usepackage{datetime} % enable formatting of date output
\usepackage{tabto} % make nice tabbing
\usepackage{setspace} % custom line spacing
\usepackage{hyperref} % enable hyperlinks and pdf metadata
\usepackage{geometry} % manually set page margins
\usepackage{enumitem} % enumerate with [resume] option
\usepackage{titlesec} % allow custom section fonts
% what is your name?
\newcommand{\myname}{Geoff Boeing}
% select default typefaces
\usepackage{ebgaramond} % document's serif typeface
\usepackage{tgheros} % document's sans serif typeface
% how far to tab for list items with left-aligned date: different fonts need different widths
\newcommand{\listtabwidth}{1.7cm}
% define font to use as document's title
\newcommand{\namefont}[1]{{\normalfont\bfseries\Huge{#1}}}
% set section heading fonts and before/after spacing
\SetTracking{encoding=*, family=\sfdefault}{30} % increase sans serif headings tracking
\titleformat{\section}{\lsstyle\sffamily\small\bfseries\uppercase}{}{}{}{}
\titlespacing{\section}{0pt}{30pt plus 4pt minus 4pt}{8pt plus 2pt minus 2pt}
% set subsection heading fonts and before/after spacing
\titleformat{\subsection}{\lsstyle\sffamily\footnotesize\bfseries}{}{}{}{}
\titlespacing{\subsection}{0pt}{16pt plus 4pt minus 4pt}{4pt plus 2pt minus 2pt}
% set page margins (assumes letter paper)
\geometry{body={6.5in, 9.0in},
left=1.0in,
top=1.0in}
% prevent paragraph indentation
\setlength\parindent{0em}
% set line spacing
\setstretch{0.9}
% define space between list items
\newcommand{\listitemspace}{0.25em}
% make unordered lists without bullets and use compact spacing
\renewenvironment{itemize}
{\begin{list}{}{\setlength{\leftmargin}{0em}
\setlength{\parskip}{0em}
\setlength{\itemsep}{\listitemspace}
\setlength{\parsep}{\listitemspace}}}
{\end{list}}
% make tabbed lists so content is left-aligned next to years
\TabPositions{\listtabwidth}
\newlist{tablist}{description}{3}
\setlist[tablist]{leftmargin=\listtabwidth,
labelindent=0em,
topsep=0em,
partopsep=0em,
itemsep=\listitemspace,
parsep=\listitemspace,
font=\normalfont}
% print only the month and year when using \today
\newdateformat{monthyeardate}{\monthname[\THEMONTH] \THEYEAR}
% define hyperlink appearance and metadata for pdf properties
\hypersetup{
colorlinks = true,
urlcolor = black,
citecolor = black,
linkcolor = black,
pdfauthor = {\myname},
pdfkeywords = {city planning, housing, street networks, transportation, urban design, urban informatics},
pdftitle = {\myname: Curriculum Vitae},
pdfsubject = {Curriculum Vitae},
pdfpagemode = UseNone
}
\begin{document}
\raggedright{}
% display your name as the document title
\namefont{\myname}
% affiliation and contact info blocks
\vspace{1em}
\begin{minipage}[t]{0.700\textwidth}
% current primary affiliation, left-aligned
Department of Urban Planning and Spatial Analysis \\
Sol Price School of Public Policy \\
University of Southern California
\end{minipage}
\begin{minipage}[t]{0.295\textwidth}
% contact info details, right-aligned
\flushright{}
\href{mailto:[email protected]}{[email protected]} \\
+1 213 740 2773 \\
\href{https://geoffboeing.com}{geoffboeing.com}
\end{minipage}
\section*{Education}
\begin{tablist}
\item[Ph.D.] \tab{}City and Regional Planning, University of California, Berkeley, 2017
\item[M.S.] \tab{}Information Management, Arizona State University, 2006
\item[B.S.] \tab{}Computer Information Systems \textit{summa cum laude}, Arizona State University, 2004
\end{tablist}
\section*{Appointments}
\begin{tablist}
\item[2019--] \tab{}University of Southern California \\
Assistant Professor, Department of Urban Planning and Spatial Analysis, 2019-- \\
Faculty Affiliate, Spatial Sciences Institute, 2021--
\item[2021--] \tab{}Brookings Institution \\
Nonresident Senior Fellow, Metropolitan Policy Program \\
\item[2018--19] \tab{}Northeastern University \\
Assistant Professor, School of Public Policy and Urban Affairs \\
Faculty Affiliate, Network Science Institute \\
Faculty Affiliate, Global Resilience Institute
\item[2017--18] \tab{}University of California, Berkeley \\
Postdoctoral Researcher, Department of City and Regional Planning
\end{tablist}
\section*{Research Areas}
\begin{itemize}
\item Urban informatics and geospatial data science: computational statistics, visualization, and spatial analysis
\item Transportation planning: street network design, access, equity, and urban form
\item Housing: emerging technology platforms' impacts on markets, residential mobility, and segregation
\end{itemize}
\section*{Publications}
\subsection*{Journal Articles}
\begin{tablist}
%\item[\the\year] \tab{}M. Barthelemy, G. Boeing, A.~J.~F. Chiaradia, and C. Webster. \enquote{Surfacic Networks.} \textit{PNAS Nexus}, under review.
%\item[\the\year] \tab{}G. Boeing. \enquote{Topological Graph Simplification for Urban Street Network Models.} \textit{Transactions in GIS}, under review.
%\item[\the\year] \tab{}G. Boeing and J. Ha. \enquote{Resilient Livelihoods: The Vulnerability of Commutes to Street Network Disruption.} \textit{International Journal of Geographical Information Science}, under review.
%\item[\the\year] \tab{}R. Turner, C. Higgs, R. Hunter, J. Celso Borello Vargas, V. Heikinheimo, S. Liu, E. Resendiz, R. Schifanella, G. Longo Rosa, D. Pugacheva, R. Chen, J. Molina-García, A. Queralt, D. Adlakha, M. Baghaie Poor, C. Garza, G. Boeing, J. Valson, P. Serra del Pozo, A. Puig-Ribera, D. Salvo, E. Cerin, E. Hinckson, and M. Lowe \enquote{Validated Global Indicators of Large Public Urban Green Space Using Open Data.} \textit{Sustainable Cities and Society}, under review.
%\item[\the\year] \tab{}G. Boeing. \enquote{Modeling and Analyzing Urban Networks and Amenities with OSMnx.} \textit{Working Paper}, in preparation.
\item[2024] \tab{}C. Higgs, M. Lowe, B. Giles-Corti, G. Boeing, X. Delclòs-Alió, A. Puig-Ribera, D. Adlakha, S. Liu, J. Borello Vargas, M. Castillo-Riquelme, A. Jafari, J. Molina-García, V. Heikinheimo, A. Queralt, E. Cerin, E. Resendiz, D. Singh, S. Rodriguez, E. Suel, M. Domínguez-Mallafre, Y. Ye, and A. Alderton. \enquote{Collaborative Development of an Open Science Urban Indicator Toolkit for Assessing Healthy and Sustainable Cities Internationally.} \textit{Environment and Planning B:\@ Urban Analytics and City Science}, in press.
\item[2024] \tab{}J.~G. Harten and G. Boeing. \enquote{Access to the Exclusive City: Home Sharing as an Affordable Housing Strategy.} \textit{Urban Studies}, published online ahead of print. \href{https://doi.org/10.1177/00420980241258297}{doi:10.1177/00420980241258297}
\item[2024] \tab{}G. Boeing and J. Ha. \enquote{Resilient by Design: Simulating Street Network Disruptions across Every Urban Area in the World.} \textit{Transportation Research Part A:\ Policy and Practice} 182, 104016. \href{https://doi.org/10.1016/j.tra.2024.104016}{doi:10.1016/j.tra.2024.104016}
\item[2024] \tab{}G. Boeing, C. Pilgram, and Y. Lu. \enquote{Urban Street Network Design and Transport-Related Greenhouse Gas Emissions around the World.} \textit{Transportation Research Part D:\ Transport and Environment} 127, 103961. \href{https://doi.org/10.1016/j.trd.2023.103961}{doi:10.1016/j.trd.2023.103961}
\item[2024] \tab{}G. Boeing and W. Riggs. \enquote{Converting One-Way Streets to Two-Way Streets to Improve Transportation Network Efficiency and Reduce Vehicle Distance Traveled.} \textit{Journal of Planning Education and Research} 44 (3), 1670--1678. \href{https://doi.org/10.1177/0739456X221106334}{doi:10.1177/0739456X221106334}
\item[2024] \tab{}M. Lore, J.~G. Harten, and G. Boeing. \enquote{A Hybrid Deep Learning Method for Identifying Topics in Large-Scale Urban Text Data: Benefits and Trade-offs.} \textit{Computers, Environment and Urban Systems} 111, 102131. \href{https://doi.org/10.1016/j.compenvurbsys.2024.102131}{doi:10.1016/j.compenvurbsys.2024.102131}
\item[2024] \tab{}M. Barthelemy and G. Boeing. \enquote{A Review of the Structure of Street Networks.} \textit{Findings}. \href{https://doi.org/10.32866/001c.122117}{doi:10.32866/001c.122117}
\item[2024] \tab{}M. Nieuwenhuijsen, G.~M.~C. Dyer, S. Khomenko, D. Adlakha, S. Anenberg, J. Angelova, M. Behnisch, G. Boeing, X. Chen, M. Cirach, K. de Hoogh, A. Diez Roux, M. Esperon-Rodriguez, B. Flueckiger, A. Gasparrini, H. Khreis, M. Kondo, T. Lungman, P. Masselot, R. McDonald, F. Montana, R. Mitchell, N. Mueller, M.~O. Nawaz, E. Pereira, E. Pisoni, R. Prieto-Curiel, J. Ramasco, N. Rezaei, D. Rybski, R. Schifanella, S. Shabou, L. Tatah, H. Taubenböck, C. Tonne, D. Velázquez-Cortés, J. Woodcock, and Q. Zhang. \enquote{A Road Map for Future Data-Driven Urban Planning and Environmental Health Research.} \textit{Cities} 155, 105340. \href{https://doi.org/10.1016/j.cities.2024.105340}{doi:10.1016/j.cities.2024.105340}
\item[2024] \tab{}G.~M.~C. Dyer, S. Khomenko, D. Adlakha, S. Anenberg, M. Behnisch, G. Boeing, M. Esperon-Rodriguez, A. Gasparrini, H. Khreis, M. Kondo, P. Masselot, R. McDonald, F. Montana, R. Mitchell, N. Mueller, M.~O. Nawaz, E. Pisoni, R. Prieto-Curiel, N. Rezaei, H. Taubenböck, C. Tonne, D. Velázquez-Cortés, and M. Nieuwenhuijsen. \enquote{Exploring the Nexus of Urban Form, Transport, Environment and Health in Large-Scale Urban Studies: A Scoping Review.} \textit{Environmental Research} 257, 119324. \href{https://doi.org/10.1016/j.envres.2024.119324}{doi:10.1016/j.envres.2024.119324}
\item[2023] \tab{}G. Boeing, Y. Lu, and C. Pilgram. \enquote{Local Inequities in the Relative Production of and Exposure to Vehicular Air Pollution in Los Angeles.} \textit{Urban Studies} 60 (12), 2351--2368. \href{https://doi.org/10.1177/00420980221145403}{doi:10.1177/00420980221145403}
\item[2023] \tab{}G. Boeing, J. Wegmann, and J. Jiao. \enquote{Rental Housing Spot Markets: How Online Information Exchanges Can Supplement Transacted-Rents Data.} \textit{Journal of Planning Education and Research} 43 (3), 525--537. \href{https://doi.org/10.1177/0739456X20904435}{doi:10.1177/0739456X20904435}
\item[2023] \tab{}M. Seyedrezaei, B. Becerik-Gerber, M. Awada, S. Contreras, and G. Boeing. \enquote{Equity in the Built Environment: A Systematic Review.} \textit{Building and Environment} 245, 110827. \href{https://doi.org/10.1016/j.buildenv.2023.110827}{doi:10.1016/j.buildenv.2023.110827}
\item[2022] \tab{}G. Boeing. \enquote{Street Network Models and Indicators for Every Urban Area in the World.} \textit{Geographical Analysis} 54 (3), 519--535. \href{https://doi.org/10.1111/gean.12281}{doi:10.1111/gean.12281}
\item[2022] \tab{}G. Boeing, C. Higgs, S. Liu, B. Giles-Corti, J.~F. Sallis, E. Cerin, M. Lowe, D. Adlakha, E. Hinckson, A.~V. Moudon, D. Salvo, M.~A. Adams, L.~V. Barrozo, T. Bozovic, X. Delclòs-Alió, J. Dygrýn, S. Ferguson, K. Gebel, T.~P. Ho, P. Lai, J.~C. Martori, K. Nitvimol, A. Queralt, J.~D. Roberts, G.~H. Sambo, J. Schipperijn, D. Vale, N. Van de Weghe, G. Vich, and J. Arundel. \enquote{Using Open Data and Open-Source Software to Develop Spatial Indicators of Urban Design and Transport Features for Achieving Healthy and Sustainable Cities.} \textit{The Lancet Global Health} 10 (6), 907--918. \href{https://doi.org/10.1016/S2214-109X(22)00072-9}{doi:10.1016/S2214-109X(22)00072-9}
\item[2022] \tab{}B. Giles-Corti, A.~V. Moudon, M. Lowe, D. Adlakha, E. Cerin, G. Boeing, C. Higgs, J. Arundel, S. Liu, E. Hinckson, D. Salvo, M.~A. Adams, H. Badland, A.~A. Florindo, K. Gebel, R.~F. Hunter, J. Mitáš, A.~L. Oyeyemi, A. Puig-Ribera, A. Queralt, M.~P. Santos, J. Schipperijn, M. Stevenson, D. Van Dyck, G. Vich, and J.~F. Sallis. \enquote{Creating Healthy and Sustainable Cities: What Gets Measured Gets Done.} \textit{The Lancet Global Health} 10 (6), 782--785. \href{https://doi.org/10.1016/S2214-109X(22)00070-5}{doi:10.1016/S2214-109X(22)00070-5}
\item[2022] \tab{}M. Lowe, D. Adlakha, J.~F. Sallis, D. Salvo, E. Cerin, A.~V. Moudon, C. Higgs, E. Hinckson, J. Arundel, G. Boeing, S. Liu, P. Mansour, K. Gebel, A. Puig-Ribera, P.~B. Mishra, T. Bozovic, J. Carson, J. Dygrýn, A.~A. Florindo, T.~P. Ho, H. Hook, R.~F. Hunter, P. Lai, J. Molina-García, K. Nitvimol, A.~L. Oyeyemi, C.~D.~G. Ramos, E. Resendiz, J. Troelsen, F. Witlox, and B. Giles-Corti. \enquote{City Planning Policies to Support Health and Sustainability: An International Comparison of Policy Indicators for 25 Cities.} \textit{The Lancet Global Health} 10 (6), 882--894. \href{https://doi.org/10.1016/S2214-109X(22)00069-9}{doi:10.1016/S2214-109X(22)00069-9}
\item[2022] \tab{}E. Cerin, J.~F. Sallis, D. Salvo, E. Hinckson, T.~L. Conway, N. Owen, D. Van Dyck, M. Lowe, C. Higgs, A.~V. Moudon, M.~A. Adams, K.~L. Cain, L.~B. Christiansen, R. Davey, J. Dygrýn, L.~D. Frank, R. Reis, O.~L. Sarmiento, D. Adlakha, G. Boeing, S. Liu, and B. Giles-Corti. \enquote{Determining Thresholds for Spatial Urban Design and Transport Features that Support Walking to Create Healthy and Sustainable Cities: Findings from the IPEN Adult Study.} \textit{The Lancet Global Health} 10 (6), 895--906. \href{https://doi.org/10.1016/S2214-109X(22)00068-7}{doi:10.1016/S2214-109X(22)00068-7}
\item[2022] \tab{}B. Giles-Corti, A.~V. Moudon, M. Lowe, E. Cerin, G. Boeing, H. Frumkin, D. Salvo, S. Foster, A. Kleeman, S. Bekessy, T. Hérick de Sa, M. Nieuwenhuijsen, C. Higgs, E. Hinckson, D. Adlakha, J. Arundel, S. Liu, A.~L. Oyeyemi, K. Nitvimol, and J.~F. Sallis. \enquote{What Next? Expanding Our View of City Planning and Global Health, and Implementing and Monitoring Evidence-Informed Policy.} \textit{The Lancet Global Health} 10 (6), 919--926. \href{https://doi.org/10.1016/S2214-109X(22)00066-3}{doi:10.1016/S2214-109X(22)00066-3}
\item[2022] \tab{}S. Liu, C. Higgs, J. Arundel, G. Boeing, N. Cerdera, D. Moctezuma, E. Cerin, D. Adlakha, M. Lowe, and B. Giles-Corti. \enquote{A Generalized Framework for Measuring Pedestrian Accessibility around the World Using Open Data.} \textit{Geographical Analysis} 54 (3), 559--582. \href{https://doi.org/10.1111/gean.12290}{doi:10.1111/gean.12290}
\item[2022] \tab{}C. Higgs, A. Alderton, J. Rozek, D. Adlakha, H. Badland, G. Boeing, A. Both, E. Cerin, M. Chandrabose, C. De Gruyter, A. De Livera, L. Gunn, E. Hinckson, S. Liu, S. Mavoa, J.~F. Sallis, K. Simons, and B. Giles-Corti. \enquote{Policy-Relevant Spatial Indicators of Urban Liveability And Sustainability: Scaling From Local to Global.} \textit{Urban Policy and Research} 40 (4), 321--334. \href{https://doi.org/10.1080/08111146.2022.2076215}{doi:10.1080/08111146.2022.2076215}
\item[2022] \tab{}M. Lowe, J.~F. Sallis, D. Salvo, E. Cerin, G. Boeing, C. Higgs, S. Liu, E. Hinckson, D. Adlakha, J. Arundel, A.~V. Moudon, E. Resendiz, and B. Giles-Corti. \enquote{A Pathway to Prioritizing and Delivering Healthy and Sustainable Cities.} \textit{Journal of City Climate Policy and Economy} 1 (1), 111--123. \href{https://doi.org/10.3138/jccpe-2022.1.1.0008}{doi:10.3138/jccpe-2022.1.1.0008}
\item[2021] \tab{}G. Boeing. \enquote{Off the Grid\ldots\ and Back Again? The Recent Evolution of American Street Network Planning and Design.} \textit{Journal of the American Planning Association} 87 (1), 123--137. \href{https://doi.org/10.1080/01944363.2020.1819382}{doi:10.1080/01944363.2020.1819382}
\item[2021] \tab{}G. Boeing, M. Besbris, A. Schachter, and J. Kuk. \enquote{Housing Search in the Age of Big Data: Smarter Cities or the Same Old Blind Spots?} \textit{Housing Policy Debate} 31 (1), 112--126. \href{https://doi.org/10.1080/10511482.2019.1684336}{doi:10.1080/10511482.2019.1684336}
\item[2021] \tab{}G. Boeing. \enquote{Spatial Information and the Legibility of Urban Form: Big Data in Urban Morphology.} \textit{International Journal of Information Management} 56, 102013. \href{https://doi.org/10.1016/j.ijinfomgt.2019.09.009}{doi:10.1016/j.ijinfomgt.2019.09.009}
\item[2021] \tab{}G. Boeing, M. Besbris, D. Wachsmuth, and J. Wegmann. \enquote{Tilted Platforms: Rental Housing Technology and the Rise of Urban Big Data Oligopolies.} \textit{Urban Transformations} 3, 6. \href{https://doi.org/10.1186/s42854-021-00024-2}{doi:10.1186/s42854-021-00024-2}
\item[2020] \tab{}G. Boeing. \enquote{Online Rental Housing Market Representation and the Digital Reproduction of Urban Inequality.} \textit{Environment and Planning A:\ Economy and Space} 52 (2), 449--468. \href{https://doi.org/10.1177/0308518X19869678}{doi:10.1177/0308518X19869678}
\item[2020] \tab{}G. Boeing. \enquote{Planarity and Street Network Representation in Urban Form Analysis.} \textit{Environment and Planning B:\ Urban Analytics and City Science} 47 (5), 855--869. \href{https://doi.org/10.1177/2399808318802941}{doi:10.1177/2399808318802941}
\item[2020] \tab{}G. Boeing. \enquote{The Right Tools for the Job: The Case for Spatial Science Tool-Building.} \textit{Transactions in GIS} 24 (5), 1299--1314. \href{https://doi.org/10.1111/tgis.12678}{doi:10.1111/tgis.12678}
\item[2020] \tab{}G. Boeing. \enquote{A Multi-Scale Analysis of 27,000 Urban Street Networks: Every U.S. City, Town, Urbanized Area, and Zillow Neighborhood.} \textit{Environment and Planning B:\ Urban Analytics and City Science} 47 (4), 590--608. \href{https://doi.org/10.1177/2399808318784595}{doi:10.1177/2399808318784595}
\item[2020] \tab{}G. Boeing. \enquote{Urban Street Network Analysis in a Computational Notebook.} \textit{Region: Journal of the European Regional Science Association} 6 (3), 39--51. \href{https://doi.org/10.18335/region.v6i3.278}{doi:10.18335/region.v6i3.278}
\item[2019] \tab{}W. Kang, T. Oshan, L.~J. Wolf, G. Boeing, V. Frias-Martinez, S. Gao, A. Poorthuis, and W. Xu. \enquote{A Roundtable Discussion: Defining Urban Data Science.} \textit{Environment and Planning B:\ Urban Analytics and City Science} 46 (9), 1756--1768. \href{https://doi.org/10.1177/2399808319882826}{doi:10.1177/2399808319882826}
\item[2019] \tab{}G. Boeing. \enquote{Urban Spatial Order: Street Network Orientation, Configuration, and Entropy.} \textit{Applied Network Science} 4 (1), 67. \href{https://doi.org/10.1007/s41109-019-0189-1}{doi:10.1007/s41109-019-0189-1}
\item[2019] \tab{}G. Boeing. \enquote{Street Network Models and Measures for Every U.S. City, County, Urbanized Area, Census Tract, and Zillow-Defined Neighborhood.} \textit{Urban Science} 3 (1), 28. \href{https://doi.org/10.3390/urbansci3010028}{doi:10.3390/urbansci3010028}
\item[2019] \tab{}M. Padgham, G. Boeing, D. Cooley, N. Tierney, M. Sumner, T. Phan, and R. Beare. \enquote{An Introduction to Software Tools, Data, and Services for Geospatial Analysis of Stroke Services.} \textit{Frontiers in Neurology} 10, 743. \href{https://doi.org/10.3389/fneur.2019.00743}{doi:10.3389/fneur.2019.00743}
\item[2018] \tab{}G. Boeing. \enquote{Measuring the Complexity of Urban Form and Design.} \textit{Urban Design International} 23 (4), 281--292. \href{https://doi.org/10.1057/s41289-018-0072-1}{doi:10.1057/s41289-018-0072-1}
\item[2018] \tab{}G. Boeing. \enquote{Estimating Local Daytime Population Density from Census and Payroll Data.} \textit{Regional Studies, Regional Science} 5 (1), 179--182. \href{https://doi.org/10.1080/21681376.2018.1455535}{doi:10.1080/21681376.2018.1455535}
\item[2018] \tab{}G. Boeing. \enquote{The Effects of Inequality, Density, and Heterogeneous Residential Preferences on Urban Displacement and Metropolitan Structure: An Agent-Based Model.} \textit{Urban Science} 2 (3), 76. \href{https://doi.org/10.3390/urbansci2030076}{doi:10.3390/urbansci2030076}
\item[2018] \tab{}G. Boeing. \enquote{Pynamical: Model and Visualize Discrete Nonlinear Dynamical Systems, Chaos, and Fractals.} \textit{Journal of Open Source Education} 1 (1), 15. \href{https://doi.org/10.21105/jose.00015}{doi:10.21105/jose.00015}
\item[2017] \tab{}G. Boeing. \enquote{OSMnx: New Methods for Acquiring, Constructing, Analyzing, and Visualizing Complex Street Networks.} \textit{Computers, Environment and Urban Systems} 65, 126--139. \href{https://doi.org/10.1016/j.compenvurbsys.2017.05.004}{doi:10.1016/j.compenvurbsys.2017.05.004}
\item[2017] \tab{}G. Boeing and P. Waddell. \enquote{New Insights into Rental Housing Markets across the United States: Web Scraping and Analyzing Craigslist Rental Listings.} \textit{Journal of Planning Education and Research} 37 (4), 457--476. \href{https://doi.org/10.1177/0739456X16664789}{doi:10.1177/0739456X16664789}
\item[2017] \tab{}G. Boeing. \enquote{OSMnx: A Python Package to Work with Graph-Theoretic OpenStreetMap Street Networks.} \textit{Journal of Open Source Software} 2 (12), 1. \href{https://doi.org/10.21105/joss.00215}{doi:10.21105/joss.00215}
\item[2016] \tab{}G. Boeing. \enquote{Honolulu Rail Transit: International Lessons from Barcelona in Linking Urban Form, Design, and Transportation.} \textit{Planext} 2, 28--47. \href{https://doi.org/10.17418/planext.2016.3vol.02}{doi:10.17418/planext.2016.3vol.02}
\item[2016] \tab{}G. Boeing. \enquote{Visual Analysis of Nonlinear Dynamical Systems: Chaos, Fractals, Self-Similarity, and the Limits of Prediction.} \textit{Systems} 4 (4), 37. \href{https://doi.org/10.3390/systems4040037}{doi:10.3390/systems4040037}
\item[2014] \tab{}G. Boeing, D. Church, H. Hubbard, J. Mickens, and L. Rudis. \enquote{LEED-ND and Livability Revisited.} \textit{Berkeley Planning Journal} 27 (1), 31--55. \href{https://doi.org/10.5070/BP327124500}{doi:10.5070/BP327124500}
\end{tablist}
\subsection*{Book Chapters}
\begin{tablist}
\item[2022] \tab{}G. Boeing, M. Batty, S. Jiang, and L. Schweitzer. \enquote{Urban Analytics: History, Trajectory, and Critique.} In: \textit{Handbook of Spatial Analysis in the Social Sciences} (pp. 503--516), edited by S. Rey and R. Franklin. Cheltenham, England:\ Edward Elgar. \href{https://doi.org/10.4337/9781789903942.00039}{doi:10.4337/9781789903942.00039}
\item[2021] \tab{}G. Boeing and D. Arribas-Bel. \enquote{GIS and Computational Notebooks.} In: \textit{The Geographic Information Science \& Technology Body of Knowledge}, edited by J.~P. Wilson. Ithaca, NY:\ University Consortium for Geographic Information Science. \href{https://doi.org/10.22224/gistbok/2021.1.2}{doi:10.22224/gistbok/2021.1.2}
\item[2021] \tab{}G. Boeing. \enquote{Exploring Urban Form Through OpenStreetMap Data: A Visual Introduction.} In: \textit{Urban Experience and Design: Contemporary Perspectives on Improving the Public Realm} (pp. 167--184), edited by J.~B. Hollander and A. Sussman. New York, NY:\ Routledge. \href{https://doi.org/10.4324/9780367435585-15}{doi:10.4324/9780367435585-15}
\item[2019] \tab{}G. Boeing. \enquote{The Morphology and Circuity of Walkable and Drivable Street Networks.} In: \textit{The Mathematics of Urban Morphology} (pp. 271--287), edited by L. D'Acci. Basel, Switzerland: Birkh{\"a}user. \href{https://doi.org/10.1007/978-3-030-12381-9_12}{doi:10.1007/978-3-030-12381-9\_12}
\item[2017] \tab{}J.~M. Barajas, G. Boeing, and J. Wartell. \enquote{Neighborhood Change, One Pint at a Time: The Impact of Local Characteristics on Craft Breweries.} In: \textit{Untapped: Exploring the Cultural Dimensions of Craft Beer} (pp. 155--176), edited by N.~G. Chapman, J.~S. Lellock, and C.~D. Lippard. Morgantown, WV:\ West Virginia University Press. \href{https://doi.org/10.31235/osf.io/v88hh}{doi:10.31235/osf.io/v88hh}
\end{tablist}
\subsection*{Conference Proceedings}
\begin{tablist}
\item[2023] \tab{}G. Boeing, J.~G. Harten, and R. Sanchez-Moyano. \enquote{Digitalization of the Housing Search: Homeseekers, Gatekeepers, and Market Legibility.} \textit{Bringing Digitalization Home: How Can Technological Changes Address Housing-Related Challenges?} Cambridge, MA:\ Harvard University Joint Center for Housing Studies. \href{https://bit.ly/3IIQ61d}{https://bit.ly/3IIQ61d}
\item[2022] \tab{}C. Higgs, A. Alderton, J. Rozek, D. Adlakha, H. Badland, G. Boeing, A. Both, E. Cerin, M. Chandrabose, C. De Gruyter, L. Gunn, A. De Livera, E. Hinckson, S. Liu, S. Mavoa, J. Sallis, K. Simons, and B. Giles-Corti. \enquote{Calculation of Policy-Relevant Spatial Indicators of Urban Liveability: Experiences of Scaling a Research Programme from Local to Global.} \textit{10\textsuperscript{th} State of Australasian Cities Conference}. Melbourne, Australia: APO.\@ \href{https://doi.org/10.25916/jbnk-hp52}{doi:10.25916/jbnk-hp52}
\item[2019] \tab{}G. Boeing. \enquote{Street Network Patterns, Orientation, and Entropy around the World.} \textit{Compendium of the Transportation Research Board 98\textsuperscript{th} Annual Meeting}. Washington, DC:\ Transportation Research Board. \href{https://trid.trb.org/view/1573315}{https://trid.trb.org/view/1573315}
\item[2018] \tab{}A. Abdelkader, G. Boeing, B.~T. Fasy, and D.~L. Millman. Topological Distance between Nonplanar Transportation Networks. \textit{Proceedings of the 28\textsuperscript{th} Fall Workshop on Computational Geometry}. New York, NY:\ City University of New York. \href{https://bit.ly/3lHhqAD}{https://bit.ly/3lHhqAD}
\item[2018] \tab{}G. Boeing. \enquote{The Relative Circuity of Walkable and Drivable Urban Street Networks.} \textit{Compendium of the Transportation Research Board 97\textsuperscript{th} Annual Meeting}. Washington, DC:\ Transportation Research Board. \href{https://trid.trb.org/view/1495502}{https://trid.trb.org/view/1495502}
\end{tablist}
\subsection*{Edited Articles and Reviews}
\begin{tablist}
\item[2024] \tab{} D. Adlakha, E. Resendiz, A.~V. Moudon, J. Sallis, C. Higgs, B. Giles-Corti, D. Salvo, E. Cerin, G. Boeing, S. Liu, and M. Lowe. \enquote{El Observatorio Global de Ciudades Saludables y Sostenibles.} \textit{Notas CPAU} 55, 2738. \href{https://bit.ly/3Xv8JOW}{https://bit.ly/3Xv8JOW}
\item[2023] \tab{}G. Boeing and W. Riggs. \enquote{Rethinking the One-Way Street.} \textit{Transfers Magazine} 11 (Fall), 18--22. \href{https://bit.ly/3sjeP7J}{https://bit.ly/3sjeP7J}
\item[2018] \tab{}G. Boeing. \enquote{Automated Street Network Analysis for Urban Planners with OSMnx.} \textit{Planning and Technology Today} 117 (Spring), 10--11. \href{https://doi.org/10.31235/osf.io/mkbp3}{doi:10.31235/osf.io/mkbp3}
\item[2017] \tab{}G. Boeing. \enquote{A Review of the Structure and Dynamics of Cities: Urban Data Analysis and Theoretical Modeling.} \textit{Journal of the American Planning Association} 83 (4), 418. \href{https://doi.org/10.1080/01944363.2017.1362306}{doi:10.1080/01944363.2017.1362306}
\item[2017] \tab{}G. Boeing. \enquote{Understanding Cities through Networks and Flows.} \textit{Berkeley Planning Journal} 28 (1), 118--123. \href{https://doi.org/10.5070/BP328133862}{doi:10.5070/BP328133862}
\item[2016] \tab{}G. Boeing. \enquote{How Our Neighborhoods Lost Food, and How They Can Get It Back.} \textit{Progressive Planning} 206 (Winter), 35--37. \href{https://doi.org/10.31235/osf.io/a5e2q}{doi:10.31235/osf.io/a5e2q}
\end{tablist}
\subsection*{Reports and Other Publications}
\begin{tablist}
\item[2023] \tab{}R. Sanchez-Moyano, G. Boeing, and J.~G. Harten. \enquote{The Promises and Pitfalls of Housing Search Digitalization.} Federal Reserve Bank of San Francisco. Jun 28. \href{https://bit.ly/43dlGwo}{https://bit.ly/43dlGwo}
\item[2023] \tab{}G. Boeing, J. Ha, Y. Zhou. \enquote{Improving the Accuracy of Intersection Counts and Densities for Measuring Urban Street Network Compactness and Resilience.} Caltrans, Pacific Southwest Region UTC.\@ Technical report. \href{https://rosap.ntl.bts.gov/view/dot/67537}{https://rosap.ntl.bts.gov/view/dot/67537}
\item[2022] \tab{}G. Boeing. \enquote{Around the World, Cities Are Falling Short on Health and Sustainability Goals.} Brookings Institution. Nov 16. \href{https://brook.gs/3ULDj2K}{https://brook.gs/3ULDj2K}
\item[2021] \tab{}G. Boeing, Y. Lu, C. Pilgram, and P. Mannino. \enquote{Race, Class, and the Production of and Exposure to Vehicular Pollution in Los Angeles.} U.S. Department of Transportation, Pacific Southwest Region UTC.\@ Technical report. \href{https://rosap.ntl.bts.gov/view/dot/67432}{https://rosap.ntl.bts.gov/view/dot/67432}
\item[2020] \tab{}G. Boeing. \enquote{How Much Does It Cost to Rent an Apartment, Anyway?} Planetizen. Mar 10. \href{https://bit.ly/37SU4lf}{https://bit.ly/37SU4lf}
\item[2018] \tab{}P. Waddell, G. Boeing, M. Gardner, and E. Porter. \enquote{An Integrated Pipeline Architecture for Modeling Urban Land Use, Travel Demand, and Traffic Assignment.} U.S. Department of Energy SMART Mobility Urban Science Pillar: Coupling Land Use Models and Network Flow Models. Technical report. \href{https://doi.org/10.31235/osf.io/74zaw}{doi:10.31235/osf.io/74zaw}
\item[2017] \tab{}G. Boeing. \enquote{Making Street Network Analysis Easy for Planners with OpenStreetMap.} Association of Collegiate Schools of Planning. Apr 11. \href{https://bit.ly/3n5ac9K}{https://bit.ly/3n5ac9K}
\end{tablist}
\subsection*{Patents}
\begin{tablist}
\item[2014] \tab{}A.~E. Beck, G. Boeing, and D. Shannon. \textit{Systems and Methods for Analyzing Requirements}. United States patent US8650186B2, European patent EP2413256, Australian patent AU2011204935, Canadian patent CA2747481, Chinese patent CN102346763.
\end{tablist}
\section*{Invited Talks}
\begin{tablist}
\item[2024] \tab{}\enquote{Generalizing and Localizing the Science of Urban Networks.} NYU Center for Urban Science and Progress. Brooklyn, New York. Oct 28.
\item[2024] \tab{}\enquote{Urban Mobility and Street Network Science.} Cornell University, Tech Campus. Urban Data invited lecture. New York, New York. Sep 12.
\item[2024] \tab{}\enquote{Searching for Housing Online: The Challenges and Opportunities of Digitalization.} University of Texas at Austin, Good Systems Smart Cities Consortium. Austin, Texas. Apr 1.
\item[2024] \tab{}\enquote{Generalizability in Urban Science.} Cornell University, Department of City and Regional Planning. Ithaca, New York. Mar 29.
\item[2023] \tab{}\enquote{Urban Informatics for Transport: Measuring Networks and Access around the World.} University Consortium for Geographic Information Science. Washington, DC.\@ Feb 17.
\item[2023] \tab{}\enquote{Measuring Built Environments around the World: New Insights into Urban Sustainability and Health.} The Ohio State University, Center for Urban and Regional Analysis. Tech in the City Speaker Series. Columbus, Ohio. Feb 10.
\item[2022] \tab{}\enquote{Digitalization of the Housing Search: Homeseekers, Gatekeepers, and Market Legibility.} University of Washington, Interdisciplinary Ph.D. Program in Urban Design and Planning and Ph.D. Program in the Built Environment. Seattle, Washington. May 20.
\item[2022] \tab{}\enquote{Street Network Models and Indicators for Every Urban Area in the World.} National University of Singapore, Department of Real Estate seminar series. Singapore. Mar 14.
\item[2021] \tab{}\enquote{Urban Morphology and Street Network Science.} University of Cincinnati, Department of Geography. Cincinnati, Ohio. Oct 15.
\item[2021] \tab{}\enquote{Street Network Science and New Urban Data.} Cornell University, Tech Campus. Urban Data guest lecture. New York, New York. Oct 13.
\item[2021] \tab{}\enquote{Street Networks and the Evolving Urban Structure.} CEMFI Empirical Microeconomics seminar series. Madrid, Spain. Apr 8.
\item[2021] \tab{}\enquote{Street Network Models and Indicators for Every Urban Area in the World.} University of Bristol and Newcastle University Centre for Data. Spatial Analytics and Data seminar series. Newcastle upon Tyne, England. Jan 26.
\item[2020] \tab{}\enquote{Street Networks and the Evolving Urban Structure.} University of Chicago, Center for Spatial Data Science and Mansueto Institute for Urban Innovation. Chicago, Illinois. Nov 18.
\item[2020] \tab{}\enquote{Street Network Models and Indicators for Every Urban Area in the World.} Asian Institute of Management. The Science of Data seminar series. Makati, Philippines. Oct 26.
\item[2020] \tab{}\enquote{OSMnx for Urban Street Network Analysis.} University of California, Los Angeles, Department of Urban Planning. Introduction to GIS and Spatial Data Science, guest lecture. Los Angeles, California. Oct 26.
\item[2020] \tab{}\enquote{Introduction to Street Network Analysis with OSMnx.} Alan Turing Institute and University of Warwick. Data Science for Social Good lecture series. London, England. Aug 21.
\item[2020] \tab{}\enquote{Volunteered Geographic Information in Urban Analytics.} University of California, Berkeley, Department of City and Regional Planning. Introduction to Urban Data Analytics, guest lecture. Berkeley, California. Jun 17.
\item[2019] \tab{}\enquote{Urban Data Science: Street Networks and Travel Behavior.} Evidation Health. Data Science Seminar Series. Santa Barbara, California. May 16.
\item[2019] \tab{}\enquote{Network Science for Urban Transportation Modeling and Long-Range Planning.} MIT Megacity Logistics Lab at the Center for Transportation and Logistics. Cambridge, Massachusetts. May 9.
\item[2019] \tab{}\enquote{Computational Modeling and Analysis in Transportation System Design.} Cornell University. Systems Engineering Seminar Series. Ithaca, New York. Apr 12.
\item[2019] \tab{}\enquote{Growth, Access, and Resilience as Urban Technology Paradigms Shift.} The World Bank, Global Facility for Disaster Reduction and Recovery. Washington, DC.\@ Apr 3.
\item[2018] \tab{}\enquote{Computational Urban Street Network Analysis.} Virginia Tech. Urban Computing Seminar Series. Arlington, Virginia. Dec 4.
\item[2018] \tab{}\enquote{Urban Science and Street Networks.} Massachusetts Institute of Technology, Department of Urban Studies and Planning. Cambridge, Massachusetts. Nov 27.
\item[2018] \tab{}\enquote{Introduction to Street Network Analysis with OSMnx.} University of Helsinki, Digital Geography Lab. Helsinki, Finland. Nov 16.
\item[2018] \tab{}\enquote{Urban Street Network Science with OSMnx.} Tufts University, Department of Urban and Environmental Policy and Planning. Somerville, Massachusetts. Nov 15.
\item[2018] \tab{}\enquote{Free Data for Free Spaces: Democratizing and Disseminating Spatial Network Data and Models for Better Urban Planning.} Venice Biennale of Architecture. Venice, Italy. Oct 24.
\item[2018] \tab{}\enquote{Online Rental Housing Market Representation and the Digital Reproduction of Urban Inequality.} Harvard University, Joint Center for Housing Studies. Cambridge, Massachusetts. Sep 20.
\item[2018] \tab{}\enquote{Urban Street Network Science: Modeling, Simulating, and Visualizing Complex Transportation Systems.} Uber Technologies. San Francisco, California. Aug 20.
\item[2018] \tab{}\enquote{The Study of Street Networks in Urban Data Science.} NYU Center for Data Science. New York, New York. Apr 18.
\item[2018] \tab{}\enquote{Computational Street Network Analysis in Urban Form Studies.} Columbia University Graduate School of Architecture, Planning, and Preservation. New York, New York. Apr 17.
\item[2018] \tab{}\enquote{Scalable Methods for Acquiring, Analyzing, and Visualizing Urban Street Networks.} NYU Center for Urban Science and Progress, Applied Urban Science Group. Brooklyn, New York. Apr 16.
\item[2018] \tab{}\enquote{Studying Urban Form and Resilience through Large-Scale Street Network Analysis.} University of California, Santa Barbara, Department of Geography. Santa Barbara, California. Jan 30.
\item[2018] \tab{}\enquote{Seeing Cities through New Technologies and Big Data.} University of Oregon, School of Planning, Public Policy, and Management. Eugene, Oregon. Jan 25.
\item[2018] \tab{}\enquote{Urban Form, Sustainability, and Large-Scale Street Network Analysis.} Northeastern University, School of Public Policy and Urban Affairs. Boston, Massachusetts. Jan 18.
\item[2018] \tab{}\enquote{Understanding Urban Form and Circulation through Large-Scale Street Network Analysis.} Dartmouth College, Department of Geography. Hanover, New Hampshire. Jan 15.
\item[2017] \tab{}\enquote{Street Network Analyses of Urban Form Resilience and Equity.} University of Chicago, Mansueto Institute for Urban Innovation. Chicago, Illinois. Nov 2.
\item[2017] \tab{}\enquote{Measuring Urban Form Sustainability with Topological and Geometric Street Network Analysis.} Stanford University, Sustainable Urban Systems Initiative. Palo Alto, California. Oct 26.
\item[2017] \tab{}\enquote{Graph-Theoretic Representation and Analysis of Urban Street Networks.} Montana State University, Department of Computer Science. Bozeman, Montana. Oct 16.
\item[2017] \tab{}\enquote{OpenStreetMap Network Data for Transportation Planning.} Remix Transit Planning. San Francisco, California. Aug 16.
\item[2017] \tab{}\enquote{Street Networks: Urban Form and Resilience.} University of Florida, Department of Urban and Regional Planning. Gainesville, Florida. May 8.
\item[2017] \tab{}\enquote{Scalable Methods for Acquiring, Analyzing, and Visualizing Urban Street Networks.} The Santa Fe Institute. Santa Fe, New Mexico. Feb 2.
\item[2016] \tab{}\enquote{Urban Data Science for Studying Housing Affordability and Urban Form.} NYU Center for Urban Science and Progress. Brooklyn, New York. Dec 14.
\item[2016] \tab{}\enquote{New Insights into Rental Housing Markets: Web Scraping and Analyzing Craigslist Rental Listings.} City of Oakland. Oakland, California. May 12.
\item[2016] \tab{}\enquote{New Insights into Rental Housing Markets: Web Scraping and Analyzing Craigslist Rental Listings.} City of San Francisco, Citywide Planning Division. San Francisco, California. Apr 19.
\item[2016] \tab{}\enquote{Smart Cities, Technology, and Representation: Prospects and Challenges.} Adobe Systems. Sustainability Speaker Series. San Jose, California. Jan 28.
\end{tablist}
\subsection*{Invited Symposium Talks}
\begin{tablist}
\item[2023] \tab{}\enquote{Spatial Analytics to Benchmark and Monitor Healthy and Sustainable Cities.} Exploring the Research Opportunities from the Intersection of Advancing Planetary Health and Cardiovascular Disease: Improving Human Health. Hosted by the U.S. National Institutes of Health. Dec 14--15.
\item[2023] \tab{}\enquote{The 1,000 Cities Challenge.} Cities, Form, Environmental Exposures, and Health Impacts. Hosted by the Barcelona Institute for Global Health. Sitges, Spain. Oct 24--25.
\item[2023] \tab{}\enquote{The Evolving Housing Search: Digitalization and Market Legibility.} Southern California Association of Governments Annual Demographic Workshop. Los Angeles, California. Sep 20.
\item[2022] \tab{}\enquote{Using Open Data and Open-Source Software to Develop Spatial Indicators of Urban Design and Transport Features for Achieving Healthy and Sustainable Cities.} Global Launch of the Lancet Global Health Series on Urban Design, Transport, and Health. Hosted by \textit{The Lancet Global Health}. May 10--12.
\item[2022] \tab{}\enquote{Digitalization of the Housing Search: Homeseekers, Gatekeepers, and Market Legibility.} Bringing Digitalization Home: How Can Technological Changes Address Housing-Related Challenges? Hosted by the Harvard University Joint Center for Housing Studies and Graduate School of Design. Cambridge, Massachusetts. Mar 24--26.
\item[2021] \tab{}\enquote{Housing Search in the Age of Big Data: Smarter Cities or the Same Old Blind Spots?} The Intersection of Smart Cities with Housing and Community Development. Hosted by \textit{Housing Policy Debate} and Virginia Tech. Feb 15.
\item[2019] \tab{}Spatial Data Science Symposium: Setting the Spatial Data Science Agenda. Hosted by the University of California, Santa Barbara. Santa Barbara, California. Dec 9--11.
\end{tablist}
\subsection*{Campus Talks}
\begin{tablist}
%\item[2023] \tab{}\enquote{Generalizability in Urban Science.} USC Price School Faculty Seminar Series. Los Angeles, California. Nov 14.
\item[2023] \tab{}\enquote{Resilient by Design: Simulating Street Network Disruptions across Every Urban Area in the World.} METRANS University Transportation Center Speaker Series. Los Angeles, California. Nov 2.
\item[2022] \tab{}\enquote{Local Inequities in the Relative Production of and Exposure to Vehicular Air Pollution in Los Angeles.} METRANS University Transportation Center Speaker Series. Los Angeles, California. Mar 30.
\item[2020] \tab{}\enquote{Street Network Models and Indicators for Every Urban Area in the World.} METRANS University Transportation Center Speaker Series. Los Angeles, California. Oct 27.
\item[2018] \tab{}\enquote{Urban Street Network Science with OSMnx.} Northeastern University Seattle Campus. Seattle, Washington. Nov 28.
\item[2018] \tab{}\enquote{The Legibility of Urban Spatial Order in Computational Street Network Analysis.} NUVis: Northeastern University Visualization Consortium. Boston, Massachusetts. Oct 18.
\item[2017] \tab{}\enquote{Urban Street Network Analysis with OSMnx.} Geospatial Innovation Facility, College of Natural Resources, University of California, Berkeley. Berkeley, California. Oct 5.
\end{tablist}
\section*{Conference Activity}
\subsection*{Keynote and Plenary Addresses}
\begin{tablist}
\item[2024] \tab{}\enquote{The Design of American Streets.} Keynote address. Induction ceremony of the Nu Theta chapter of Gamma Theta Upsilon, the international geographical honor society. Los Angeles, California. Apr 23.
\item[2021] \tab{}\enquote{Urban Mobility and Street Network Science.} Annual Regional Studies/Regional Science keynote lecture. Regional Studies Association Winter Conference. Nov 8.
\item[2019] \tab{}\enquote{Geographic Information, Spatial Networks, and the New Urban Science.} 8\textsuperscript{th} annual \textit{Transactions in GIS} plenary address. American Association of Geographers Annual Meeting. Washington, DC.\@ Apr 3--7.
\item[2018] \tab{}\enquote{The Legible and the Illegible: Urban Science, City Design, and Human Circulation.} Plenary address. The Architect of the Future Conference. Moscow, Russia. Sep 10--11.
\end{tablist}
\subsection*{Sessions Organized}
\begin{tablist}
\item[2017] \tab{}\enquote{Emerging Computational Methods in Urban Design.} Association of Collegiate Schools of Planning Annual Conference. Denver, Colorado. Oct 12--15.
\end{tablist}
\subsection*{Sessions Chaired/Moderated}
\begin{tablist}
\item[2021] \tab{}\enquote{Big Data and Machine Learning for Urban Mobility.} Association of Collegiate Schools of Planning Annual Conference. Miami, Florida. Oct 21--23.
\item[2019] \tab{}\enquote{Machine Learning Methods.} Association of Collegiate Schools of Planning Annual Conference. Greenville, South Carolina. Oct 24--27.
\item[2019] \tab{}\enquote{Social Systems.} International Conference on Network Science. Burlington, Vermont. May 27--31.
\item[2018] \tab{}\enquote{Smart Cities Technologies for Transportation Systems.} Smart Cities: Critical Infrastructure Symposium. Seattle, Washington. Nov 29.
\end{tablist}
\subsection*{Invited Panelist}
\begin{tablist}
\item[2022] \tab{}\enquote{Teaching Data Science in Urban Planning.} Panelist with Marta Gonz{\'a}lez, Sarah Williams, and Anthony Vanky; chaired by Adam Millard-Ball. Association of Collegiate Schools of Planning Annual Conference. Toronto, Canada. Nov 3--6.
\item[2022] \tab{}\enquote{City Intelligence with Open Data.} Panelist with Stephanie Dietrick, Cy Chan, and Sobhan Moosavi; chaired by Hua Wei. ACM International Conference on Web Search and Data Mining. Phoenix, Arizona. Feb 21--25.
\item[2021] \tab{}\enquote{Machine Learning in Public Health.} Panelist with Catherine D'Ignazio, Jing Gao, and Alykhan Mohamed; chaired by Rumi Chunara. Conference on Neural Information Processing Systems. Dec 6--14.
\item[2021] \tab{}\enquote{Plenary Session: AI and Big Data in Real Estate and Urban Studies.} Panelist with Stephanie Sy, Thies Lindenthal, Man Cho, and Warren Wan; chaired by Tien Foo Sing. Joint Real Estate Conference of the American Real Estate and Urban Economics Association, Asian Real Estate Society, and Global Chinese Real Estate Congress. Singapore. Jul 18--21.
\item[2020] \tab{}\enquote{Nationwide Studies of Urban Form: Evolution, Innovation, and New Opportunities.} Panelist with Reid Ewing, Shima Hamidi, and Catherine Brinkley; chaired by Steven Richter. Association of Collegiate Schools of Planning Annual Conference. Nov 5--8.
\item[2020] \tab{}\enquote{Urban Data Science Beyond the Hype: Understanding the Challenges and Opportunities of Incorporating Data Science into Urban Planning Pedagogy and Practice.} Panelist with Karen Chapple and Atul Pokharel; chaired by Abigail Cochran and Manuel Santana. Association of Collegiate Schools of Planning Annual Conference. Nov 5--8.
\item[2019] \tab{}\enquote{Urban Data Science: Methods and Models for Our Changing Cities.} Panelist with Vanessa Frias-Martinez, Wenfei Xu, Song Gao, and Ate Poorthuis; chaired by Levi Wolf and Wei Kang. American Association of Geographers Annual Meeting. Washington, DC.\@ Apr 3--7.
\item[2018] \tab{}\enquote{Big Ideas Session on Civic Analytics and Urban Science.} Panelist with Luis Bettencourt, Marta Gonz{\'a}lez, and Sarah Williams; chaired by Constantine Kontokosta. Association of Collegiate Schools of Planning Annual Conference. Buffalo, New York. Oct 25--28.
\item[2018] \tab{}\enquote{Who Benefits from \enquote{Smart City} Technologies? How Can They Be a Piece of the Puzzle Toward Social and Environmental Justice?} Panelist with Lisa Schweitzer, Clint Andrews, and Tom Sanchez; chaired by Mehdi Heris. Association of Collegiate Schools of Planning Annual Conference. Buffalo, New York. Oct 25--28.
\item[2017] \tab{}\enquote{Public Communication Strategies for Planning Academics.} Panelist with Jennifer Dill, Yingling Fan, and Justin Hollander; chaired by Carissa Slotterback. Association of Collegiate Schools of Planning Annual Conference. Denver, Colorado. Oct 12--15.
\end{tablist}
\subsection*{Conference Papers Presented\footnote{Presenting author \textit{italicized} if other than first author.}}
\begin{tablist}
%\item[2025] \tab{}M. Lore, H. Caggiano, J.~G. Harten, and G. Boeing. \enquote{Normative Influences on Sustainable Transportation Choices in Crowd-Sourced Passive Data.} International Conference on Urban Affairs. Vancouver, Canada. Apr 15--19.
%\item[2025] \tab{}J.~G. Harten and G. Boeing. \enquote{New Sociospatial Narratives in Qualitative Housing Data.} American Association of Geographers Annual Meeting. Detroit, Michigan. Mar 24--28.
\item[2024] \tab{}G. Boeing and J. Ha. \enquote{Vulnerability of Commutes: A Nationwide Simulation of Street Network Disruptions.} Association of Collegiate Schools of Planning Annual Conference. Seattle, Washington. Nov 7--9.
\item[2024] \tab{}G. Boeing and Y. Zhou. \enquote{Uncongested Travel Time Prediction from Sparse Open Data.} Association of Collegiate Schools of Planning Annual Conference. Seattle, Washington. Nov 7--9.
\item[2024] \tab{}J.~G. Harten, G. Boeing, and M. Lore. \enquote{Revealing the Exclusionary Language of Shared Rental Ads Through AI.} Association of Collegiate Schools of Planning Annual Conference. Seattle, Washington. Nov 7--9.
\item[2024] \tab{}M. Lowe, C. Higgs, G. Boeing, X. Delclòs Alió, A. Queralt, E. Resendiz, D. Adlakha, B. Giles-Corti, E. Cerin, J. Sallis, A. Vernez Moudon, J. Arundel, S. Liu, V. Heikinheimo, J. Schipperijn, and D. Salvo. \enquote{1,000 Cities Challenge Workshop: Calculating Policy and Spatial Indicators of Healthy and Sustainable Cities.} Urban Transitions Conference. Sitges, Spain. Nov 5--7.
\item[2024] \tab{}M. Lowe, D. Salvo, C. Higgs, D. Adlakha, E. Resendiz, G. Boeing, R. Turner, J. Sallis, E. Cerin, A.~V. Moudon, E. Hinckson, J. Arundel, S. Liu, V. Heikinheimo, and B. Giles-Corti. \enquote{1,000 Cities Challenge: Scaling Up the Global Observatory of Healthy and Sustainable Cities.} International Society for Physical Activity and Health Congress. Paris, France. Oct 28--31.
\item[2024] \tab{}J.~G. Harten and G. Boeing. \enquote{Single Women Wanted: The Role of Gender in Accessing Shared Housing.} International Conference on Urban Affairs. New York, New York. Apr 24--27.
\item[2024] \tab{}G. Boeing and J. Ha. \enquote{Resilient by Design: Simulating Street Network Disruptions across Every Urban Area in the World.} American Association of Geographers Annual Meeting. Honolulu, Hawaii. Apr 16--20.
\item[2024] \tab{}M. Awad, S. Bacq, G. Boeing, D. Dentoni, and S. Osbourne. \enquote{Collective Organizing for Urban Problems: An Integrative Review and Interdisciplinary Roadmap from Entrepreneurship, Public Management, and Urban Planning.} Journal of Management Studies Conference. Edinburgh, Scotland. Mar 5--6.
\item[2023] \tab{}M. Lore, J.~G. Harten, and G. Boeing. \enquote{Computer-Assisted Methods for Thematic Coding of Large-Scale Text Data in Urban Planning.} Association of Collegiate Schools of Planning Annual Conference. Chicago, Illinois. Oct 19--21.
\item[2023] \tab{}G. Boeing and \textit{Y. Zhou}. \enquote{Improving the Accuracy of Intersection Counts and Density Measures of Urban Street Networks.} Association of Collegiate Schools of Planning Annual Conference. Chicago, Illinois. Oct 19--21.
\item[2023] \tab{}G. Boeing and \textit{J. Ha}. \enquote{Simulating Street Network Resilience and Robustness around the World.} Association of Collegiate Schools of Planning Annual Conference. Chicago, Illinois. Oct 19--21.
\item[2023] \tab{}G. Boeing, \textit{C. Pilgram}, and Y. Lu. \enquote{Street Network Design and Transport-Related Greenhouse Gas Emissions around the World.} Transportation Research Board Annual Meeting. Washington, DC.\@ Jan 8--12.
\item[2022] \tab{}J.~G. Harten and G. Boeing. \enquote{Negotiating Vulnerability: The Role of Gender in Shared Housing.} Association of Collegiate Schools of Planning Annual Conference. Toronto, Canada. Nov 3--6.
\item[2022] \tab{}G. Boeing, C. Higgs, S. Liu, B. Giles-Corti, J.~F. Sallis, E. Cerin, M. Lowe, D. Adlakha, E. Hinckson, A.~V. Moudon, D. Salvo, M.~A. Adams, L.~V. Barrozo, T. Bozovic, X. Delclòs-Alió, J. Dygrýn, S. Ferguson, K. Gebel, T.~P. Ho, P. Lai, J.~C. Martori, K. Nitvimol, A. Queralt, J.~D. Roberts, G.~H. Sambo, J. Schipperijn, D. Vale, N. Van de Weghe, G. Vich, and J. Arundel. \enquote{Using Open Data and Open-Source Software to Develop Spatial Indicators of Urban Design and Transport Features for Achieving Healthy and Sustainable Cities.} International Society for Physical Activity and Health Congress. Abu Dhabi, United Arab Emirates. Oct 23--26.
\item[2022] \tab{}G. Boeing. \enquote{Measuring Healthy, Sustainable Cities: Global Urban Indicators from Open Data.} World Planning Schools Congress. Nusa Dua, Indonesia. Aug 29--Sep 2.
\item[2022] \tab{}G. Boeing, \textit{Y. Lu}, C. Pilgram, and P. Mannino. \enquote{Race, Class, and the Production of and Exposure to Vehicular Pollution in Los Angeles.} Association for Public Policy Analysis \& Management Fall Conference. Austin, Texas. Mar 27--29.
\item[2022] \tab{}G. Boeing, Y. Lu, C. Pilgram, and P. Mannino. \enquote{Local Inequities in the Relative Production of and Exposure to Vehicular Air Pollution in Los Angeles.} American Association of Geographers Annual Meeting. New York, NY.\@ Feb 25--Mar 1.
\item[2022] \tab{}G. Boeing, \textit{Y. Lu}, C. Pilgram, and P. Mannino. \enquote{Local Inequities in the Relative Production of and Exposure to Vehicular Air Pollution in Los Angeles.} Transportation Research Board Annual Meeting. Washington, DC.\@ Jan 9--13.
\item[2021] \tab{}S. Jamal, E. Desjardins, G. Boeing, R. Lovelace, and A. Paez. \enquote{Using R to Develop Open Source Course Packages with Computational Notebooks: An Example of Transportation Geography.} Innovations in Education Conference. Hamilton, Canada. Dec 9--10.
\item[2021] \tab{}C. Higgs, J. Rozek, A. Alderton, B. Giles-Corti, H. Badland, C. De Gruyter, D. Adlakha, K. Simons, A. Both, G. Boeing, E. Cerin, A. De Livera, S. Liu, M. Chandrabose, J.~F. Sallis, L. Gunn, and E. Hinckson. \enquote{Calculation of Policy-Relevant Spatial Indicators of Urban Liveability: Experiences of Scaling a Research Programme from Local to Global.} State of Australasian Cities Conference. Melbourne, Australia. Dec 1--3.
\item[2021] \tab{}G. Boeing, \textit{Y. Lu}, C. Pilgram, and P. Mannino. \enquote{Race, Class, and the Production of and Exposure to Vehicular Pollution in Los Angeles.} Association of Collegiate Schools of Planning Annual Conference. Miami, Florida. Oct 21--23.
\item[2021] \tab{}S. Liu, C. Higgs, J. Arundel, G. Boeing, N. Cerdera, and D. Moctezuma. \enquote{A Generalized Framework for Measuring Pedestrian Accessibility around the World Using Open Data.} Association of Collegiate Schools of Planning Annual Conference. Miami, Florida. Oct 21--23.
\item[2021] \tab{}G. Boeing. \enquote{Street Network Models and Indicators for Every Urban Area in the World.} Transportation Research Board Annual Meeting. Jan 25--29.
\item[2020] \tab{}G. Boeing. \enquote{Street Network Models, Indicators, and Relationships with Vehicular Emissions for Every Metropolitan Area in the World.} Association of Collegiate Schools of Planning Annual Conference. Nov 5--8.
\item[2020] \tab{}G. Boeing. \enquote{The Street Grid and Car Ownership: Trends in U.S. Transportation Network Design.} Transportation Research Board Annual Meeting. Washington, DC.\@ Jan 12--16.
\item[2019] \tab{}G. Boeing. \enquote{Off the Grid: The Evolution of American Street Network Planning and Design.} Association of Collegiate Schools of Planning Annual Conference. Greenville, South Carolina. Oct 24--27.
\item[2019] \tab{}G. Boeing and \textit{W. Riggs} \enquote{Converting One-Way Streets to Two-Way Streets to Improve Transportation Network Efficiency and Reduce Emissions.} Association of Collegiate Schools of Planning Annual Conference. Greenville, South Carolina. Oct 24--27.
\item[2019] \tab{}G. Boeing. \enquote{Urban Spatial Order: Street Network Orientation, Configuration, and Entropy.} International Conference on Network Science. Burlington, Vermont. May 27--31.
\item[2019] \tab{}G. Boeing. \enquote{The Legibility of Urban Form: Spatial Information Platforms and Visualization.} International Conference on Urban Experience and Design. Medford, Massachusetts. Apr 26.
\item[2019] \tab{}G. Boeing. \enquote{Online Rental Housing Market Representation and the Digital Reproduction of Urban Inequality.} Boston Area Research Initiative Annual Conference. Boston, Massachusetts. Apr 26.
\item[2019] \tab{}G. Boeing. \enquote{The Evolution of American Street Network Design and Planning.} Urban Affairs Association Annual Conference. Los Angeles, California. Apr 24--27.
\item[2019] \tab{}A. Abdelkader, G. Boeing, \textit{B.~T. Fasy}, and D.~L. Millman. \enquote{Local Persistent Homology-Based Distances between Nonplanar Road Networks.} Joint Mathematics Meetings. Baltimore, Maryland. Jan 16--19.
\item[2018] \tab{}A. Abdelkader, G. Boeing, B.~T. Fasy, and D.~L. Millman. \enquote{Topological Distance Between Nonplanar Transportation Networks.} Fall Workshop on Computational Geometry. Queens, New York. Oct 26--27.
\item[2018] \tab{}G. Boeing. \enquote{Sociodemographic Representation of Online Rental Housing Listings: Information Surpluses and Deficits.} Association of Collegiate Schools of Planning Annual Conference. Buffalo, New York. Oct 25--28.
\item[2018] \tab{}P. Waddell, I. Garcia-Dorado, S. Maurer, G. Boeing, M. Gardner, E. Porter, and D. Aliaga. \enquote{Urban Modeling Without Zones: A Metropolitan Graph-Based Microsimulation of Real Estate Markets and Transportation.} Association of Collegiate Schools of Planning Annual Conference. Buffalo, New York. Oct 25--28.
\item[2018] \tab{}G. Boeing. \enquote{Transportation Network Modeling and Urban Equity.} Dukakis Center for Urban and Regional Policy Transportation Equity Conference. Boston, Massachusetts. Oct 19.
\item[2018] \tab{}P. Waddell, I. Garcia-Dorado, S. Maurer, G. Boeing, M. Gardner, E. Porter, and D. Aliaga. \enquote{Architecture for Modular Microsimulation of Real Estate Markets and Transportation.} Symposium on Applied Urban Modelling. Cambridge, England. Jun 27--29.
\item[2017] \tab{}G. Boeing. \enquote{New Methods for Acquiring and Analyzing Worldwide Street Network Data: A Multiscale Analysis of 27,000 Urban Street Networks.} Association of Collegiate Schools of Planning Annual Conference. Denver, Colorado. Oct 12--15.
\item[2016] \tab{}G. Boeing. \enquote{Craigslist and U.S. Rental Housing Markets.} American Planning Association Annual Conference. Phoenix, Arizona. Apr 2--5.
\item[2016] \tab{}G. Boeing. \enquote{Understanding Informal Rental Housing Markets through Public Data.} American Association of Geographers. San Francisco, California. Mar 29--Apr 2.
\item[2016] \tab{}J.~M. Barajas, G. Boeing, and \textit{J. Wartell}. \enquote{Neighborhood Change, One Pint at a Time: The Impact of Local Characteristics on Craft Breweries.} Urban Affairs Association Annual Conference. San Diego, California. Mar 16--19.
\item[2015] \tab{}G. Boeing. \enquote{Methods for Measuring the Aggregate Complexity Outcomes of Urban Design.} International Conference on Complex Systems. Tempe, Arizona. Sep 28--Oct 2.
\item[2015] \tab{}G. Boeing. \enquote{Pedagogy of Urban Informatics.} Environmental Design Circus. Berkeley, California. Mar 6.
\item[2014] \tab{}G. Boeing and P. Waddell. \enquote{Web Scraping Urban Data: Lessons from the Lab and the Classroom.} Association of Collegiate Schools of Planning Annual Conference. Philadelphia, Pennsylvania. Oct 30--Nov 2.
\item[2014] \tab{}G. Boeing, D. Church, H. Hubbard, J. Mickens, and L. Rudis. \enquote{LEED-ND and Perceptions of Livability.} Environmental Design Circus. Berkeley, California. Mar 13.
\end{tablist}
\section*{Grants and Awards}
\subsection*{Awards and Honors}
\begin{tablist}
\item[2024] \tab{}USC Price High Impact Research Award
\item[2023] \tab{}National Planning Institute of Australia Award for Planning Research Excellence (joint)
\item[2022] \tab{}Planning Institute of Australia (Victoria) Award for Planning Excellence---Planning Research (joint)
\item[2021] \tab{}USC Price ASPD Golden Apple Award for teaching excellence
\item[2020] \tab{}Stough-Johansson Springer Award, best WRSA paper by an early-career scholar
\item[2019] \tab{}Network Science Society Visualization Prize finalist
\item[2018] \tab{}Information Is Beautiful Awards shortlist
\item[2018] \tab{}ACSP FWIG Emerging Scholar Award
\item[2014] \tab{}Kaye Bock Award, best journal article
\item[2010] \tab{}Accenture Inventor Innovation Award
\end{tablist}
\subsection*{Competitive Grants and Fellowships}
\begin{tablist}
%\item[2024--26] \tab{}Mobility Equity Research Initiative: Reducing Accessibility Gaps for the Most Disadvantaged (\$2,970,000). U.S. Department of Transportation research grant. Co-I.\@
%\item[2024--25] \tab{}Identifying Infrastructure Impediments to Increased Community-Wide Cycling Activity (\$118,389). U.S. Department of Transportation/Pacific Southwest Region University Transportation Center research grant. Co-PI.\@
%\item[2024--25] \tab{}The Center for Emissions Reduction, Resiliency, and Climate Equity in Transportation (\$239,888). U.S. Department of Transportation research grant. Co-I.\@
\item[2024--25] \tab{}Alleviating Health Inequities from Air Pollution in the Gateway Cities Region: An Evidence-Based, Community-Engaged, and Interdisciplinary Approach (\$249,992). USC President's Sustainability Initiative Award. Co-I.\@
\item[2024--25] \tab{}Measuring Street Network Disruptions' Impacts on Real-World Trips to Design More Resilient Infrastructure (\$100,000). U.S. Department of Transportation/Pacific Southwest Region University Transportation Center research grant. PI.\@
\item[2021--22] \tab{}Improving the Accuracy of Intersection Counts and Densities for Measuring Urban Street Network Compactness and Resilience (\$100,000). Caltrans/Pacific Southwest Region University Transportation Center research grant. PI.\@
\item[2020--22] \tab{}Connections Between Built Environments, Policy, and Public Health (\$200,000). The Public Good Projects research grant. PI.\@
\item[2020--21] \tab{}Race, Class, and the Production of and Exposure to Vehicular Pollution in Los Angeles (\$100,000). U.S. Department of Transportation/Pacific Southwest Region University Transportation Center research grant. PI.\@
\item[2019] \tab{}Urban Form Impact: Humans, Environment, Equity (\$50,000). NU Tier 1 research grant. Co-PI.\@
\item[2019] \tab{}NU CSSH summer research matching grant (\$6,000). PI.\@
\item[2019] \tab{}NU Lab for Maps, Texts, and Networks research grant (\$2,500). PI.\@
\item[2016--17] \tab{}University of California Doctoral Completion Fellowship (\$36,655)
\item[2012--16] \tab{}University of California Regents' Fellowship (\$158,025)
\end{tablist}
\section*{Courses Taught}
\subsection*{University of Southern California}
\begin{itemize}
\item Urban Informatics
\item Advanced Urban Analytics
\item Data, Evidence, and Communication for the Public Good
\end{itemize}
\subsection*{Northeastern University}
\begin{itemize}
\item Urban Theory and Science
\item Advanced Spatial Analysis of Urban Systems
\item Big Data for Cities
\end{itemize}
\subsection*{University of California, Berkeley}
\begin{itemize}
\item Urban Informatics and Visualization (graduate student instructor)
\end{itemize}
\subsection*{Planetizen}
\begin{itemize}
\item Python for Planners
\item Data Analysis and Visualization for Planners
\item Geospatial Data Analysis
\item Street Network Analysis
\end{itemize}
\section*{Service}
\subsection*{Board of Directors}
\begin{tablist}
\item[2024--] \tab{}The Public Good Projects, New York, New York
\end{tablist}
\subsection*{Academic Journal Editorship}
\begin{tablist}
\item[2020--] \tab{}\textit{Urban Findings}, editorial board
\item[2021--24] \tab{}\textit{Urban Studies}, editorial board
\item[2021] \tab{}\textit{PLOS One}, guest academic editor
\item[2013--14] \tab{}\textit{Berkeley Planning Journal}, book review editor
\end{tablist}
\subsection*{Service to the Field}
\begin{tablist}
\item[2024--] \tab{}U.S. NIST Artificial Intelligence Safety Institute Consortium
\item[2024--] \tab{}Western Wildfire Resilience Index, advisory committee
\item[2022--] \tab{}Global Observatory of Healthy and Sustainable Cities, executive committee
\item[2021--22] \tab{}Association of Collegiate Schools of Planning, review and appraisal committee
\item[2021--22] \tab{}Spatial Data Science Symposium, program committee
\item[2021] \tab{}World Society for Transport and Land Use Research, emerging data and technologies track co-lead
\item[2019--21] \tab{}Association of Collegiate Schools of Planning, outreach and engagement task force
\item[2019--20] \tab{}Future Cities Challenge, program committee
\item[2018--20] \tab{}Association of Collegiate Schools of Planning, review and appraisal committee
\item[2018--20] \tab{}Symposium on Simulation for Architecture and Urban Design, scientific committee
\end{tablist}
\subsection*{Service to the University}
\begin{tablist}
\item[2024--] \tab{}USC Price Department of Urban Planning and Spatial Analysis hiring search committee
\item[2024--] \tab{}USC Price research committee
\item[2024--25] \tab{}USC Price dean search committee
\item[2020--24] \tab{}USC Price Ph.D. degree committee
\item[2024] \tab{}USC Price Chief Technology Officer search committee
\item[2022--23] \tab{}USC Healthy Campus built environment and sustainability committee
\item[2020--21] \tab{}USC Price research committee
\item[2019--20] \tab{}USC Price Department of Urban Planning and Spatial Analysis hiring search committee
\item[2018--19] \tab{}Northeastern CSSH standing committee on digital proficiencies and quantitative methods
\item[2015--16] \tab{}UC Berkeley DCRP Ph.D. program admissions committee
\end{tablist}
\subsection*{Doctoral Committees}
\begin{itemize}
\item Robert Binder, USC Price, exam committee
\item Seongmoon Cho, USC Price, exam committee
\item David Flores Moctezuma, USC Price, exam and dissertation committees
\item James Gross, USC Price, exam and dissertation committees
\item Jaehyun Ha, USC Price, exam and dissertation committees
\item Naomi Lee, USC Price, exam committee
\item Sihan Mao, USC Price, exam committee
\item Thu Nguyen, USC Price, exam committee
\item Clemens Pilgram, USC Price, exam and dissertation committees
\item Marley Randazzo, USC Price, exam committee
\item Qifan Shao, USC Price, exam committee
\item Bonnie Wang, USC Price, exam committee
\item Mengya Xu, USC Spatial Sciences Institute, exam committee and dissertation committees
\item Li Yi, USC Spatial Sciences Institute, exam and dissertation committees
\item Yuquan Zhou, USC Price, exam and dissertation committees
\end{itemize}
\subsection*{Studio Review Jury}
\begin{itemize}
\item MIT, Workshop on Geographic Information Systems (Prof.\ Sarah Williams), Fall 2018
\end{itemize}
\section*{Peer Review}
\subsection*{Academic Journal Peer Review}
\begin{itemize}
\item \textit{American Behavioral Scientist}
\item \textit{American Journal of Sociology}
\item \textit{American Sociological Review}
\item \textit{Annals of the American Association of Geographers}
\item \textit{Applied Geography}
\item \textit{Applied Network Science}
\item \textit{Case Studies on Transport Policy}
\item \textit{Cities}
\item \textit{Computers, Environment and Urban Systems}
\item \textit{Environment and Planning A:\ Economy and Space}
\item \textit{Environment and Planning B:\ Urban Analytics and City Science}
\item \textit{Environmental Sociology}
\item \textit{European Physical Journal: Data Science}
\item \textit{Geo: Geography and Environment}
\item \textit{Geographical Analysis}
\item \textit{International Journal of Geographical Information Science}
\item \textit{International Planning Studies}
\item \textit{International Regional Science Review}
\item \textit{ISPRS International Journal of Geo-Information}
\item \textit{Journal of the American Planning Association}
\item \textit{Journal of Geographical Systems}
\item \textit{Journal of Open Source Education}
\item \textit{Journal of Planning Education and Research}
\item \textit{Journal of Planning Literature}
\item \textit{Journal of Transport and Land Use}
\item \textit{Journal of Transport Geography}
\item \textit{Journal of Urban Design}
\item \textit{Journal of Urban History}
\item \textit{Journal of Urban Technology}
\item \textit{Journal of Urbanism}
\item \textit{Landscape and Urban Planning}
\item \textit{Mathematics}
\item \textit{Nonlinear Dynamics}
\item \textit{Physica A:\ Statistical Mechanics and Its Applications}
\item \textit{PLOS One}
\item \textit{Proceedings of the National Academy of Sciences}
\item \textit{The Professional Geographer}
\item \textit{Region}
\item \textit{Research in Transportation Economics}
\item \textit{Scientific Reports}
\item \textit{Social Forces}
\item \textit{Social Indicators Research}
\item \textit{Socio-Economic Planning Sciences}
\item \textit{Sustainability}
\item \textit{Sustainable Cities and Society}
\item \textit{Town Planning Review}
\item \textit{Transactions in GIS}
\item \textit{Transport Findings}
\item \textit{Transport Policy}
\item \textit{Transport Reviews}
\item \textit{Transportation Research Part D:\ Transport and Environment}
\item \textit{Transportation Research Record}
\item \textit{Urban Design International}
\item \textit{Urban Planning}
\item \textit{Urban Science}
\item \textit{Urban Studies}
\end{itemize}
\subsection*{Academic Press Peer Review}
\begin{itemize}
\item Cambridge University Press
\item Routledge
\item Springer Nature
\item Taylor \& Francis
\end{itemize}
\subsection*{Funding Agency Peer Review}
\begin{itemize}
\item European Science Foundation
\item Israel Science Foundation
\item U.S. National Science Foundation
\item Research Grants Council of Hong Kong
\item Social Sciences and Humanities Research Council of Canada
\item United Arab Emirates University, Office of Associate Provost for Research
\end{itemize}
\section*{Memberships}
\begin{itemize}
\item American Association of Geographers
\item American Planning Association
\item Association of Collegiate Schools of Planning
\item Association for Computing Machinery
\item Complex Systems Society
\item Network Science Society
\item New York Academy of Sciences
\item Project Management Institute
\item Python Software Foundation
\item Regional Studies Association
\item Urban Affairs Association
\end{itemize}
\section*{Credentials}
\begin{itemize}
\item U.S. Department of Defense secret clearance
\item U.S. Department of Homeland Security public trust
\item Project Management Professional (PMP)
\end{itemize}
\section*{Consulting}
\begin{tablist}
\item[2017--19] \tab{}The Public Good Projects, New York, New York
\item[2017--18] \tab{}Calthorpe Analytics, Berkeley, California
\item[2016--18] \tab{}UrbanSim Inc., Berkeley, California
\item[2013--15] \tab{}Avalon Health Economics, Morristown, New Jersey
\item[2013] \tab{}Raimi \& Associates, Berkeley, California
\item[2010--11] \tab{}Voluntary Service Overseas, London, England
\end{tablist}
\section*{Professional Employment}
\begin{tablist}
\item[2009--13] \tab{}Accenture, New York, New York; London, England; San Diego, California
\item[2007--09] \tab{}Permission Data, New York, New York
\item[2004--07] \tab{}Acumen Inc., Mesa, Arizona
\end{tablist}
% display today's date as Month Year after a vertical space below the end of the text
\begin{center}
\vfill
Updated \monthyeardate\today
\end{center}