-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcv.html
More file actions
1177 lines (1117 loc) · 61 KB
/
cv.html
File metadata and controls
1177 lines (1117 loc) · 61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head>
<meta charset="utf-8">
<meta name="generator" content="quarto-1.4.515">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
<title>Andrew Mitchell - Curriculum Vitae</title>
<style>
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
ul.task-list{list-style: none;}
ul.task-list li input[type="checkbox"] {
width: 0.8em;
margin: 0 0.8em 0.2em -1em; /* quarto-specific, see https://github.com/quarto-dev/quarto-cli/issues/4556 */
vertical-align: middle;
}
</style>
<script src="site_libs/quarto-nav/quarto-nav.js"></script>
<script src="site_libs/quarto-nav/headroom.min.js"></script>
<script src="site_libs/clipboard/clipboard.min.js"></script>
<script src="site_libs/quarto-search/autocomplete.umd.js"></script>
<script src="site_libs/quarto-search/fuse.min.js"></script>
<script src="site_libs/quarto-search/quarto-search.js"></script>
<meta name="quarto:offset" content="./">
<link href="./favicon.png" rel="icon" type="image/png">
<script src="site_libs/quarto-html/quarto.js"></script>
<script src="site_libs/quarto-html/popper.min.js"></script>
<script src="site_libs/quarto-html/tippy.umd.min.js"></script>
<script src="site_libs/quarto-html/anchor.min.js"></script>
<link href="site_libs/quarto-html/tippy.css" rel="stylesheet">
<link href="site_libs/quarto-html/quarto-syntax-highlighting.css" rel="stylesheet" class="quarto-color-scheme" id="quarto-text-highlighting-styles">
<link href="site_libs/quarto-html/quarto-syntax-highlighting-dark.css" rel="prefetch" class="quarto-color-scheme quarto-color-alternate" id="quarto-text-highlighting-styles">
<script src="site_libs/bootstrap/bootstrap.min.js"></script>
<link href="site_libs/bootstrap/bootstrap-icons.css" rel="stylesheet">
<link href="site_libs/bootstrap/bootstrap.min.css" rel="stylesheet" class="quarto-color-scheme" id="quarto-bootstrap" data-mode="light">
<link href="site_libs/bootstrap/bootstrap-dark.min.css" rel="prefetch" class="quarto-color-scheme quarto-color-alternate" id="quarto-bootstrap" data-mode="dark">
<script id="quarto-search-options" type="application/json">{
"location": "navbar",
"copy-button": false,
"collapse-after": 3,
"panel-placement": "end",
"type": "overlay",
"limit": 50,
"keyboard-shortcut": [
"f",
"/",
"s"
],
"show-item-context": false,
"language": {
"search-no-results-text": "No results",
"search-matching-documents-text": "matching documents",
"search-copy-link-title": "Copy link to search",
"search-hide-matches-text": "Hide additional matches",
"search-more-match-text": "more match in this document",
"search-more-matches-text": "more matches in this document",
"search-clear-button-title": "Clear",
"search-detached-cancel-button-title": "Cancel",
"search-submit-button-title": "Submit",
"search-label": "Search"
}
}</script>
<style>html{ scroll-behavior: smooth; }</style>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/jpswalsh/academicons@1/css/academicons.min.css">
<link rel="stylesheet" href="styles.css">
<meta property="og:title" content="Andrew Mitchell - Curriculum Vitae">
<meta property="og:description" content="Personal website of Andrew Mitchell">
<meta property="og:site_name" content="Andrew Mitchell">
<meta name="twitter:title" content="Andrew Mitchell - Curriculum Vitae">
<meta name="twitter:description" content="Personal website of Andrew Mitchell">
<meta name="twitter:creator" content="@acousticsman">
<meta name="twitter:site" content="@acousticsman">
<meta name="twitter:card" content="summary_large_image">
</head>
<body class="nav-fixed">
<div id="quarto-search-results"></div>
<header id="quarto-header" class="headroom fixed-top">
<nav class="navbar navbar-expand-lg " data-bs-theme="dark">
<div class="navbar-container container-fluid">
<div class="navbar-brand-container mx-auto">
<a class="navbar-brand" href="./index.html">
<span class="navbar-title">Andrew Mitchell</span>
</a>
</div>
<div id="quarto-search" class="" title="Search"></div>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation" onclick="if (window.quartoToggleHeadroom) { window.quartoToggleHeadroom(); }">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
<ul class="navbar-nav navbar-nav-scroll me-auto">
<li class="nav-item">
<a class="nav-link" href="./index.html">
<span class="menu-text">Home</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="./about.html">
<span class="menu-text">About</span></a>
</li>
<li class="nav-item dropdown ">
<a class="nav-link dropdown-toggle" href="#" id="nav-menu-research" role="button" data-bs-toggle="dropdown" aria-expanded="false">
<span class="menu-text">Research</span>
</a>
<ul class="dropdown-menu" aria-labelledby="nav-menu-research">
<li>
<a class="dropdown-item" href="./research/papers.html">
<span class="dropdown-text">Open Source Papers</span></a>
</li>
<li>
<a class="dropdown-item" href="./research/presentations.html">
<span class="dropdown-text">Talks</span></a>
</li>
<li>
<a class="dropdown-item" href="./research/list-of-pubs.html">
<span class="dropdown-text">List of Publications</span></a>
</li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link" href="./software.html">
<span class="menu-text">Software</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="./blog.html">
<span class="menu-text">Blog</span></a>
</li>
</ul>
</div> <!-- /navcollapse -->
<div class="quarto-navbar-tools">
<div class="dropdown">
<a href="" title="" id="quarto-navigation-tool-dropdown-0" class="quarto-navigation-tool dropdown-toggle px-1" data-bs-toggle="dropdown" aria-expanded="false" aria-label=""><i class="bi bi-github"></i></a>
<ul class="dropdown-menu dropdown-menu-end" aria-labelledby="quarto-navigation-tool-dropdown-0">
<li>
<a class="dropdown-item quarto-navbar-tools-item" href="https://github.com/MitchellAcoustics/quarto-website">
Source Code
</a>
</li>
<li>
<a class="dropdown-item quarto-navbar-tools-item" href="https://github.com/MitchellAcoustics/quarto-website/issues">
Report a bug
</a>
</li>
</ul>
</div>
<a href="" class="quarto-color-scheme-toggle quarto-navigation-tool px-1" onclick="window.quartoToggleColorScheme(); return false;" title="Toggle dark mode"><i class="bi"></i></a>
</div>
</div> <!-- /container-fluid -->
</nav>
</header>
<!-- content -->
<div id="quarto-content" class="quarto-container page-columns page-rows-contents page-layout-article page-navbar">
<!-- sidebar -->
<!-- margin-sidebar -->
<div id="quarto-margin-sidebar" class="sidebar margin-sidebar">
<nav id="TOC" role="doc-toc" class="toc-active">
<h2 id="toc-title">Contents</h2>
<ul>
<li><a href="#research-interests" id="toc-research-interests" class="nav-link active" data-scroll-target="#research-interests">Research Interests</a></li>
<li><a href="#cv" id="toc-cv" class="nav-link" data-scroll-target="#cv">CV</a></li>
<li><a href="#journal-papers" id="toc-journal-papers" class="nav-link" data-scroll-target="#journal-papers">Journal Papers</a>
<ul>
<li><a href="#published-2024" id="toc-published-2024" class="nav-link" data-scroll-target="#published-2024">2024</a></li>
<li><a href="#published-2023" id="toc-published-2023" class="nav-link" data-scroll-target="#published-2023">2023</a></li>
<li><a href="#published-2022" id="toc-published-2022" class="nav-link" data-scroll-target="#published-2022">2022</a></li>
<li><a href="#published-2021" id="toc-published-2021" class="nav-link" data-scroll-target="#published-2021">2021</a></li>
<li><a href="#published-2020" id="toc-published-2020" class="nav-link" data-scroll-target="#published-2020">2020</a></li>
<li><a href="#published-2019" id="toc-published-2019" class="nav-link" data-scroll-target="#published-2019">2019</a></li>
</ul></li>
<li><a href="#conference-papers" id="toc-conference-papers" class="nav-link" data-scroll-target="#conference-papers">Conference Papers</a>
<ul>
<li><a href="#confs-2023" id="toc-confs-2023" class="nav-link" data-scroll-target="#confs-2023">2023</a></li>
<li><a href="#confs-2022" id="toc-confs-2022" class="nav-link" data-scroll-target="#confs-2022">2022</a></li>
<li><a href="#confs-2021" id="toc-confs-2021" class="nav-link" data-scroll-target="#confs-2021">2021</a></li>
<li><a href="#confs-2020" id="toc-confs-2020" class="nav-link" data-scroll-target="#confs-2020">2020</a></li>
<li><a href="#confs-2019" id="toc-confs-2019" class="nav-link" data-scroll-target="#confs-2019">2019</a></li>
</ul></li>
<li><a href="#other-publications" id="toc-other-publications" class="nav-link" data-scroll-target="#other-publications">Other Publications</a>
<ul>
<li><a href="#other-2023" id="toc-other-2023" class="nav-link" data-scroll-target="#other-2023">2023</a></li>
<li><a href="#other-2022" id="toc-other-2022" class="nav-link" data-scroll-target="#other-2022">2022</a></li>
</ul></li>
</ul>
</nav>
</div>
<!-- main -->
<main class="content" id="quarto-document-content">
<header id="title-block-header" class="quarto-title-block default">
<div class="quarto-title">
<h1 class="title">Curriculum Vitae</h1>
</div>
<div class="quarto-title-meta">
</div>
</header>
<p>I am currently a Senior Research Fellow at the Institute for Environmental Design & Engineering at University College London.</p>
<section id="research-interests" class="level3">
<h3 class="anchored" data-anchor-id="research-interests">Research Interests</h3>
<ul>
<li>Soundscape Engineering</li>
<li>Machine Learning</li>
<li>Data Science</li>
<li>Environmental Acoustics</li>
<li>Psychoacoustics</li>
</ul>
</section>
<section id="cv" class="level2">
<h2 class="anchored" data-anchor-id="cv">CV</h2>
<p><object data="./2024-01-21_Mitchell_Academic_CV_v2.pdf" type="application/pdf" width="100%" height="800"><p>Unable to display PDF file. <a href="./2024-01-21_Mitchell_Academic_CV_v2.pdf">Download</a> instead.</p></object></p>
<!-- ## Education
::: {.d-flex .justify-content-between}
::: {}
**University College London**
PhD in Environmental Acoustics and Machine Learning
Supervisor: Prof Jian Kang
Co-Superverisor: Dr. Phil Symonds
:::
::: {.text-end}
London, UK
Granted September 2022
:::
:::
- Thesis: *Predictive Modelling of Complex Urban Soundscapes: Enabling an Engineering Approach to Soundscape Design*
::: {.d-flex .justify-content-between}
::: {}
**Cardiff University**
BSc. (Hons) in Physics & Music
:::
::: {.text-end}
Cardiff, Wales, UK
Granted August 2015
:::
:::
- Dissertation: *The Physics of the Trombone Mouthpiece*
## Experience
::: {.d-flex .justify-content-between}
::: {}
**University College London**
:::
::: {.text-end}
October 2023 - present
:::
:::
*Senior Research Fellow in Soundscape Modelling*
- Supervisor: Prof Jian Kang
::: {.d-flex .justify-content-between}
::: {}
**University College London**, Institute for Environmental Design & Engineering
:::
::: {.text-end}
June 2022 - Oct 2023
:::
:::
*Research Fellow in Soundscape Modelling*
- Supervisor: Prof Jian Kang
::: {.d-flex .justify-content-between}
::: {}
**The Alan Turing Institute**, British Library, London, UK
:::
::: {.text-end}
May 2022 - March 2023
:::
:::
*Academic PI and Challenge Owner*
Funded by a UCL Health of the Public small grant, the DeLTA project aims to develop deep learning methods (specifically, a Temporal Convolutional Neural Network) for predicting annoyance
perception of various urban sounds. The Turing Data Study Group is an extension to this project carried out in partnership with the Alan Turing Institute.
- Coordinating a 5-day intensive collaborative hackathon hosted by the Turing Institute
- Prepare two large-scale datasets and define an open-ended challenge for the AI and data science experts recruited to participate in the DSG
- Lead the DSG and supervise the preparation of an openly-published report and prototype model for real-world application
::: {.d-flex .justify-content-between}
::: {}
**Hoare Lea, LLC**, London, UK
:::
::: {.text-end}
June 2019 - March 2021
:::
:::
*Acoustics Engineer / Soundscape Consultant*
- Academic/industry collaboration to design an IoT-based soundscape assessment tool
::: {.d-flex .justify-content-between}
::: {}
**Newson Brown Acoustics**, Santa Monica, CA
:::
::: {.text-end}
June 2016 - September 2018
:::
:::
*Acoustical Consultant*
- Architectural acoustics, room acoustics modelling, & noise control
::: {.d-flex .justify-content-between}
::: {}
**Hayes McKenzie Partnership**, Machynlleth, Wales
:::
::: {.text-end}
July 2015 - April 2016
:::
:::
*Junior Acoustics Consultant*
::: {.d-flex .justify-content-between}
::: {}
**Busch Gardens Williamsburg**, Williamsburg, VA
:::
::: {.text-end}
Summer 2012
:::
:::
*Bass Trombonist*
## Associations
::: {.d-flex .justify-content-between}
::: {}
Member, **Acoustical Society of America**
:::
::: {.text-end}
2023 - Present
:::
:::
::: {.d-flex .justify-content-between}
::: {}
Associate Member, **Acoustical Society of America**
:::
::: {.text-end}
2016 - 2023
:::
:::
::: {.d-flex .justify-content-between}
::: {}
Student Member, **Institute of Acoustics**
:::
::: {.text-end}
2015 - Present
:::
:::
::: {.d-flex .justify-content-between}
::: {}
Researcher & Advisory Board Member, **International Misophonia Research Network (IMRN)**
:::
::: {.text-end}
2018 - 2022
:::
::: -->
<!-- ### Teaching
#### Facebook
::: {.d-flex .justify-content-between}
::: {}
Internal datacamp class on designing and analyzing experiments
:::
::: {.text-end}
2017-2019
:::
:::
#### NYU Undergraduate
::: {.d-flex .justify-content-between}
::: {}
TA for Power and Politics in America (under Jonathan Nagler)
:::
::: {.text-end}
Fall 2014
:::
:::
::: {.d-flex .justify-content-between}
::: {}
TA for Games, Strategy and Politics (under Steven Brams)
:::
::: {.text-end}
Fall 2013
:::
:::
#### NYU Graduate
::: {.d-flex .justify-content-between}
::: {}
TA for Quantitative Methods II (under Nathaniel Beck)
:::
::: {.text-end}
Spring 2015
:::
:::
::: {.d-flex .justify-content-between}
::: {}
TA for Quantitative Methods II (under Cyrus Samii)
:::
::: {.text-end}
Spring 2014
:::
:::
::: {.d-flex .justify-content-between}
::: {}
High Performance Computing Talk for NYU Datalab
:::
::: {.text-end}
February 2014
:::
:::
::: {.d-flex .justify-content-between}
::: {}
Introduction to R for NYU Datalab
:::
::: {.text-end}
January 2013
:::
::: -->
</section>
<section id="journal-papers" class="level2">
<h2 class="anchored" data-anchor-id="journal-papers">Journal Papers</h2>
<section id="published-2024" class="level3">
<h3 class="anchored" data-anchor-id="published-2024">2024</h3>
<ul class="list-group list-group-flush"><li class="list-group-item">Yuanbo Hou, Bo Kang, <strong>Andrew Mitchell</strong>, Wenwu Wang, Jian Kang, and Dick Botteldooren. (2024) "Cooperative Scene-Event Modelling for Acoustic Scene Classification." <em>IEEE/ACM Transactions on Audio, Speech, and Language Processing</em> doi: 10.1109/TASLP.2023.3323135 <br><a class="btn btn-outline-dark btn-sm" ,="" href="https://doi.org/10.1109/TASLP.2023.3323135" target="_blank" rel="noopener noreferrer">
<i class="bi bi-journal-text" role="img" aria-label="Published"></i>
Published
</a> <span class="__dimensions_badge_embed__" data-doi="10.1109/TASLP.2023.3323135" data-hide-zero-citations="true" data-style="small_rectangle"></span><script async="" src="https://badge.dimensions.ai/badge.js" charset="utf-8"></script></li></ul>
</section>
<section id="published-2023" class="level3">
<h3 class="anchored" data-anchor-id="published-2023">2023</h3>
<ul class="list-group list-group-flush"><li class="list-group-item">Francesco Aletta, Tin Oberman, <strong>Andrew Mitchell</strong>, Mercede Erfanian, and Jian Kang. (2023) "Soundscape experience of public spaces in different world regions: A comparison between the European and Chinese contexts via a large-scale on-site surveya)." <em>The Journal of the Acoustical Society of America</em> doi: 10.1121/10.0020842 <br><a class="btn btn-outline-dark btn-sm" ,="" href="https://doi.org/10.1121/10.0020842" target="_blank" rel="noopener noreferrer">
<i class="bi bi-journal-text" role="img" aria-label="Published"></i>
Published
</a> <span class="__dimensions_badge_embed__" data-doi="10.1121/10.0020842" data-hide-zero-citations="true" data-style="small_rectangle"></span><script async="" src="https://badge.dimensions.ai/badge.js" charset="utf-8"></script></li>
<li class="list-group-item">Yuanbo Hou, Qiaoqiao Ren, Huizhong Zhang, <strong>Andrew Mitchell</strong>, Francesco Aletta, Jian Kang, and Dick Botteldooren. (2023) "AI-based soundscape analysis: Jointly identifying sound sources and predicting annoyancea)." <em>The Journal of the Acoustical Society of America</em> doi: 10.1121/10.0022408 <br><a class="btn btn-outline-dark btn-sm" ,="" href="https://doi.org/10.1121/10.0022408" target="_blank" rel="noopener noreferrer">
<i class="bi bi-journal-text" role="img" aria-label="Published"></i>
Published
</a> <span class="__dimensions_badge_embed__" data-doi="10.1121/10.0022408" data-hide-zero-citations="true" data-style="small_rectangle"></span><script async="" src="https://badge.dimensions.ai/badge.js" charset="utf-8"></script></li>
<li class="list-group-item">Jian Kang, Francesco Aletta, Tin Oberman, <strong>Andrew Mitchell</strong>, Mercede Erfanian, Huan Tong, Simone Torresin, Chunyang Xu, Tingting Yang, and Xiaochao Chen. (2023) "Supportive soundscapes are crucial for sustainable environments." <em>Science of The Total Environment</em> doi: 10.1016/j.scitotenv.2022.158868 <br><a class="btn btn-outline-dark btn-sm" ,="" href="https://doi.org/10.1016/j.scitotenv.2022.158868" target="_blank" rel="noopener noreferrer">
<i class="bi bi-journal-text" role="img" aria-label="Published"></i>
Published
</a> <span class="__dimensions_badge_embed__" data-doi="10.1016/j.scitotenv.2022.158868" data-hide-zero-citations="true" data-style="small_rectangle"></span><script async="" src="https://badge.dimensions.ai/badge.js" charset="utf-8"></script></li>
<li class="list-group-item">Nikolaos M. Papadakis, Francesco Aletta, Jian Kang, Tin Oberman, <strong>Andrew Mitchell</strong>, Ioanna Aroni, and Georgios E. Stavroulakis. (2023) "City, town, village: Potential differences in residents soundscape perception using ISO/TS 12913-2:2018." <em>Applied Acoustics</em> doi: 10.1016/j.apacoust.2023.109659 <br><a class="btn btn-outline-dark btn-sm" ,="" href="https://doi.org/10.1016/j.apacoust.2023.109659" target="_blank" rel="noopener noreferrer">
<i class="bi bi-journal-text" role="img" aria-label="Published"></i>
Published
</a> <span class="__dimensions_badge_embed__" data-doi="10.1016/j.apacoust.2023.109659" data-hide-zero-citations="true" data-style="small_rectangle"></span><script async="" src="https://badge.dimensions.ai/badge.js" charset="utf-8"></script></li>
<li class="list-group-item">Jerónimo Vida, José Antonio Almagro, Rafael García-Quesada, Francesco Aletta, Tin Oberman, <strong>Andrew Mitchell</strong>, and Jian Kang. (2023) "Soundscape attributes in Spanish: A comparison with the English version of the protocol proposed in Method A of the ISO/TS 12913–2." <em>Applied Acoustics</em> doi: 10.1016/j.apacoust.2023.109516 <br><a class="btn btn-outline-dark btn-sm" ,="" href="https://doi.org/10.1016/j.apacoust.2023.109516" target="_blank" rel="noopener noreferrer">
<i class="bi bi-journal-text" role="img" aria-label="Published"></i>
Published
</a> <span class="__dimensions_badge_embed__" data-doi="10.1016/j.apacoust.2023.109516" data-hide-zero-citations="true" data-style="small_rectangle"></span><script async="" src="https://badge.dimensions.ai/badge.js" charset="utf-8"></script></li></ul>
</section>
<section id="published-2022" class="level3">
<h3 class="anchored" data-anchor-id="published-2022">2022</h3>
<ul class="list-group list-group-flush"><li class="list-group-item"><strong>Andrew Mitchell</strong>, Mercede Erfanian, Christopher Soelistyo, Tin Oberman, Jian Kang, Robert Aldridge, Jing-Hao Xue, and Francesco Aletta. (2022) "Effects of Soundscape Complexity on Urban Noise Annoyance Ratings: A Large-Scale Online Listening Experiment." <em>International Journal of Environmental Research and Public Health</em> doi: 10.3390/ijerph192214872 <br><a class="btn btn-outline-dark btn-sm" ,="" href="https://doi.org/10.3390/ijerph192214872" target="_blank" rel="noopener noreferrer">
<i class="bi bi-journal-text" role="img" aria-label="Published"></i>
Published
</a> <span class="__dimensions_badge_embed__" data-doi="10.3390/ijerph192214872" data-hide-zero-citations="true" data-style="small_rectangle"></span><script async="" src="https://badge.dimensions.ai/badge.js" charset="utf-8"></script></li>
<li class="list-group-item"><strong>Andrew Mitchell</strong>, Francesco Aletta, and Jian Kang. (2022) "How to analyse and represent quantitative soundscape data." <em>JASA Express Letters</em> doi: 10.1121/10.0009794 <br><a class="btn btn-outline-dark btn-sm" ,="" href="https://doi.org/10.1121/10.0009794" target="_blank" rel="noopener noreferrer">
<i class="bi bi-journal-text" role="img" aria-label="Published"></i>
Published
</a> <span class="__dimensions_badge_embed__" data-doi="10.1121/10.0009794" data-hide-zero-citations="true" data-style="small_rectangle"></span><script async="" src="https://badge.dimensions.ai/badge.js" charset="utf-8"></script></li></ul>
</section>
<section id="published-2021" class="level3">
<h3 class="anchored" data-anchor-id="published-2021">2021</h3>
<ul class="list-group list-group-flush"><li class="list-group-item">Mercede Erfanian, <strong>Andrew Mitchell</strong>, Francesco Aletta, and Jian Kang. (2021) "Psychological well-being and demographic factors can mediate soundscape pleasantness and eventfulness: A large sample study." <em>Journal of Environmental Psychology</em> doi: 10.1016/j.jenvp.2021.101660 <br><a class="btn btn-outline-dark btn-sm" ,="" href="https://doi.org/10.1016/j.jenvp.2021.101660" target="_blank" rel="noopener noreferrer">
<i class="bi bi-journal-text" role="img" aria-label="Published"></i>
Published
</a> <span class="__dimensions_badge_embed__" data-doi="10.1016/j.jenvp.2021.101660" data-hide-zero-citations="true" data-style="small_rectangle"></span><script async="" src="https://badge.dimensions.ai/badge.js" charset="utf-8"></script></li>
<li class="list-group-item">Matteo Lionello, Francesco Aletta, <strong>Andrew Mitchell</strong>, and Jian Kang. (2021) "Introducing a Method for Intervals Correction on Multiple Likert Scales: A Case Study on an Urban Soundscape Data Collection Instrument." <em>Frontiers in Psychology</em> doi: 10.3389/fpsyg.2020.602831 <br><a class="btn btn-outline-dark btn-sm" ,="" href="https://doi.org/10.3389/fpsyg.2020.602831" target="_blank" rel="noopener noreferrer">
<i class="bi bi-journal-text" role="img" aria-label="Published"></i>
Published
</a> <span class="__dimensions_badge_embed__" data-doi="10.3389/fpsyg.2020.602831" data-hide-zero-citations="true" data-style="small_rectangle"></span><script async="" src="https://badge.dimensions.ai/badge.js" charset="utf-8"></script></li>
<li class="list-group-item"><strong>Andrew Mitchell</strong>, Tin Oberman, Francesco Aletta, Magdalena Kachlicka, Matteo Lionello, Mercede Erfanian, and Jian Kang. (2021) "Investigating urban soundscapes of the COVID-19 lockdown: A predictive soundscape modeling approach." <em>The Journal of the Acoustical Society of America</em> doi: 10.1121/10.0008928 <br><a class="btn btn-outline-dark btn-sm" ,="" href="https://doi.org/10.1121/10.0008928" target="_blank" rel="noopener noreferrer">
<i class="bi bi-journal-text" role="img" aria-label="Published"></i>
Published
</a> <span class="__dimensions_badge_embed__" data-doi="10.1121/10.0008928" data-hide-zero-citations="true" data-style="small_rectangle"></span><script async="" src="https://badge.dimensions.ai/badge.js" charset="utf-8"></script></li>
<li class="list-group-item">Ferran Orga, <strong>Andrew Mitchell</strong>, Marc Freixes, Francesco Aletta, Rosa Ma Alsina-Pagès, and Maria Foraster. (2021) "Multilevel Annoyance Modelling of Short Environmental Sound Recordings." <em>Sustainability</em> doi: 10.3390/su13115779 <br><a class="btn btn-outline-dark btn-sm" ,="" href="https://doi.org/10.3390/su13115779" target="_blank" rel="noopener noreferrer">
<i class="bi bi-journal-text" role="img" aria-label="Published"></i>
Published
</a> <span class="__dimensions_badge_embed__" data-doi="10.3390/su13115779" data-hide-zero-citations="true" data-style="small_rectangle"></span><script async="" src="https://badge.dimensions.ai/badge.js" charset="utf-8"></script></li>
<li class="list-group-item">Huan Tong, Francesco Aletta, <strong>Andrew Mitchell</strong>, Tin Oberman, and Jian Kang. (2021) "Increases in noise complaints during the COVID-19 lockdown in Spring 2020: A case study in Greater London, UK." <em>Science of The Total Environment</em> doi: 10.1016/j.scitotenv.2021.147213 <br><a class="btn btn-outline-dark btn-sm" ,="" href="https://doi.org/10.1016/j.scitotenv.2021.147213" target="_blank" rel="noopener noreferrer">
<i class="bi bi-journal-text" role="img" aria-label="Published"></i>
Published
</a> <span class="__dimensions_badge_embed__" data-doi="10.1016/j.scitotenv.2021.147213" data-hide-zero-citations="true" data-style="small_rectangle"></span><script async="" src="https://badge.dimensions.ai/badge.js" charset="utf-8"></script></li>
<li class="list-group-item">Jerónimo Vida Manzano, José Antonio Almagro Pastor, Rafael García Quesada, Francesco Aletta, Tin Oberman, <strong>Andrew Mitchell</strong>, and Jian Kang. (2021) "The "sound of silence" in Granada during the COVID-19 lockdown." <em>Noise Mapping</em> doi: 10.1515/noise-2021-0002 <br><a class="btn btn-outline-dark btn-sm" ,="" href="https://doi.org/10.1515/noise-2021-0002" target="_blank" rel="noopener noreferrer">
<i class="bi bi-journal-text" role="img" aria-label="Published"></i>
Published
</a> <span class="__dimensions_badge_embed__" data-doi="10.1515/noise-2021-0002" data-hide-zero-citations="true" data-style="small_rectangle"></span><script async="" src="https://badge.dimensions.ai/badge.js" charset="utf-8"></script></li></ul>
</section>
<section id="published-2020" class="level3">
<h3 class="anchored" data-anchor-id="published-2020">2020</h3>
<ul class="list-group list-group-flush"><li class="list-group-item">Francesco Aletta, Tin Oberman, <strong>Andrew Mitchell</strong>, Huan Tong, and Jian Kang. (2020) "Assessing the changing urban sound environment during the COVID-19 lockdown period using short-term acoustic measurements." <em>Noise Mapping</em> doi: 10.1515/noise-2020-0011 <br><a class="btn btn-outline-dark btn-sm" ,="" href="https://doi.org/10.1515/noise-2020-0011" target="_blank" rel="noopener noreferrer">
<i class="bi bi-journal-text" role="img" aria-label="Published"></i>
Published
</a> <span class="__dimensions_badge_embed__" data-doi="10.1515/noise-2020-0011" data-hide-zero-citations="true" data-style="small_rectangle"></span><script async="" src="https://badge.dimensions.ai/badge.js" charset="utf-8"></script></li>
<li class="list-group-item"><strong>Andrew Mitchell</strong>, Tin Oberman, Francesco Aletta, Mercede Erfanian, Magdalena Kachlicka, Matteo Lionello, and Jian Kang. (2020) "The Soundscape Indices (SSID) Protocol: A Method for Urban Soundscape Surveys–Questionnaires with Acoustical and Contextual Information." <em>Applied Sciences</em> doi: 10.3390/app10072397 <br><a class="btn btn-outline-dark btn-sm" ,="" href="https://doi.org/10.3390/app10072397" target="_blank" rel="noopener noreferrer">
<i class="bi bi-journal-text" role="img" aria-label="Published"></i>
Published
</a> <span class="__dimensions_badge_embed__" data-doi="10.3390/app10072397" data-hide-zero-citations="true" data-style="small_rectangle"></span><script async="" src="https://badge.dimensions.ai/badge.js" charset="utf-8"></script></li></ul>
</section>
<section id="published-2019" class="level3">
<h3 class="anchored" data-anchor-id="published-2019">2019</h3>
<ul class="list-group list-group-flush"><li class="list-group-item">Francesco Aletta, Tin Oberman, <strong>Andrew Mitchell</strong>, Mercede Erfanian, Matteo Lionello, Magdalena Kachlicka, and Jian Kang. (2019) "Associations between soundscape experience and self-reported wellbeing in open public urban spaces: A field study." <em>The Lancet</em> doi: 10.1016/s0140-6736(19)32814-4 <br><a class="btn btn-outline-dark btn-sm" ,="" href="https://doi.org/10.1016/s0140-6736(19)32814-4" target="_blank" rel="noopener noreferrer">
<i class="bi bi-journal-text" role="img" aria-label="Published"></i>
Published
</a> <span class="__dimensions_badge_embed__" data-doi="10.1016/s0140-6736(19)32814-4" data-hide-zero-citations="true" data-style="small_rectangle"></span><script async="" src="https://badge.dimensions.ai/badge.js" charset="utf-8"></script></li>
<li class="list-group-item">Mercede Erfanian, Andrew J. Mitchell, Jian Kang, and Francesco Aletta. (2019) "The Psychophysiological Implications of Soundscape: A Systematic Review of Empirical Literature and a Research Agenda." <em>International Journal of Environmental Research and Public Health</em> doi: 10.3390/ijerph16193533 <br><a class="btn btn-outline-dark btn-sm" ,="" href="https://doi.org/10.3390/ijerph16193533" target="_blank" rel="noopener noreferrer">
<i class="bi bi-journal-text" role="img" aria-label="Published"></i>
Published
</a> <span class="__dimensions_badge_embed__" data-doi="10.3390/ijerph16193533" data-hide-zero-citations="true" data-style="small_rectangle"></span><script async="" src="https://badge.dimensions.ai/badge.js" charset="utf-8"></script></li></ul>
</section>
</section>
<section id="conference-papers" class="level2">
<h2 class="anchored" data-anchor-id="conference-papers">Conference Papers</h2>
<section id="confs-2023" class="level3">
<h3 class="anchored" data-anchor-id="confs-2023">2023</h3>
<ul class="list-group list-group-flush"><li class="list-group-item"> Andrew Mitchell. (2023) "Soundscapy: A python package for soundscape assessment and analysis." In <em>INTER-NOISE 2023 Conference</em><br></li>
<li class="list-group-item">Jack Harvie-Clark, Rebecca Romeo Pitone, Luis Pereira, and <strong>Andrew Mitchell</strong>. (2023) "Integrating acoustics engineering and soundscape design for an urban park: a case study." In <em>Forum Acusticum 2023</em><br><a class="btn btn-outline-dark btn-sm" ,="" href="https://www.researchgate.net/publication/374478294_Integrating_acoustics_engineering_and_soundscape_design_for_an_urban_park_a_case_study" target="_blank" rel="noopener noreferrer">
<i class="bi bi-journal-text" role="img" aria-label="Published"></i>
Published
</a></li>
<li class="list-group-item">Yuanbo Hou, <strong>Andrew Mitchell</strong>, Qiaoqiao Ren, Francesco Aletta, Jian Kang, and Dick Botteldooren. (2023) "Exploring annoyance in a soundscape context by joint prediction of sound source and annoyance." In <em>Forum Acusticum 2023</em><br></li>
<li class="list-group-item">Yuanbo Hou, Siyang Song, Cheg Luo, <strong>Andrew Mitchell</strong>, Qiaoqiao Ren, Jian Kang, Wenwu Want, and Dick Botteldooren. (2023) "Joint prediction of audio event and annoyance rating in an urban soundscape by hierarchical graph representation learning." In <em>24th INTERSPEECH Conference</em><br></li>
<li class="list-group-item">Jian Kang, Francesco Aletta, Tin Oberman, <strong>Andrew Mitchell</strong>, and Mercede Erfanian. (2023) "On the development of Soundscape Indices (SSID)." In <em>The 29th International Congress on Sound and Vibration</em><br></li>
<li class="list-group-item">Jian Kang, Francesco Aletta, Tin Oberman, <strong>Andrew Mitchell</strong>, and Mercede Erfanian. (2023) "Subjective evaluation of environmental sounds in context - Towards Soundscape Indices (SSID)." In <em>Forum Acusticum 2023</em><br></li>
<li class="list-group-item"><strong>Andrew Mitchell</strong>, Francesco Aletta, Tin Oberman, Mercede Erfanian, and Jian Kang. (2023) "A conceptual framework for the practical use of predictive models and Soundscape Indices: Goals, constraints, and applications." In <em>INTER-NOISE 2023 Conference</em><br></li>
<li class="list-group-item"><strong>Andrew Mitchell</strong>, Emmeline Brown, Ratneel Deo, Yuanbo Hou, Jasper Kirton-Wingate, Jinhua Liang, Alisa Sheinkman, Christopher Soelistyo, Hari Sood, Arin Wongprommoon, Kaiyue Xing, Wingyan Yip, and Francesco Aletta. (2023) "Deep learning techniques for noise annoyance detection: Results from an intensive workshop at the Alan Turing Institute." <em>The Journal of the Acoustical Society of America</em> doi: 10.1121/10.0018787 <br><a class="btn btn-outline-dark btn-sm" ,="" href="https://doi.org/10.1121/10.0018787" target="_blank" rel="noopener noreferrer">
<i class="bi bi-journal-text" role="img" aria-label="Published"></i>
Published
</a> <span class="__dimensions_badge_embed__" data-doi="10.1121/10.0018787" data-hide-zero-citations="true" data-style="small_rectangle"></span><script async="" src="https://badge.dimensions.ai/badge.js" charset="utf-8"></script></li>
<li class="list-group-item"><strong>Andrew Mitchell</strong>, Francesco Aletta, Tin Oberman, and Jian Kang. (2023) "How do we define soundscape?." In <em>Forum Acusticum 2023</em><br></li></ul>
</section>
<section id="confs-2022" class="level3">
<h3 class="anchored" data-anchor-id="confs-2022">2022</h3>
<ul class="list-group list-group-flush"><li class="list-group-item">Cleopatra Christina Moshona, Francesco Aletta, Helen Henze, Xiaochao Chen, <strong>Andrew Mitchell</strong>, Tin Oberman, Huan Tong, André Fiebig, Jian Kang, and Brigitte Schulte-Fortkamp. (2022) "What is a soundscape intervention? Exploring definitions and identifi-cation criteria and a platform to gather real-world examples." In <em>51st International Congress and Exposition on Noise Control Engineering (INTER-NOISE 2022)</em><br><a class="btn btn-outline-dark btn-sm" ,="" href="https://www.researchgate.net/profile/Francesco-Aletta/publication/362906252_What_is_a_soundscape_intervention_Exploring_definitions_and_identification_criteria_and_a_platform_to_gather_real-world_examples/links/630664e561e4553b95364712/What-is-a-soundscape-intervention-Exploring-definitions-and-identification-criteria-and-a-platform-to-gather-real-world-examples.pdf" target="_blank" rel="noopener noreferrer">
<i class="bi bi-journal-text" role="img" aria-label="Published"></i>
Published
</a></li></ul>
</section>
<section id="confs-2021" class="level3">
<h3 class="anchored" data-anchor-id="confs-2021">2021</h3>
<ul class="list-group list-group-flush"><li class="list-group-item"><strong>Andrew Mitchell</strong>, Tin Oberman, Francesco Aletta, and Jian Kang. (2021) "Development of a multi-level predictive soundscape model to assess the soundscapes of public spaces during the COVID-19 lockdowns." <em>The Journal of the Acoustical Society of America</em> In <em>181st Meeting of the Acoustical Society of America</em> doi: 10.1121/10.0008334 <br><a class="btn btn-outline-dark btn-sm" ,="" href="https://doi.org/10.1121/10.0008334" target="_blank" rel="noopener noreferrer">
<i class="bi bi-journal-text" role="img" aria-label="Published"></i>
Published
</a> <span class="__dimensions_badge_embed__" data-doi="10.1121/10.0008334" data-hide-zero-citations="true" data-style="small_rectangle"></span><script async="" src="https://badge.dimensions.ai/badge.js" charset="utf-8"></script></li></ul>
</section>
<section id="confs-2020" class="level3">
<h3 class="anchored" data-anchor-id="confs-2020">2020</h3>
<ul class="list-group list-group-flush"><li class="list-group-item">Rosa Ma Alsina-Pagès, Ferran Orga, Marc Freixes, Roger Mallol, Francesco Aletta, <strong>Andrew Mitchell</strong>, Jian Kang, and Maria Foraster. (2020) "Urban environment soundscape evaluation: Milan case study of noise events perceptions by citizens." In <em>INTER-NOISE and NOISE-CON Congress and Conference Proceedings</em><br><a class="btn btn-outline-dark btn-sm" ,="" href="https://www.researchgate.net/profile/Francesco_Aletta/publication/345314432_Urban_environment_soundscape_evaluation_Milan_case_study_of_noise_events_perceptions_by_citizens/links/5fa32d4ba6fdcc062414f711/Urban-environment-soundscape-evaluation-Milan-case-study-of-noise-events-perceptions-by-citizens.pdf" target="_blank" rel="noopener noreferrer">
<i class="bi bi-journal-text" role="img" aria-label="Published"></i>
Published
</a></li></ul>
</section>
<section id="confs-2019" class="level3">
<h3 class="anchored" data-anchor-id="confs-2019">2019</h3>
<ul class="list-group list-group-flush"><li class="list-group-item">Mercede Erfanian, <strong>Andrew Mitchell</strong>, and Jian Kang. (2019) "The neurophysiology and physiology of soundscape: A review of the empirical literature." In <em>The 6th European Conference on Psychology & the behavioral Sciences (ECP2019)</em><br></li>
<li class="list-group-item">Jian Kang, Francesco Aletta, Tin Oberman, Mercede Erfanian, Magdalena Kachlicka, Matteo Lionello, and <strong>Andrew Mitchell</strong>. (2019) "Towards soundscape indices." <em>Proceedings of the ICA 2019 and EAA Euroregio : 23rd International Congress on Acoustics</em> In <em>Proceedings of the 23rd International Congress on Acoustics</em> doi: 10.18154/RWTH-CONV-239249 <br><a class="btn btn-outline-dark btn-sm" ,="" href="https://doi.org/10.18154/RWTH-CONV-239249" target="_blank" rel="noopener noreferrer">
<i class="bi bi-journal-text" role="img" aria-label="Published"></i>
Published
</a> <span class="__dimensions_badge_embed__" data-doi="10.18154/RWTH-CONV-239249" data-hide-zero-citations="true" data-style="small_rectangle"></span><script async="" src="https://badge.dimensions.ai/badge.js" charset="utf-8"></script></li>
<li class="list-group-item"><strong>Andrew Mitchell</strong> and Jian Kang. (2019) "The spectral structure of acoustic time series can predict the perceptual assessment of urban soundscapes." In <em>178th Meeting of the Acoustical Society of America</em> doi: 10.1121/1.5136681 <br><a class="btn btn-outline-dark btn-sm" ,="" href="https://doi.org/10.1121/1.5136681" target="_blank" rel="noopener noreferrer">
<i class="bi bi-journal-text" role="img" aria-label="Published"></i>
Published
</a> <span class="__dimensions_badge_embed__" data-doi="10.1121/1.5136681" data-hide-zero-citations="true" data-style="small_rectangle"></span><script async="" src="https://badge.dimensions.ai/badge.js" charset="utf-8"></script></li>
<li class="list-group-item"><strong>Andrew Mitchell</strong>, Francesco Aletta, Tin Oberman, Mercede Erfanian, Magdalena Kachlicka, Matteo Lionello, and Jian Kang. (2019) "Making cities smarter with new soundscape indices." In <em>178th Meeting of the Acoustical Society of America</em> doi: 10.1121/1.5136970 <br><a class="btn btn-outline-dark btn-sm" ,="" href="https://doi.org/10.1121/1.5136970" target="_blank" rel="noopener noreferrer">
<i class="bi bi-journal-text" role="img" aria-label="Published"></i>
Published
</a> <span class="__dimensions_badge_embed__" data-doi="10.1121/1.5136970" data-hide-zero-citations="true" data-style="small_rectangle"></span><script async="" src="https://badge.dimensions.ai/badge.js" charset="utf-8"></script></li></ul>
</section>
</section>
<section id="other-publications" class="level2">
<h2 class="anchored" data-anchor-id="other-publications">Other Publications</h2>
<section id="other-2023" class="level3">
<h3 class="anchored" data-anchor-id="other-2023">2023</h3>
<ul class="list-group list-group-flush"><li class="list-group-item">Data Study Group Team and <strong>Andrew Mitchell</strong>. (2023) "Data Study Group Final Report: IEDE Acoustics Group, University College London Deep Learning Techniques for noise annoyance detection (DeLTA)." doi: 10.5281/ZENODO.10090651 <br><a class="btn btn-outline-dark btn-sm" ,="" href="https://doi.org/10.5281/ZENODO.10090651" target="_blank" rel="noopener noreferrer">
<i class="bi bi-journal-text" role="img" aria-label="Published"></i>
Published
</a> <span class="__dimensions_badge_embed__" data-doi="10.5281/ZENODO.10090651" data-hide-zero-citations="true" data-style="small_rectangle"></span><script async="" src="https://badge.dimensions.ai/badge.js" charset="utf-8"></script></li></ul>
</section>
<section id="other-2022" class="level3">
<h3 class="anchored" data-anchor-id="other-2022">2022</h3>
<ul class="list-group list-group-flush"><li class="list-group-item"><strong>Andrew Mitchell</strong>. (2022) "Predictive Modelling of Complex Urban Soundscapes: Enabling an engineering approach to soundscape design." doi: 10.13140/RG.2.2.15590.50245 <br><a class="btn btn-outline-dark btn-sm" ,="" href="https://doi.org/10.13140/RG.2.2.15590.50245" target="_blank" rel="noopener noreferrer">
<i class="bi bi-journal-text" role="img" aria-label="Published"></i>
Published
</a> <span class="__dimensions_badge_embed__" data-doi="10.13140/RG.2.2.15590.50245" data-hide-zero-citations="true" data-style="small_rectangle"></span><script async="" src="https://badge.dimensions.ai/badge.js" charset="utf-8"></script></li>
<li class="list-group-item"><strong>Andrew Mitchell</strong>, Mercede Erfanian, Christopher Soelitsyo, Tin Oberman, and Francesco Aletta. (2022) "DeLTA (Deep Learning Techniques for noise Annoyance detection) Dataset." doi: 10.5281/ZENODO.7158056 <br><a class="btn btn-outline-dark btn-sm" ,="" href="https://doi.org/10.5281/ZENODO.7158056" target="_blank" rel="noopener noreferrer">
<i class="bi bi-journal-text" role="img" aria-label="Published"></i>
Published
</a> <span class="__dimensions_badge_embed__" data-doi="10.5281/ZENODO.7158056" data-hide-zero-citations="true" data-style="small_rectangle"></span><script async="" src="https://badge.dimensions.ai/badge.js" charset="utf-8"></script></li></ul>
</section>
</section>
</main> <!-- /main -->
<script id="quarto-html-after-body" type="application/javascript">
window.document.addEventListener("DOMContentLoaded", function (event) {
const toggleBodyColorMode = (bsSheetEl) => {
const mode = bsSheetEl.getAttribute("data-mode");
const bodyEl = window.document.querySelector("body");
if (mode === "dark") {
bodyEl.classList.add("quarto-dark");
bodyEl.classList.remove("quarto-light");
} else {
bodyEl.classList.add("quarto-light");
bodyEl.classList.remove("quarto-dark");
}
}
const toggleBodyColorPrimary = () => {
const bsSheetEl = window.document.querySelector("link#quarto-bootstrap");
if (bsSheetEl) {
toggleBodyColorMode(bsSheetEl);
}
}
toggleBodyColorPrimary();
const disableStylesheet = (stylesheets) => {
for (let i=0; i < stylesheets.length; i++) {
const stylesheet = stylesheets[i];
stylesheet.rel = 'prefetch';
}
}
const enableStylesheet = (stylesheets) => {
for (let i=0; i < stylesheets.length; i++) {
const stylesheet = stylesheets[i];
stylesheet.rel = 'stylesheet';
}
}
const manageTransitions = (selector, allowTransitions) => {
const els = window.document.querySelectorAll(selector);
for (let i=0; i < els.length; i++) {
const el = els[i];
if (allowTransitions) {
el.classList.remove('notransition');
} else {
el.classList.add('notransition');
}
}
}
const toggleGiscusIfUsed = (isAlternate, darkModeDefault) => {
const baseTheme = document.querySelector('#giscus-base-theme')?.value ?? 'light';
const alternateTheme = document.querySelector('#giscus-alt-theme')?.value ?? 'dark';
let newTheme = '';
if(darkModeDefault) {
newTheme = isAlternate ? baseTheme : alternateTheme;
} else {
newTheme = isAlternate ? alternateTheme : baseTheme;
}
const changeGiscusTheme = () => {
// From: https://github.com/giscus/giscus/issues/336
const sendMessage = (message) => {
const iframe = document.querySelector('iframe.giscus-frame');
if (!iframe) return;
iframe.contentWindow.postMessage({ giscus: message }, 'https://giscus.app');
}
sendMessage({
setConfig: {
theme: newTheme
}
});
}
const isGiscussLoaded = window.document.querySelector('iframe.giscus-frame') !== null;
if (isGiscussLoaded) {
changeGiscusTheme();
}
}
const toggleColorMode = (alternate) => {
// Switch the stylesheets
const alternateStylesheets = window.document.querySelectorAll('link.quarto-color-scheme.quarto-color-alternate');
manageTransitions('#quarto-margin-sidebar .nav-link', false);
if (alternate) {
enableStylesheet(alternateStylesheets);
for (const sheetNode of alternateStylesheets) {
if (sheetNode.id === "quarto-bootstrap") {
toggleBodyColorMode(sheetNode);
}
}
} else {
disableStylesheet(alternateStylesheets);
toggleBodyColorPrimary();
}
manageTransitions('#quarto-margin-sidebar .nav-link', true);
// Switch the toggles
const toggles = window.document.querySelectorAll('.quarto-color-scheme-toggle');
for (let i=0; i < toggles.length; i++) {
const toggle = toggles[i];
if (toggle) {
if (alternate) {
toggle.classList.add("alternate");
} else {
toggle.classList.remove("alternate");
}
}
}
// Hack to workaround the fact that safari doesn't
// properly recolor the scrollbar when toggling (#1455)
if (navigator.userAgent.indexOf('Safari') > 0 && navigator.userAgent.indexOf('Chrome') == -1) {
manageTransitions("body", false);
window.scrollTo(0, 1);
setTimeout(() => {
window.scrollTo(0, 0);
manageTransitions("body", true);
}, 40);
}
}
const isFileUrl = () => {
return window.location.protocol === 'file:';
}
const hasAlternateSentinel = () => {
let styleSentinel = getColorSchemeSentinel();
if (styleSentinel !== null) {
return styleSentinel === "alternate";
} else {
return false;
}
}
const setStyleSentinel = (alternate) => {
const value = alternate ? "alternate" : "default";
if (!isFileUrl()) {
window.localStorage.setItem("quarto-color-scheme", value);
} else {
localAlternateSentinel = value;
}
}
const getColorSchemeSentinel = () => {
if (!isFileUrl()) {
const storageValue = window.localStorage.getItem("quarto-color-scheme");
return storageValue != null ? storageValue : localAlternateSentinel;
} else {
return localAlternateSentinel;
}
}
const darkModeDefault = false;
let localAlternateSentinel = darkModeDefault ? 'alternate' : 'default';
// Dark / light mode switch
window.quartoToggleColorScheme = () => {
// Read the current dark / light value
let toAlternate = !hasAlternateSentinel();
toggleColorMode(toAlternate);
setStyleSentinel(toAlternate);
toggleGiscusIfUsed(toAlternate, darkModeDefault);
};
// Ensure there is a toggle, if there isn't float one in the top right
if (window.document.querySelector('.quarto-color-scheme-toggle') === null) {
const a = window.document.createElement('a');
a.classList.add('top-right');
a.classList.add('quarto-color-scheme-toggle');
a.href = "";
a.onclick = function() { try { window.quartoToggleColorScheme(); } catch {} return false; };
const i = window.document.createElement("i");
i.classList.add('bi');
a.appendChild(i);
window.document.body.appendChild(a);
}
// Switch to dark mode if need be
if (hasAlternateSentinel()) {
toggleColorMode(true);
} else {
toggleColorMode(false);
}
const icon = "";
const anchorJS = new window.AnchorJS();
anchorJS.options = {
placement: 'right',
icon: icon
};
anchorJS.add('.anchored');
const isCodeAnnotation = (el) => {
for (const clz of el.classList) {
if (clz.startsWith('code-annotation-')) {
return true;
}
}
return false;
}
const clipboard = new window.ClipboardJS('.code-copy-button', {
text: function(trigger) {
const codeEl = trigger.previousElementSibling.cloneNode(true);
for (const childEl of codeEl.children) {
if (isCodeAnnotation(childEl)) {
childEl.remove();
}
}
return codeEl.innerText;
}
});
clipboard.on('success', function(e) {
// button target
const button = e.trigger;
// don't keep focus
button.blur();
// flash "checked"
button.classList.add('code-copy-button-checked');
var currentTitle = button.getAttribute("title");
button.setAttribute("title", "Copied!");
let tooltip;
if (window.bootstrap) {
button.setAttribute("data-bs-toggle", "tooltip");
button.setAttribute("data-bs-placement", "left");
button.setAttribute("data-bs-title", "Copied!");
tooltip = new bootstrap.Tooltip(button,
{ trigger: "manual",
customClass: "code-copy-button-tooltip",
offset: [0, -8]});
tooltip.show();
}
setTimeout(function() {
if (tooltip) {
tooltip.hide();
button.removeAttribute("data-bs-title");
button.removeAttribute("data-bs-toggle");
button.removeAttribute("data-bs-placement");
}
button.setAttribute("title", currentTitle);
button.classList.remove('code-copy-button-checked');
}, 1000);
// clear code selection
e.clearSelection();
});
function tippyHover(el, contentFn, onTriggerFn, onUntriggerFn) {
const config = {
allowHTML: true,
maxWidth: 500,
delay: 100,
arrow: false,
appendTo: function(el) {
return el.parentElement;
},
interactive: true,
interactiveBorder: 10,
theme: 'quarto',
placement: 'bottom-start',
};
if (contentFn) {
config.content = contentFn;
}
if (onTriggerFn) {
config.onTrigger = onTriggerFn;
}
if (onUntriggerFn) {
config.onUntrigger = onUntriggerFn;
}
window.tippy(el, config);
}
const noterefs = window.document.querySelectorAll('a[role="doc-noteref"]');
for (var i=0; i<noterefs.length; i++) {
const ref = noterefs[i];
tippyHover(ref, function() {
// use id or data attribute instead here
let href = ref.getAttribute('data-footnote-href') || ref.getAttribute('href');
try { href = new URL(href).hash; } catch {}
const id = href.replace(/^#\/?/, "");
const note = window.document.getElementById(id);
return note.innerHTML;
});
}
const xrefs = window.document.querySelectorAll('a.quarto-xref');
const processXRef = (id, note) => {
// Strip column container classes
const stripColumnClz = (el) => {
el.classList.remove("page-full", "page-columns");
if (el.children) {
for (const child of el.children) {
stripColumnClz(child);
}
}
}
stripColumnClz(note)
const typesetMath = (el) => {
if (window.MathJax) {
// MathJax Typeset
window.MathJax.typeset([el]);
} else if (window.katex) {
// KaTeX Render
var mathElements = el.getElementsByClassName("math");
var macros = [];
for (var i = 0; i < mathElements.length; i++) {
var texText = mathElements[i].firstChild;
if (mathElements[i].tagName == "SPAN") {
window.katex.render(texText.data, mathElements[i], {
displayMode: mathElements[i].classList.contains('display'),
throwOnError: false,
macros: macros,
fleqn: false
});
}
}
}
}
if (id === null || id.startsWith('sec-')) {
// Special case sections, only their first couple elements
const container = document.createElement("div");
if (note.children && note.children.length > 2) {
container.appendChild(note.children[0].cloneNode(true));
for (let i = 1; i < note.children.length; i++) {
const child = note.children[i];
if (child.tagName === "P" && child.innerText === "") {
continue;
} else {
container.appendChild(child.cloneNode(true));
break;
}
}
typesetMath(container);
return container.innerHTML
} else {
typesetMath(note);
return note.innerHTML;
}
} else {
// Remove any anchor links if they are present
const anchorLink = note.querySelector('a.anchorjs-link');
if (anchorLink) {
anchorLink.remove();
}
typesetMath(note);
return note.innerHTML;
}
}
for (var i=0; i<xrefs.length; i++) {
const xref = xrefs[i];
tippyHover(xref, undefined, function(instance) {
instance.disable();
let url = xref.getAttribute('href');
let hash = undefined;
if (url.startsWith('#')) {
hash = url;
} else {
try { hash = new URL(url).hash; } catch {}
}
if (hash) {
const id = hash.replace(/^#\/?/, "");
const note = window.document.getElementById(id);
if (note !== null) {
try {
const html = processXRef(id, note.cloneNode(true));
instance.setContent(html);
} finally {
instance.enable();
instance.show();
}
} else {
// See if we can fetch this
fetch(url.split('#')[0])
.then(res => res.text())
.then(html => {
const parser = new DOMParser();
const htmlDoc = parser.parseFromString(html, "text/html");
const note = htmlDoc.getElementById(id);
if (note !== null) {
const html = processXRef(id, note);
instance.setContent(html);
}
}).finally(() => {
instance.enable();
instance.show();
});
}
} else {
// See if we can fetch a full url (with no hash to target)
// This is a special case and we should probably do some content thinning / targeting
fetch(url)
.then(res => res.text())
.then(html => {
const parser = new DOMParser();
const htmlDoc = parser.parseFromString(html, "text/html");
const note = htmlDoc.querySelector('main.content');