├── .github ├── dependabot.yml └── workflows │ └── build_publish.yml ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE.txt ├── README.md └── cv-gboeing.tex /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | --- 2 | version: 2 3 | updates: 4 | - package-ecosystem: github-actions 5 | directory: / 6 | schedule: 7 | interval: weekly 8 | -------------------------------------------------------------------------------- /.github/workflows/build_publish.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Build and Publish PDF 3 | 4 | on: # yamllint disable-line rule:truthy 5 | push: 6 | branches: [main] 7 | workflow_dispatch: 8 | 9 | jobs: 10 | build_latex: 11 | runs-on: ubuntu-latest 12 | permissions: 13 | id-token: write 14 | steps: 15 | - name: Checkout repo 16 | uses: actions/checkout@v4 17 | 18 | - name: Configure AWS credentials 19 | uses: aws-actions/configure-aws-credentials@v4 20 | with: 21 | role-to-assume: arn:aws:iam::800820568312:role/github-actions-gboeing-cv 22 | aws-region: us-west-2 23 | 24 | - name: Build PDF 25 | uses: xu-cheng/latex-action@v3 26 | with: 27 | root_file: cv-gboeing.tex 28 | 29 | - name: Upload PDF to s3 30 | run: aws s3 cp ./cv-gboeing.pdf s3://cv-gboeing/ 31 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | secrets.txt 2 | .DS_Store 3 | *.pdf 4 | 5 | ## Core latex/pdflatex auxiliary files: 6 | *.aux 7 | *.lof 8 | *.log 9 | *.lot 10 | *.fls 11 | *.out 12 | *.toc 13 | *.fmt 14 | *.fot 15 | *.cb 16 | *.cb2 17 | .*.lb 18 | 19 | ## Intermediate documents: 20 | *.dvi 21 | *.xdv 22 | *-converted-to.* 23 | # these rules might exclude image files for figures etc. 24 | # *.ps 25 | # *.eps 26 | # *.pdf 27 | 28 | ## Generated if empty string is given at "Please type another file name for output:" 29 | .pdf 30 | 31 | ## Bibliography auxiliary files (bibtex/biblatex/biber): 32 | *.bbl 33 | *.bbl-SAVE-ERROR 34 | *.bcf 35 | *.blg 36 | *-blx.aux 37 | *-blx.bib 38 | *.run.xml 39 | 40 | ## Build tool auxiliary files: 41 | *.fdb_latexmk 42 | *.synctex 43 | *.synctex(busy) 44 | *.synctex.gz 45 | *.synctex.gz(busy) 46 | *.pdfsync 47 | *.rubbercache 48 | rubber.cache 49 | 50 | ## Build tool directories for auxiliary files 51 | # latexrun 52 | latex.out/ 53 | 54 | ## Auxiliary and intermediate files from other packages: 55 | # algorithms 56 | *.alg 57 | *.loa 58 | 59 | # achemso 60 | acs-*.bib 61 | 62 | # amsthm 63 | *.thm 64 | 65 | # beamer 66 | *.nav 67 | *.pre 68 | *.snm 69 | *.vrb 70 | 71 | # changes 72 | *.soc 73 | 74 | # comment 75 | *.cut 76 | 77 | # cprotect 78 | *.cpt 79 | 80 | # elsarticle (documentclass of Elsevier journals) 81 | *.spl 82 | 83 | # endnotes 84 | *.ent 85 | 86 | # fixme 87 | *.lox 88 | 89 | # feynmf/feynmp 90 | *.mf 91 | *.mp 92 | *.t[1-9] 93 | *.t[1-9][0-9] 94 | *.tfm 95 | 96 | #(r)(e)ledmac/(r)(e)ledpar 97 | *.end 98 | *.?end 99 | *.[1-9] 100 | *.[1-9][0-9] 101 | *.[1-9][0-9][0-9] 102 | *.[1-9]R 103 | *.[1-9][0-9]R 104 | *.[1-9][0-9][0-9]R 105 | *.eledsec[1-9] 106 | *.eledsec[1-9]R 107 | *.eledsec[1-9][0-9] 108 | *.eledsec[1-9][0-9]R 109 | *.eledsec[1-9][0-9][0-9] 110 | *.eledsec[1-9][0-9][0-9]R 111 | 112 | # glossaries 113 | *.acn 114 | *.acr 115 | *.glg 116 | *.glo 117 | *.gls 118 | *.glsdefs 119 | *.lzo 120 | *.lzs 121 | *.slg 122 | *.slo 123 | *.sls 124 | 125 | # uncomment this for glossaries-extra (will ignore makeindex's style files!) 126 | # *.ist 127 | 128 | # gnuplot 129 | *.gnuplot 130 | *.table 131 | 132 | # gnuplottex 133 | *-gnuplottex-* 134 | 135 | # gregoriotex 136 | *.gaux 137 | *.glog 138 | *.gtex 139 | 140 | # htlatex 141 | *.4ct 142 | *.4tc 143 | *.idv 144 | *.lg 145 | *.trc 146 | *.xref 147 | 148 | # hypdoc 149 | *.hd 150 | 151 | # hyperref 152 | *.brf 153 | 154 | # knitr 155 | *-concordance.tex 156 | # TODO Uncomment the next line if you use knitr and want to ignore its generated tikz files 157 | # *.tikz 158 | *-tikzDictionary 159 | 160 | # listings 161 | *.lol 162 | 163 | # luatexja-ruby 164 | *.ltjruby 165 | 166 | # makeidx 167 | *.idx 168 | *.ilg 169 | *.ind 170 | 171 | # minitoc 172 | *.maf 173 | *.mlf 174 | *.mlt 175 | *.mtc[0-9]* 176 | *.slf[0-9]* 177 | *.slt[0-9]* 178 | *.stc[0-9]* 179 | 180 | # minted 181 | _minted* 182 | *.pyg 183 | 184 | # morewrites 185 | *.mw 186 | 187 | # newpax 188 | *.newpax 189 | 190 | # nomencl 191 | *.nlg 192 | *.nlo 193 | *.nls 194 | 195 | # pax 196 | *.pax 197 | 198 | # pdfpcnotes 199 | *.pdfpc 200 | 201 | # sagetex 202 | *.sagetex.sage 203 | *.sagetex.py 204 | *.sagetex.scmd 205 | 206 | # scrwfile 207 | *.wrt 208 | 209 | # svg 210 | svg-inkscape/ 211 | 212 | # sympy 213 | *.sout 214 | *.sympy 215 | sympy-plots-for-*.tex/ 216 | 217 | # pdfcomment 218 | *.upa 219 | *.upb 220 | 221 | # pythontex 222 | *.pytxcode 223 | pythontex-files-*/ 224 | 225 | # tcolorbox 226 | *.listing 227 | 228 | # thmtools 229 | *.loe 230 | 231 | # TikZ & PGF 232 | *.dpth 233 | *.md5 234 | *.auxlock 235 | 236 | # titletoc 237 | *.ptc 238 | 239 | # todonotes 240 | *.tdo 241 | 242 | # vhistory 243 | *.hst 244 | *.ver 245 | 246 | # easy-todo 247 | *.lod 248 | 249 | # xcolor 250 | *.xcp 251 | 252 | # xmpincl 253 | *.xmpi 254 | 255 | # xindy 256 | *.xdy 257 | 258 | # xypic precompiled matrices and outlines 259 | *.xyc 260 | *.xyd 261 | 262 | # endfloat 263 | *.ttt 264 | *.fff 265 | 266 | # Latexian 267 | TSWLatexianTemp* 268 | 269 | ## Editors: 270 | # WinEdt 271 | *.bak 272 | *.sav 273 | 274 | # Texpad 275 | .texpadtmp 276 | 277 | # LyX 278 | *.lyx~ 279 | 280 | # Kile 281 | *.backup 282 | 283 | # gummi 284 | .*.swp 285 | 286 | # KBibTeX 287 | *~[0-9]* 288 | 289 | # TeXnicCenter 290 | *.tps 291 | 292 | # auto folder when using emacs and auctex 293 | ./auto/* 294 | *.el 295 | 296 | # expex forward references with \gathertags 297 | *-tags.tex 298 | 299 | # standalone packages 300 | *.sta 301 | 302 | # Makeindex log files 303 | *.lpz 304 | 305 | # xwatermark package 306 | *.xwm 307 | 308 | # REVTeX puts footnotes in the bibliography by default, unless the nofootinbib 309 | # option is specified. Footnotes are the stored in a file with suffix Notes.bib. 310 | # Uncomment the next line to have this generated file ignored. 311 | #*Notes.bib 312 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | repos: 3 | - repo: https://github.com/pre-commit/pre-commit-hooks 4 | rev: v5.0.0 5 | hooks: 6 | - id: check-added-large-files 7 | args: [--maxkb=50] 8 | - id: check-case-conflict 9 | - id: check-executables-have-shebangs 10 | - id: check-merge-conflict 11 | args: [--assume-in-merge] 12 | - id: check-shebang-scripts-are-executable 13 | - id: check-yaml 14 | - id: detect-private-key 15 | - id: end-of-file-fixer 16 | - id: fix-byte-order-marker 17 | - id: mixed-line-ending 18 | - id: trailing-whitespace 19 | 20 | - repo: https://github.com/Lucas-C/pre-commit-hooks 21 | rev: v1.5.5 22 | hooks: 23 | - id: remove-tabs 24 | 25 | - repo: https://github.com/adrienverge/yamllint 26 | rev: v1.37.0 27 | hooks: 28 | - id: yamllint 29 | args: 30 | - --strict 31 | - > 32 | -d={extends: default, rules: { 33 | line-length: {max: 90}, 34 | quoted-strings: {quote-type: single, 35 | required: only-when-needed}}} 36 | 37 | - repo: https://github.com/meliache/pre-commit-chktex 38 | rev: v0.2.2 39 | hooks: 40 | - id: chktex-system 41 | args: [-n12] 42 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017-2025 Geoff Boeing 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Academic CV 2 | 3 | This repo contains [Geoff Boeing](https://geoffboeing.com/)'s LaTeX academic CV (view [PDF](https://geoffboeing.com/share/cv-gboeing.pdf)), permissively licensed for others to adapt. 4 | 5 | The CV content and formatting follow academic standards and emphasize clear information presentation and typography. The CV's TeX file is automatically compiled to PDF and published whenever a commit is pushed to the main branch, via this [workflow](https://github.com/gboeing/cv/blob/main/.github/workflows/build_publish.yml). This keeps the publicly distributed PDF up-to-date while avoiding commit history pollution from frequent changes to a binary file. 6 | -------------------------------------------------------------------------------- /cv-gboeing.tex: -------------------------------------------------------------------------------- 1 | % !TeX program = pdflatex 2 | % Geoff Boeing's Curriculum Vitae 3 | % Email: boeing@usc.edu 4 | % Web: https://geoffboeing.com/ 5 | % Repo: https://github.com/gboeing/cv 6 | 7 | \RequirePackage[l2tabu,orthodox]{nag} % warn if using any obsolete commands 8 | \documentclass[11pt,letterpaper]{report} % document style 9 | 10 | % load encoding and font packages for pdflatex, in order 11 | \usepackage[T1]{fontenc} % output 8-bit encoded fonts 12 | \usepackage[utf8]{inputenc} % allow input of utf-8 encoded characters 13 | \usepackage{ebgaramond} % document's serif font 14 | \usepackage{tgheros} % document's sans serif font 15 | 16 | % load babel, csquotes, and microtype in order 17 | \usepackage[USenglish]{babel} % auto-regionalize hyphens, quote marks, etc 18 | \usepackage[strict,autostyle]{csquotes} % smart and nestable quote marks 19 | \usepackage[babel=true]{microtype} % enable micro-typographic adjustments 20 | 21 | % load everything else 22 | \usepackage{datetime} % enable formatting of date output 23 | \usepackage{enumitem} % enumerate with [resume] option 24 | \usepackage{geometry} % manually set page margins 25 | \usepackage{setspace} % custom line spacing 26 | \usepackage{tabto} % make nice tabbing 27 | \usepackage{titlesec} % allow custom section fonts 28 | 29 | % load hyperref last for compatibility 30 | \usepackage{hyperref} % enable hyperlinks and pdf metadata 31 | 32 | % what is your name? 33 | \newcommand{\myname}{Geoff Boeing} 34 | 35 | % how far to tab for list items with left-aligned date: different fonts need different widths 36 | \newcommand{\listtabwidth}{1.7cm} 37 | 38 | % define font to use as document's title 39 | \newcommand{\namefont}[1]{{\normalfont\bfseries\Huge{#1}}} 40 | 41 | % set section heading fonts and before/after spacing 42 | \SetTracking{encoding=*, family=\sfdefault}{30} % increase heading font tracking 43 | \titleformat{\section}{\lsstyle\sffamily\small\bfseries\uppercase}{}{}{}{} 44 | \titlespacing{\section}{0pt}{30pt plus 4pt minus 4pt}{8pt plus 2pt minus 2pt} 45 | 46 | % set subsection heading fonts and before/after spacing 47 | \titleformat{\subsection}{\lsstyle\sffamily\footnotesize\bfseries}{}{}{}{} 48 | \titlespacing{\subsection}{0pt}{16pt plus 4pt minus 4pt}{4pt plus 2pt minus 2pt} 49 | 50 | % set page margins (assumes letter paper) 51 | \geometry{body={6.5in, 9.0in}, 52 | left=1.0in, 53 | top=1.0in} 54 | 55 | % prevent paragraph indentation 56 | \setlength\parindent{0em} 57 | 58 | % set line spacing 59 | \setstretch{0.9} 60 | 61 | % define space between list items 62 | \newcommand{\listitemspace}{0.25em} 63 | 64 | % make unordered lists without bullets and use compact spacing 65 | \renewenvironment{itemize} 66 | {\begin{list}{}{\setlength{\leftmargin}{0em} 67 | \setlength{\parskip}{0em} 68 | \setlength{\itemsep}{\listitemspace} 69 | \setlength{\parsep}{\listitemspace}}} 70 | {\end{list}} 71 | 72 | % make tabbed lists so content is left-aligned next to years 73 | \TabPositions{\listtabwidth} 74 | \newlist{tablist}{description}{3} 75 | \setlist[tablist]{leftmargin=\listtabwidth, 76 | labelindent=0em, 77 | topsep=0em, 78 | partopsep=0em, 79 | itemsep=\listitemspace, 80 | parsep=\listitemspace, 81 | font=\normalfont} 82 | 83 | % print only the month and year when using \today 84 | \newdateformat{monthyeardate}{\monthname[\THEMONTH] \THEYEAR} 85 | 86 | % define hyperlink appearance and metadata for pdf properties 87 | \hypersetup{ 88 | colorlinks = true, 89 | urlcolor = black, 90 | citecolor = black, 91 | linkcolor = black, 92 | pdfauthor = {\myname}, 93 | pdfkeywords = {city planning, housing, street networks, transportation, urban design, urban informatics}, 94 | pdftitle = {\myname: Curriculum Vitae}, 95 | pdfsubject = {Curriculum Vitae}, 96 | pdfpagemode = UseNone 97 | } 98 | 99 | \begin{document} 100 | \raggedright{} 101 | 102 | % display your name as the document title 103 | \namefont{\myname} 104 | 105 | % affiliation and contact info blocks 106 | \vspace{1em} 107 | \begin{minipage}[t]{0.700\textwidth} 108 | % current primary affiliation, left-aligned 109 | Department of Urban Planning and Spatial Analysis \\ 110 | Sol Price School of Public Policy \\ 111 | University of Southern California 112 | \end{minipage} 113 | \begin{minipage}[t]{0.295\textwidth} 114 | % contact info details, right-aligned 115 | \raggedleft{} 116 | \href{mailto:boeing@usc.edu}{boeing@usc.edu} \\ 117 | +1 213 740 2773 \\ 118 | \href{https://geoffboeing.com}{geoffboeing.com} 119 | \end{minipage} 120 | 121 | 122 | \section*{Education} 123 | 124 | \begin{tablist} 125 | 126 | \item[Ph.D.] \tab{}City and Regional Planning, University of California, Berkeley, 2017 127 | \item[M.S.] \tab{}Information Management, Arizona State University, 2006 128 | \item[B.S.] \tab{}Computer Information Systems \textit{summa cum laude}, Arizona State University, 2004 129 | 130 | \end{tablist} 131 | 132 | 133 | 134 | \section*{Appointments} 135 | 136 | \begin{tablist} 137 | 138 | \item[2019--] \tab{}University of Southern California \\ 139 | Associate Professor, Department of Urban Planning and Spatial Analysis, 2025-- \\ 140 | Faculty Affiliate, Spatial Sciences Institute, 2021-- \\ 141 | Assistant Professor, Department of Urban Planning and Spatial Analysis, 2019--25 \\ 142 | 143 | \item[2021--] \tab{}Brookings Institution \\ 144 | Nonresident Senior Fellow, Metropolitan Policy Program \\ 145 | 146 | \item[2018--19] \tab{}Northeastern University \\ 147 | Assistant Professor, School of Public Policy and Urban Affairs \\ 148 | Faculty Affiliate, Network Science Institute \\ 149 | Faculty Affiliate, Global Resilience Institute 150 | 151 | \item[2017--18] \tab{}University of California, Berkeley \\ 152 | Postdoctoral Researcher, Department of City and Regional Planning 153 | 154 | \end{tablist} 155 | 156 | 157 | 158 | \section*{Research Areas} 159 | 160 | \begin{itemize} 161 | 162 | \item Urban informatics: geospatial data science, analytics, modeling, and visualization 163 | \item Spatial networks and urban morphology: network design, access, equity, and health impacts 164 | \item Urban technologies' impacts on housing markets, residential mobility, and spatial segregation 165 | 166 | \end{itemize} 167 | 168 | 169 | 170 | \section*{Publications} 171 | 172 | \subsection*{Journal Articles} 173 | 174 | \begin{tablist} 175 | 176 | %\item[\the\year] \tab{}G. Boeing and J. Ha. \enquote{Resilient Livelihoods: The Vulnerability of Commutes to Street Network Disruption.} \textit{Journal Name}, under review. 177 | 178 | %\item[\the\year] \tab{}R. Turner, C. Higgs, V. Heikinheimo, R. Hunter, J. Celso Borello Vargas, S. Liu, E. Resendiz, G. Boeing, D. Adlakha, R. Schifanella, G. Longo Rosa, D. Pugacheva, R. Chen, M. Baghaie Poor, J. Molina-García, A. Queralt, A. Puig-Ribera, P. Serra del Pozo, C. Garza, J. Valson, D. Salvo, E. Cerin, E. Hinckson, and M. Lowe \enquote{Validated Global Indicators of Large Public Urban Green Space Using Open Data.} \textit{Journal Name}, under review. 179 | 180 | %\item[\the\year] \tab{}S. Angell, S. Al-Kindi, B. Daher, A. Adams, G. Boeing, S. Davis, J. Fanzo, J. Madrigano, H.~A. Magid, S. Myers, A. Navas-Acien, J. Newman, W. Peng, A. Diez-Roux, C. Solomon, S. Rajagopalan. \enquote{Research Opportunities to Advance Cardiovascular Health through a Planetary Health Lens.} \textit{Journal Name}, under review. 181 | 182 | %\item[\the\year] \tab{}G. Boeing. \enquote{Urban Science Beyond Samples: Updated Street Network Models and Indicators for Every Urban Area in the World.} \textit{Journal Name}, under review. 183 | 184 | %\item[\the\year] \tab{}G. Boeing and Y. Zhou. \enquote{Minimally-Congested Travel Time Prediction from Sparse Open Data.} \textit{Journal Name}, under review. 185 | 186 | %\item[\the\year] \tab{}M. Barthelemy and G. Boeing. \enquote{A Universal Model of Urban Street Networks.} \textit{Journal Name}, under review. 187 | 188 | %\item[\the\year] \tab{}J.~G. Harten, G. Boeing, and M. Lore. \enquote{Home Sharing as Affordable Housing for All? Revealing the Exclusionary Language of Shared Rental Listings through Deep Learning.} \textit{Journal Name}, under review. 189 | 190 | \item[2025] \tab{}G. Boeing. \enquote{Topological Graph Simplification Solutions to the Street Intersection Miscount Problem.} \textit{Transactions in GIS} 29 (3), e70037. \href{https://doi.org/10.1111/tgis.70037}{doi:10.1111/tgis.70037} 191 | 192 | \item[2025] \tab{}G. Boeing. \enquote{Modeling and Analyzing Urban Networks and Amenities with OSMnx.} \textit{Geographical Analysis}, published online ahead of print. \href{https://doi.org/10.1111/gean.70009}{doi:10.1111/gean.70009} 193 | 194 | \item[2025] \tab{}M. Barthelemy, G. Boeing, A.~J.~F. Chiaradia, and C. Webster. \enquote{Surfacic Networks.} \textit{PNAS Nexus} 4 (1), pgae585. \href{https://doi.org/10.1093/pnasnexus/pgae585}{doi:10.1093/pnasnexus/pgae585} 195 | 196 | \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} 61 (16), 3069--3085. \href{https://doi.org/10.1177/00420980241258297}{doi:10.1177/00420980241258297} 197 | 198 | \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} 199 | 200 | \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} 201 | 202 | \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} 203 | 204 | \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} 205 | 206 | \item[2024] \tab{}M. Barthelemy and G. Boeing. \enquote{A Review of the Structure of Street Networks.} \textit{Findings}, August. \href{https://doi.org/10.32866/001c.122117}{doi:10.32866/001c.122117} 207 | 208 | \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}, published online ahead of print. \href{https://doi.org/10.1177/23998083241292102}{doi:10.1177/23998083241292102}. 209 | 210 | \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} 211 | 212 | \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} 213 | 214 | \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} 215 | 216 | \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} 217 | 218 | \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} 219 | 220 | \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} 221 | 222 | \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} 223 | 224 | \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} 225 | 226 | \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} 227 | 228 | \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} 229 | 230 | \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} 231 | 232 | \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} 233 | 234 | \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} 235 | 236 | \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} 237 | 238 | \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} 239 | 240 | \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} 241 | 242 | \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} 243 | 244 | \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} 245 | 246 | \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} 247 | 248 | \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} 249 | 250 | \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} 251 | 252 | \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} 253 | 254 | \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} 255 | 256 | \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} 257 | 258 | \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} 259 | 260 | \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} 261 | 262 | \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} 263 | 264 | \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} 265 | 266 | \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} 267 | 268 | \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} 269 | 270 | \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} 271 | 272 | \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} 273 | 274 | \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} 275 | 276 | \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} 277 | 278 | \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} 279 | 280 | \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} 281 | 282 | \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} 283 | 284 | \end{tablist} 285 | 286 | 287 | 288 | \subsection*{Book Chapters} 289 | 290 | \begin{tablist} 291 | 292 | \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} 293 | 294 | \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} 295 | 296 | \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} 297 | 298 | \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} 299 | 300 | \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} 301 | 302 | \end{tablist} 303 | 304 | 305 | 306 | \subsection*{Conference Proceedings} 307 | 308 | \begin{tablist} 309 | 310 | \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} 311 | 312 | \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} 313 | 314 | \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} 315 | 316 | \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} 317 | 318 | \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} 319 | 320 | \end{tablist} 321 | 322 | 323 | 324 | \subsection*{Edited Articles and Reviews} 325 | 326 | \begin{tablist} 327 | 328 | \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} 329 | 330 | \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} 331 | 332 | \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} 333 | 334 | \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} 335 | 336 | \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} 337 | 338 | \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} 339 | 340 | \end{tablist} 341 | 342 | 343 | 344 | \subsection*{Reports and Other Publications} 345 | 346 | \begin{tablist} 347 | 348 | \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} 349 | 350 | \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} 351 | 352 | \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} 353 | 354 | \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} 355 | 356 | \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} 357 | 358 | \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} 359 | 360 | \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} 361 | 362 | \end{tablist} 363 | 364 | 365 | 366 | \subsection*{Patents} 367 | 368 | \begin{tablist} 369 | 370 | \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. 371 | 372 | \end{tablist} 373 | 374 | 375 | 376 | \section*{Invited Talks} 377 | 378 | \begin{tablist} 379 | 380 | \item[2025] \tab{}\enquote{Generalizing and Localizing the Science of Urban Networks.} London School of Economics, Department of Geography and Environment. London, England. May 27. 381 | 382 | \item[2025] \tab{}\enquote{Generality and Universality in Urban Network Science.} University College London, Centre for Advanced Spatial Analysis. London, England. May 23. 383 | 384 | \item[2025] \tab{}\enquote{Generality and Universality in Urban Network Science.} University of Liverpool, Geographic Data Science Lab. Liverpool, England. May 20. 385 | 386 | \item[2025] \tab{}\enquote{Development Pipelines for Open-Source Geospatial Software.} University of Liverpool, Geographic Data Science Lab. Liverpool, England. May 19. 387 | 388 | \item[2025] \tab{}\enquote{Modeling and Analyzing Urban Accessibility and Resilience.} Tecnológico de Monterrey, Ciudad de México campus, Center for the Future of Cities. Mexico City, Mexico. Apr 3. 389 | 390 | \item[2025] \tab{}\enquote{Generalizing and Localizing the Science of Urban Networks.} Tecnológico de Monterrey, Ciudad de México campus, Center for the Future of Cities. Mexico City, Mexico. Apr 2. 391 | 392 | \item[2025] \tab{}\enquote{Democratizing Access to Open Data.} OECD Laboratory for Geospatial Analysis. Paris, France. Jan 24. 393 | 394 | \item[2024] \tab{}\enquote{Generalizing and Localizing the Science of Urban Networks.} NYU Center for Urban Science and Progress. Brooklyn, New York. Oct 28. 395 | 396 | \item[2024] \tab{}\enquote{Urban Mobility and Street Network Science.} Cornell University, Tech Campus. Urban Data invited lecture. New York, New York. Sep 12. 397 | 398 | \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. 399 | 400 | \item[2024] \tab{}\enquote{Generalizability in Urban Science.} Cornell University, Department of City and Regional Planning. Ithaca, New York. Mar 29. 401 | 402 | \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. 403 | 404 | \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. 405 | 406 | \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. 407 | 408 | \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. 409 | 410 | \item[2021] \tab{}\enquote{Urban Morphology and Street Network Science.} University of Cincinnati, Department of Geography. Cincinnati, Ohio. Oct 15. 411 | 412 | \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. 413 | 414 | \item[2021] \tab{}\enquote{Street Networks and the Evolving Urban Structure.} CEMFI Empirical Microeconomics seminar series. Madrid, Spain. Apr 8. 415 | 416 | \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. 417 | 418 | \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. 419 | 420 | \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. 421 | 422 | \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. 423 | 424 | \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. 425 | 426 | \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. 427 | 428 | \item[2019] \tab{}\enquote{Urban Data Science: Street Networks and Travel Behavior.} Evidation Health. Data Science Seminar Series. Santa Barbara, California. May 16. 429 | 430 | \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. 431 | 432 | \item[2019] \tab{}\enquote{Computational Modeling and Analysis in Transportation System Design.} Cornell University. Systems Engineering Seminar Series. Ithaca, New York. Apr 12. 433 | 434 | \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. 435 | 436 | \item[2018] \tab{}\enquote{Computational Urban Street Network Analysis.} Virginia Tech. Urban Computing Seminar Series. Arlington, Virginia. Dec 4. 437 | 438 | \item[2018] \tab{}\enquote{Urban Science and Street Networks.} Massachusetts Institute of Technology, Department of Urban Studies and Planning. Cambridge, Massachusetts. Nov 27. 439 | 440 | \item[2018] \tab{}\enquote{Introduction to Street Network Analysis with OSMnx.} University of Helsinki, Digital Geography Lab. Helsinki, Finland. Nov 16. 441 | 442 | \item[2018] \tab{}\enquote{Urban Street Network Science with OSMnx.} Tufts University, Department of Urban and Environmental Policy and Planning. Somerville, Massachusetts. Nov 15. 443 | 444 | \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. 445 | 446 | \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. 447 | 448 | \item[2018] \tab{}\enquote{Urban Street Network Science: Modeling, Simulating, and Visualizing Complex Transportation Systems.} Uber Technologies. San Francisco, California. Aug 20. 449 | 450 | \item[2018] \tab{}\enquote{The Study of Street Networks in Urban Data Science.} NYU Center for Data Science. New York, New York. Apr 18. 451 | 452 | \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. 453 | 454 | \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. 455 | 456 | \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. 457 | 458 | \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. 459 | 460 | \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. 461 | 462 | \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. 463 | 464 | \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. 465 | 466 | \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. 467 | 468 | \item[2017] \tab{}\enquote{Graph-Theoretic Representation and Analysis of Urban Street Networks.} Montana State University, Department of Computer Science. Bozeman, Montana. Oct 16. 469 | 470 | \item[2017] \tab{}\enquote{OpenStreetMap Network Data for Transportation Planning.} Remix Transit Planning. San Francisco, California. Aug 16. 471 | 472 | \item[2017] \tab{}\enquote{Street Networks: Urban Form and Resilience.} University of Florida, Department of Urban and Regional Planning. Gainesville, Florida. May 8. 473 | 474 | \item[2017] \tab{}\enquote{Scalable Methods for Acquiring, Analyzing, and Visualizing Urban Street Networks.} The Santa Fe Institute. Santa Fe, New Mexico. Feb 2. 475 | 476 | \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. 477 | 478 | \item[2016] \tab{}\enquote{New Insights into Rental Housing Markets: Web Scraping and Analyzing Craigslist Rental Listings.} City of Oakland. Oakland, California. May 12. 479 | 480 | \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. 481 | 482 | \item[2016] \tab{}\enquote{Smart Cities, Technology, and Representation: Prospects and Challenges.} Adobe Systems. Sustainability Speaker Series. San Jose, California. Jan 28. 483 | 484 | \end{tablist} 485 | 486 | \subsection*{Invited Symposium Talks} 487 | 488 | \begin{tablist} 489 | 490 | \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. Virtual. Dec 14--15. 491 | 492 | \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. 493 | 494 | \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. 495 | 496 | \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}. Virtual. May 10--12. 497 | 498 | \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. 499 | 500 | \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. Virtual. Feb 15. 501 | 502 | \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. 503 | 504 | \end{tablist} 505 | 506 | \subsection*{Campus Talks} 507 | 508 | \begin{tablist} 509 | 510 | %\item[2023] \tab{}\enquote{Generalizability in Urban Science.} USC Price School Faculty Seminar Series. Los Angeles, California. Nov 14. 511 | 512 | \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. 513 | 514 | \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. 515 | 516 | \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. 517 | 518 | \item[2018] \tab{}\enquote{Urban Street Network Science with OSMnx.} Northeastern University Seattle Campus. Seattle, Washington. Nov 28. 519 | 520 | \item[2018] \tab{}\enquote{The Legibility of Urban Spatial Order in Computational Street Network Analysis.} NUVis: Northeastern University Visualization Consortium. Boston, Massachusetts. Oct 18. 521 | 522 | \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. 523 | 524 | \end{tablist} 525 | 526 | 527 | 528 | \section*{Conference Activity} 529 | 530 | \subsection*{Keynote and Plenary Addresses} 531 | 532 | \begin{tablist} 533 | 534 | \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. 535 | 536 | \item[2021] \tab{}\enquote{Urban Mobility and Street Network Science.} Annual Regional Studies/Regional Science keynote lecture. Regional Studies Association Winter Conference. Virtual. Nov 8. 537 | 538 | \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. 539 | 540 | \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. 541 | 542 | \end{tablist} 543 | 544 | \subsection*{Sessions Organized} 545 | 546 | \begin{tablist} 547 | 548 | \item[2017] \tab{}\enquote{Emerging Computational Methods in Urban Design.} Association of Collegiate Schools of Planning Annual Conference. Denver, Colorado. Oct 12--15. 549 | 550 | \end{tablist} 551 | 552 | \subsection*{Sessions Chaired/Moderated} 553 | 554 | \begin{tablist} 555 | 556 | \item[2021] \tab{}\enquote{Big Data and Machine Learning for Urban Mobility.} Association of Collegiate Schools of Planning Annual Conference. Virtual. Oct 21--23. 557 | 558 | \item[2019] \tab{}\enquote{Machine Learning Methods.} Association of Collegiate Schools of Planning Annual Conference. Greenville, South Carolina. Oct 24--27. 559 | 560 | \item[2019] \tab{}\enquote{Social Systems.} International Conference on Network Science. Burlington, Vermont. May 27--31. 561 | 562 | \item[2018] \tab{}\enquote{Smart Cities Technologies for Transportation Systems.} Smart Cities: Critical Infrastructure Symposium. Seattle, Washington. Nov 29. 563 | 564 | \end{tablist} 565 | 566 | \subsection*{Invited Panelist} 567 | 568 | \begin{tablist} 569 | 570 | \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. 571 | 572 | \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. 573 | 574 | \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. Virtual. Dec 6--14. 575 | 576 | \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. 577 | 578 | \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. Virtual. Nov 5--8. 579 | 580 | \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. Virtual. Nov 5--8. 581 | 582 | \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. 583 | 584 | \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. 585 | 586 | \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. 587 | 588 | \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. 589 | 590 | \end{tablist} 591 | 592 | \subsection*{Conference Papers Presented\footnote{Presenting author \textit{italicized} if other than first author.}} 593 | 594 | \begin{tablist} 595 | 596 | \item[2025] \tab{}J.~G. Harten and G. Boeing. \enquote{Sharing Domesticity: What Can Online Rental Listing Texts Reveal about Homemaking Among Strangers?} International Sociological Association Forum. Rabat, Morocco. Jul 6--11. 597 | 598 | %\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. 599 | 600 | \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. 601 | 602 | \item[2024] \tab{}G. Boeing and \textit{Y. Zhou}. \enquote{Uncongested Travel Time Prediction from Sparse Open Data.} Association of Collegiate Schools of Planning Annual Conference. Seattle, Washington. Nov 7--9. 603 | 604 | \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. 605 | 606 | \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. 607 | 608 | \item[2024] \tab{}G. Boeing, C. Higgs, S. Liu, V. Heikinheimo, B. Giles-Corti, J.~F. Sallis, E. Cerin, M. Lowe, D. Adlakha, E. Hinckson, A.~V. Moudon, D. Salvo, E. Resendiz, and J. Arundel. \enquote{Spatial Indicators for the 1,000 Cities Challenge.} International Society for Physical Activity and Health Congress. Paris, France. Oct 28--31. 609 | 610 | \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. 611 | 612 | \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. 613 | 614 | \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. 615 | 616 | \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. 617 | 618 | \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. 619 | 620 | \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. 621 | 622 | \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. 623 | 624 | \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. 625 | 626 | \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. 627 | 628 | \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. 629 | 630 | \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. 631 | 632 | \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, New York. Feb 25--Mar 1. 633 | 634 | \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. 635 | 636 | \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. 637 | 638 | \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. 639 | 640 | \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. Virtual. Oct 21--23. 641 | 642 | \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. Virtual. Oct 21--23. 643 | 644 | \item[2021] \tab{}G. Boeing. \enquote{Street Network Models and Indicators for Every Urban Area in the World.} Transportation Research Board Annual Meeting. Virtual. Jan 25--29. 645 | 646 | \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. Virtual. Nov 5--8. 647 | 648 | \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. 649 | 650 | \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. 651 | 652 | \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. 653 | 654 | \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. 655 | 656 | \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. 657 | 658 | \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. 659 | 660 | \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. 661 | 662 | \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. 663 | 664 | \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. 665 | 666 | \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. 667 | 668 | \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. 669 | 670 | \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. 671 | 672 | \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. 673 | 674 | \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. 675 | 676 | \item[2016] \tab{}G. Boeing. \enquote{Craigslist and U.S. Rental Housing Markets.} American Planning Association Annual Conference. Phoenix, Arizona. Apr 2--5. 677 | 678 | \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. 679 | 680 | \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. 681 | 682 | \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. 683 | 684 | \item[2015] \tab{}G. Boeing. \enquote{Pedagogy of Urban Informatics.} Environmental Design Circus. Berkeley, California. Mar 6. 685 | 686 | \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. 687 | 688 | \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. 689 | 690 | \end{tablist} 691 | 692 | 693 | 694 | \section*{Grants and Awards} 695 | 696 | \subsection*{Awards and Honors} 697 | 698 | \begin{tablist} 699 | 700 | \item[2025] \tab{}Zephyr Foundation Exceptional Technical Achievement Award 701 | \item[2024] \tab{}USC Price High Impact Research Award 702 | \item[2023] \tab{}National Planning Institute of Australia Award for Planning Research Excellence (joint) 703 | \item[2022] \tab{}Planning Institute of Australia (Victoria) Award for Planning Excellence---Planning Research (joint) 704 | \item[2021] \tab{}USC Price ASPD Golden Apple Award for teaching excellence 705 | \item[2020] \tab{}Stough-Johansson Springer Award, best WRSA paper by an early-career scholar 706 | \item[2019] \tab{}Network Science Society Visualization Prize finalist 707 | \item[2018] \tab{}Information Is Beautiful Awards shortlist 708 | \item[2018] \tab{}ACSP FWIG Emerging Scholar Award 709 | \item[2014] \tab{}Kaye Bock Award, best journal article 710 | \item[2010] \tab{}Accenture Inventor Innovation Award 711 | 712 | \end{tablist} 713 | 714 | \subsection*{Competitive Grants and Fellowships} 715 | 716 | \begin{tablist} 717 | 718 | \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\@. 719 | 720 | \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\@. 721 | 722 | \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\@. 723 | 724 | \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\@. 725 | 726 | \item[2020--22] \tab{}Connections Between Built Environments, Policy, and Public Health (\$200,000). The Public Good Projects research grant. PI\@. 727 | 728 | \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\@. 729 | 730 | \item[2019] \tab{}Urban Form Impact: Humans, Environment, Equity (\$50,000). NU Tier 1 research grant. Co-PI\@. 731 | 732 | \item[2019] \tab{}NU CSSH summer research matching grant (\$6,000). PI\@. 733 | 734 | \item[2019] \tab{}NU Lab for Maps, Texts, and Networks research grant (\$2,500). PI\@. 735 | 736 | \item[2016--17] \tab{}University of California Doctoral Completion Fellowship (\$36,655) 737 | 738 | \item[2012--16] \tab{}University of California Regents' Fellowship (\$158,025) 739 | 740 | \end{tablist} 741 | 742 | 743 | 744 | \section*{Courses Taught} 745 | 746 | \subsection*{University of Southern California} 747 | 748 | \begin{itemize} 749 | 750 | \item Urban Informatics 751 | \item Advanced Urban Analytics 752 | \item Data, Evidence, and Communication for the Public Good 753 | 754 | \end{itemize} 755 | 756 | \subsection*{Northeastern University} 757 | 758 | \begin{itemize} 759 | 760 | \item Urban Theory and Science 761 | \item Advanced Spatial Analysis of Urban Systems 762 | \item Big Data for Cities 763 | 764 | \end{itemize} 765 | 766 | \subsection*{University of California, Berkeley} 767 | 768 | \begin{itemize} 769 | 770 | \item Urban Informatics and Visualization (graduate student instructor) 771 | 772 | \end{itemize} 773 | 774 | \subsection*{Planetizen} 775 | 776 | \begin{itemize} 777 | 778 | \item Python for Planners 779 | \item Data Analysis and Visualization for Planners 780 | \item Geospatial Data Analysis 781 | \item Street Network Analysis 782 | 783 | \end{itemize} 784 | 785 | 786 | 787 | \section*{Service} 788 | 789 | \subsection*{Board of Directors} 790 | 791 | \begin{tablist} 792 | 793 | \item[2024--] \tab{}The Public Good Projects, New York, New York 794 | 795 | \end{tablist} 796 | 797 | \subsection*{Academic Journal Editorship} 798 | 799 | \begin{tablist} 800 | 801 | \item[2025--] \tab{}\textit{Geographical Analysis}, editorial board 802 | \item[2025--] \tab{}\textit{Computers, Environment and Urban Systems}, special issue guest editor 803 | \item[2020--] \tab{}\textit{Urban Findings}, editorial board 804 | \item[2021--24] \tab{}\textit{Urban Studies}, editorial board 805 | \item[2021] \tab{}\textit{PLOS One}, guest academic editor 806 | \item[2013--14] \tab{}\textit{Berkeley Planning Journal}, book review editor 807 | 808 | \end{tablist} 809 | 810 | \subsection*{Service to the Field} 811 | 812 | \begin{tablist} 813 | 814 | \item[2024--] \tab{}U.S. NIST Artificial Intelligence Safety Institute Consortium 815 | \item[2024--] \tab{}Association of Collegiate Schools of Planning, artificial intelligence task force 816 | \item[2024--] \tab{}Spatial Data Science across Languages, program committee 817 | \item[2024--] \tab{}Western Wildfire Resilience Index, advisory committee 818 | \item[2022--] \tab{}Global Observatory of Healthy and Sustainable Cities, executive committee 819 | \item[2021--22] \tab{}Association of Collegiate Schools of Planning, review and appraisal committee 820 | \item[2021--22] \tab{}Spatial Data Science Symposium, program committee 821 | \item[2021] \tab{}World Society for Transport and Land Use Research, emerging data and technologies track co-lead 822 | \item[2019--21] \tab{}Association of Collegiate Schools of Planning, outreach and engagement task force 823 | \item[2019--20] \tab{}Future Cities Challenge, program committee 824 | \item[2018--20] \tab{}Association of Collegiate Schools of Planning, review and appraisal committee 825 | \item[2018--20] \tab{}Symposium on Simulation for Architecture and Urban Design, scientific committee 826 | 827 | \end{tablist} 828 | 829 | \subsection*{Service to the University} 830 | 831 | \begin{tablist} 832 | \item[2024--] \tab{}USC Price research committee 833 | \item[2024--25] \tab{}USC Price dean search committee 834 | \item[2024--25] \tab{}USC Department of Urban Planning and Spatial Analysis hiring search committee 835 | \item[2020--24] \tab{}USC Price Ph.D. degree committee 836 | \item[2024] \tab{}USC Price Chief Technology Officer search committee 837 | \item[2022--23] \tab{}USC Healthy Campus built environment and sustainability committee 838 | \item[2020--21] \tab{}USC Price research committee 839 | \item[2019--20] \tab{}USC Department of Urban Planning and Spatial Analysis hiring search committee 840 | \item[2018--19] \tab{}Northeastern CSSH standing committee on digital proficiencies and quantitative methods 841 | \item[2015--16] \tab{}UC Berkeley DCRP Ph.D. program admissions committee 842 | 843 | \end{tablist} 844 | 845 | \subsection*{Doctoral Committees} 846 | 847 | \begin{itemize} 848 | 849 | \item Robert Binder, USC Price, exam committee 850 | \item Ruoyu Chen, USC Price, exam committee 851 | \item Seongmoon Cho, USC Price, exam committee 852 | \item David Flores Moctezuma, USC Price, exam and dissertation committees 853 | \item James Gross, USC Price, exam and dissertation committees 854 | \item Jaehyun Ha, USC Price, exam and dissertation committees 855 | \item Jiyoon Kim, USC Price, exam committee 856 | \item Naomi Lee, USC Price, exam committee 857 | \item Madison Lore, University of British Columbia, dissertation committee 858 | \item Sihan Mao, USC Price, exam committee 859 | \item Thu Nguyen, USC Price, exam committee 860 | \item Clemens Pilgram, USC Price, exam and dissertation committees 861 | \item Marley Randazzo, USC Price, exam committee 862 | \item Qifan Shao, USC Price, exam committee 863 | \item Elana Simon, USC Price, exam committee 864 | \item Bonnie Wang, USC Price, exam committee 865 | \item Kurt Wyatt, USC Price, dissertation committee 866 | \item Mengya Xu, USC Spatial Sciences Institute, exam and dissertation committees 867 | \item Li Yi, USC Spatial Sciences Institute, exam and dissertation committees 868 | \item Yuquan Zhou, USC Price, exam and dissertation committees 869 | 870 | \end{itemize} 871 | 872 | \subsection*{Studio Review Jury} 873 | 874 | \begin{itemize} 875 | 876 | \item MIT, Workshop on Geographic Information Systems (Prof.\ Sarah Williams), Fall 2018 877 | 878 | \end{itemize} 879 | 880 | 881 | 882 | \section*{Peer Review} 883 | 884 | \subsection*{Academic Journal Peer Review} 885 | 886 | \begin{itemize} 887 | 888 | \item \textit{American Behavioral Scientist} 889 | \item \textit{American Journal of Sociology} 890 | \item \textit{American Sociological Review} 891 | \item \textit{Annals of the American Association of Geographers} 892 | \item \textit{Applied Geography} 893 | \item \textit{Applied Network Science} 894 | \item \textit{Case Studies on Transport Policy} 895 | \item \textit{Cities} 896 | \item \textit{Computers, Environment and Urban Systems} 897 | \item \textit{Environment and Planning A:\ Economy and Space} 898 | \item \textit{Environment and Planning B:\ Urban Analytics and City Science} 899 | \item \textit{Environmental Sociology} 900 | \item \textit{European Physical Journal: Data Science} 901 | \item \textit{Geo: Geography and Environment} 902 | \item \textit{Geographical Analysis} 903 | \item \textit{International Journal of Geographical Information Science} 904 | \item \textit{International Planning Studies} 905 | \item \textit{International Regional Science Review} 906 | \item \textit{ISPRS International Journal of Geo-Information} 907 | \item \textit{Journal of the American Planning Association} 908 | \item \textit{Journal of Geographical Systems} 909 | \item \textit{Journal of Open Source Education} 910 | \item \textit{Journal of Planning Education and Research} 911 | \item \textit{Journal of Planning Literature} 912 | \item \textit{Journal of Transport and Land Use} 913 | \item \textit{Journal of Transport Geography} 914 | \item \textit{Journal of Urban Design} 915 | \item \textit{Journal of Urban History} 916 | \item \textit{Journal of Urban Technology} 917 | \item \textit{Journal of Urbanism} 918 | \item \textit{Landscape and Urban Planning} 919 | \item \textit{Mathematics} 920 | \item \textit{Nature Cities} 921 | \item \textit{Nonlinear Dynamics} 922 | \item \textit{Physica A:\ Statistical Mechanics and Its Applications} 923 | \item \textit{PLOS One} 924 | \item \textit{Proceedings of the National Academy of Sciences} 925 | \item \textit{The Professional Geographer} 926 | \item \textit{Region} 927 | \item \textit{Research in Transportation Economics} 928 | \item \textit{Science} 929 | \item \textit{Scientific Reports} 930 | \item \textit{Social Forces} 931 | \item \textit{Social Indicators Research} 932 | \item \textit{Socio-Economic Planning Sciences} 933 | \item \textit{Sustainability} 934 | \item \textit{Sustainable Cities and Society} 935 | \item \textit{Town Planning Review} 936 | \item \textit{Transactions in GIS} 937 | \item \textit{Transport Findings} 938 | \item \textit{Transport Policy} 939 | \item \textit{Transport Reviews} 940 | \item \textit{Transportation Research Part D:\ Transport and Environment} 941 | \item \textit{Transportation Research Record} 942 | \item \textit{Urban Design International} 943 | \item \textit{Urban Planning} 944 | \item \textit{Urban Science} 945 | \item \textit{Urban Studies} 946 | 947 | \end{itemize} 948 | 949 | \subsection*{Academic Press Peer Review} 950 | 951 | \begin{itemize} 952 | 953 | \item Cambridge University Press 954 | \item Routledge 955 | \item Springer Nature 956 | \item Taylor \& Francis 957 | 958 | \end{itemize} 959 | 960 | \subsection*{Funding Agency Peer Review} 961 | 962 | \begin{itemize} 963 | 964 | \item European Science Foundation 965 | \item Israel Science Foundation 966 | \item U.S. National Science Foundation 967 | \item Research Grants Council of Hong Kong 968 | \item Social Sciences and Humanities Research Council of Canada 969 | \item United Arab Emirates University, Office of Associate Provost for Research 970 | 971 | \end{itemize} 972 | 973 | 974 | 975 | \section*{Memberships} 976 | 977 | \begin{itemize} 978 | 979 | \item American Association of Geographers 980 | \item American Planning Association 981 | \item Association of Collegiate Schools of Planning 982 | \item Association for Computing Machinery 983 | \item Complex Systems Society 984 | \item Network Science Society 985 | \item New York Academy of Sciences 986 | \item Project Management Institute 987 | \item Python Software Foundation 988 | \item Regional Studies Association 989 | \item Urban Affairs Association 990 | 991 | \end{itemize} 992 | 993 | 994 | 995 | \section*{Credentials} 996 | 997 | \begin{itemize} 998 | 999 | \item U.S. Department of Defense secret clearance 1000 | \item U.S. Department of Homeland Security public trust 1001 | \item Project Management Professional (PMP) 1002 | 1003 | \end{itemize} 1004 | 1005 | 1006 | 1007 | \section*{Consulting} 1008 | 1009 | \begin{tablist} 1010 | 1011 | \item[2017--19] \tab{}The Public Good Projects, New York, New York 1012 | \item[2017--18] \tab{}Calthorpe Analytics, Berkeley, California 1013 | \item[2016--18] \tab{}UrbanSim Inc., Berkeley, California 1014 | \item[2013--15] \tab{}Avalon Health Economics, Morristown, New Jersey 1015 | \item[2013] \tab{}Raimi \& Associates, Berkeley, California 1016 | \item[2010--11] \tab{}Voluntary Service Overseas, London, England 1017 | 1018 | \end{tablist} 1019 | 1020 | 1021 | 1022 | \section*{Professional Employment} 1023 | 1024 | \begin{tablist} 1025 | 1026 | \item[2009--13] \tab{}Accenture, New York, New York; London, England; San Diego, California 1027 | \item[2007--09] \tab{}Permission Data, New York, New York 1028 | \item[2004--07] \tab{}Acumen Inc., Mesa, Arizona 1029 | 1030 | \end{tablist} 1031 | 1032 | 1033 | 1034 | % display today's date as Month Year after a vertical space below the end of the text 1035 | \begin{center} 1036 | \vfill 1037 | Updated \monthyeardate\today 1038 | \end{center} 1039 | 1040 | \end{document} 1041 | --------------------------------------------------------------------------------