-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCV.tex
More file actions
1446 lines (1074 loc) · 67.9 KB
/
CV.tex
File metadata and controls
1446 lines (1074 loc) · 67.9 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
% Adapted from layout by GaelVaroquaux
% http://gael-varoquaux.info
%
\documentclass{article} %{{{--
\usepackage[paper=a4paper,
top=2cm,
left=1.35cm,
width=18.2cm,
bottom=2cm
]{geometry}
%margin=4cm,
\usepackage{calc}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{lmodern}
\usepackage{color,hyperref}
\usepackage{graphicx}
\usepackage{multicol}
\usepackage{wasysym} % For phone symbol
\usepackage{url}
\def\bf{\bfseries}
\def\sf{\sffamily}
\def\sl{\slshape}
% Semi condensed bold
\definecolor{deep_blue}{rgb}{0,.2,.5}
\definecolor{dark_blue}{rgb}{0,.1,.3}
\definecolor{myblue}{rgb}{.01,0.21,0.71}
\definecolor{gray}{rgb}{.5, .5, .5}
\hypersetup{pdftex, % needed for pdflatex
breaklinks=true, % so long urls are correctly broken across lines
colorlinks=true,
urlcolor=myblue,
%linkcolor=darkblue,
%citecolor=darkgreen,
}
%% This gives us fun enumeration environments.
\usepackage{enumitem}
%% More layout: Get rid of indenting throughout entire document
\setlength{\parindent}{0in}
%% Reference the last page in the page number
%
\usepackage{fancyhdr,lastpage}
\pagestyle{fancy}
%\pagestyle{empty} % Uncomment this to get rid of page numbers
\fancyhf{}\renewcommand{\headrulewidth}{0pt}
%\fancyfootoffset{\marginparsep}+\marginparwidth}
\lfoot{
\hspace{-2\marginparsep}
\,\hfill \arabic{page} of \protect\pageref*{LastPage} \hfill \,\\
\,\hfill {\footnotesize \textcolor{gray}{updated February 2018~~~~~}} \hfill\,
}
\newcommand{\mydate}[1]{{\textcolor{gray}{\footnotesize #1}}}
\newcommand{\makeheading}[1]%
{%\hspace*{-\marginparsep minus \marginparwidth}%
%\begin{minipage}[t]{\textwidth+\marginparwidth+\marginparsep}%
\begin{minipage}[t]{\textwidth}%
{\Large #1}\\%[-0.5\baselineskip]%
\vskip 0.2\baselineskip
\color{deep_blue}{\rule{\columnwidth}{3pt}}%
\end{minipage}
\vskip 1.\baselineskip plus 2\baselineskip minus 1.\baselineskip
}
\newlength\sidebarwidth
\setlength\sidebarwidth{3.6cm}
\newcommand{\topic}[3][]%
{\pagebreak[2]%
\vskip 1.5\baselineskip plus 3\baselineskip minus 0.7\baselineskip
\begin{minipage}{\textwidth}
\phantomsection\addcontentsline{toc}{section}{#1}%
\nopagebreak\hspace{0in}%
\nopagebreak\begin{minipage}[t]{\sidebarwidth - .2cm}
\raggedleft \bf\sf
\color{deep_blue}{\Large #2}
\end{minipage}%
\hfill
\begin{minipage}[t]{\linewidth - \sidebarwidth}
\nopagebreak{\color{deep_blue}%
\rule{0pt}{\baselineskip}%
\rule{\linewidth}{2.5pt}%
\llap{\raisebox{.3\baselineskip}{\sf #1}}%
\vspace*{.1\baselineskip}%
}%
#3%
\end{minipage}
\end{minipage}}
\newcommand{\smalltopic}[2]%
{\pagebreak[2]%
\vskip 1\baselineskip plus 2\baselineskip minus 0.3\baselineskip
\begin{minipage}{\textwidth}
%\hspace{-\marginparsep minus \marginparwidth}%
\phantomsection\addcontentsline{toc}{subsection}{#1}%
\nopagebreak\hspace{0in}%
\nopagebreak\begin{minipage}[t]{\sidebarwidth - .2cm}
\raggedleft \bf\sf %\vskip -0.5\baselineskip
\textcolor{dark_blue}{\large #1}%
\end{minipage}%
\hfill
\begin{minipage}[t]{\linewidth - \sidebarwidth}
\nopagebreak{%
%\vspace{-.7\baselineskip}%
\rule{\linewidth}{.5pt}%
\vspace{.1\baselineskip}%
}%
#2
\end{minipage}
\end{minipage}}
\newcommand{\subtopic}[3][]
{\begin{minipage}{\textwidth}
\vspace*{.4\baselineskip}
\nopagebreak\hspace{0in}%
\nopagebreak\begin{minipage}[t]{\sidebarwidth - .2cm}
% Super posh: using semi-bold condensed fonts. Works only with
% lmodern
\raggedleft {\sf\fontseries{sbc}\selectfont #2}
%{\small\sl\\[-0.2\baselineskip] #1}
{\\[-0.2\baselineskip] \textcolor{gray}{\footnotesize #1}}
\end{minipage}%
\hfill
\begin{minipage}[t]{\linewidth - \sidebarwidth}
#3%
\end{minipage}%
\vspace*{.2\baselineskip plus 1\baselineskip minus
.2\baselineskip}%
\end{minipage}}
\newcommand{\dateonly}[2][]
{\begin{minipage}{\textwidth}
\vspace*{.4\baselineskip}
\nopagebreak\hspace{0in}%
\nopagebreak\begin{minipage}[t]{\sidebarwidth - .2cm}
\raggedleft {~}
{\\[-\baselineskip] \textcolor{gray}{\footnotesize #1}}
\end{minipage}%
\hfill
\begin{minipage}[t]{\linewidth - \sidebarwidth}
#2%
\end{minipage}%
\vspace*{.2\baselineskip plus 1\baselineskip minus
.2\baselineskip}%
\end{minipage}}
\newcommand{\sidenote}[2]
{\vspace*{-.2\baselineskip}\begin{minipage}{\textwidth}
\nopagebreak\hspace{0in}%
\nopagebreak\begin{minipage}[t]{\sidebarwidth - .2cm}
\raggedleft {#1}
\end{minipage}%
\hfill
\begin{minipage}[t]{\linewidth - \sidebarwidth}
#2%
\end{minipage}%
\vspace*{.5\baselineskip plus 1\baselineskip minus
.2\baselineskip}%
\end{minipage}}
% New lists environments
\newlist{outerlist}{itemize}{1}
\setlist[outerlist]{font=\sffamily\bfseries, label=\textbullet}
\setitemize{topsep=0ex, partopsep=0ex}
\setdescription{font=\normalfont\sffamily\bfseries, itemsep=.5ex,
parsep=.5ex, leftmargin=3ex}
\newcommand{\blankline}{\quad\pagebreak[2]}
\def\mydot{\textcolor{deep_blue}{\rule{1ex}{1ex}}}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%--}}}%
\begin{document}
\makeheading{
\begin{minipage}[B]{0.5\textwidth}
%\vfill
\vspace*{-.5\baselineskip}%
\parbox{10cm}{
\hskip -0.1cm
{\Huge\bf\sf \color{deep_blue} D\huge \hskip -0.05cm ANIEL %
\Huge \color{deep_blue} B\huge \hskip -0.05cm USCOMBE}
\\[-.1\baselineskip]
{\bf\sf Assistant Research Professor}
\\
{\sf Northern Arizona University}
}
\end{minipage}
\hfill
\begin{minipage}[B]{8cm}
\raggedleft
\,\vskip -1em
\small
School of Earth Sciences \& Environmental Sustainability\\
625 Knowles Drive\\
Flagstaff AZ 86011-4099\\
{\texttt {Daniel.Buscombe@nau.edu}}\\
{\texttt {www.danielbuscombe.com}}%
\vspace*{-.5\baselineskip}%
\end{minipage}
}
%\begin{center}
%\begin{minipage}{15cm}
\begin{multicols}{2}
\sloppy
%\textcolor{deep_blue}{\bf\sf Research interests}:
%Cosmology, weak lensing, data mining and automated learning algorithms for
%large astronomical data sets.
\begin{itemize}[leftmargin=2ex, itemsep=0ex]
\item[\mydot]
I am Assistant Research Professor at NAU, teaching and researching in sedimentology, sediment transport, geomorphology, hydroacoustics, and
scalable geocomputation. I often use machine learning tools in my research.
\item[\mydot]
Previously, I worked at the Grand Canyon Monitoring and Research Center, an
interdisciplinary program within the U.S. Geological Survey carrying out basic and applied research into sediment issues related to the management of regulated rivers in the Western United States.
\item[\mydot]
Previously I was an a post-doctoral fellow,
working in the Marine Science departments
at the University of Plymouth, and before that at the University of California Santa Cruz. During those fellowships, I worked on
sediment transport and hydrodynamics in nearshore and coastal shelf environments.
\item[\mydot]
My PhD research at the University of Plymouth (2004 - 2008) focused on the morphodynamics and sediment dynamics of macrotidal gravel beaches.
\item[\mydot]
I am interested in encouraging reproducible and open research practices
in geosciences. To this end I spend significant time developing a variety of open-source
scientific computing tools.
\end{itemize}
\end{multicols}
\vspace*{-1.5em}
\fussy
%\end{minipage}
%\end{center}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\topic{E \large\hskip -1ex DUCATION}{~}
\subtopic[2004-2008]{\bf PhD}{
School of Geography, University of Plymouth, Plymouth, UK\\
advised by Prof. Gerd Masselink and Dr Mark Davidson (School of Marine Science and Engineering)\\
Thesis: \href{https://dbuscombe-usgs.github.io/media/pdfs/Buscombe_thesis_june2008.pdf}{
Morphodynamics, Sediment Dynamics and Sedimentation of a Gravel Beach}
}
\subtopic[2000-2003]{\bf BSc}{
Bowland College, Lancaster University, Lancaster, UK\\
Major: Physical Geography; Minors: Environmental Science \& Biological Science\\
First class, with honours.
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\topic{E \large\hskip -1ex XPERIENCE}{~}
\vspace*{-0.5\baselineskip}
\smalltopic{Employment}{}
\subtopic[Nov. 2016--Present]{NAU}{
Assistant Research Professor.\\
School of Earth Sciences \& Environmental Sustainability, Northern Arizona University.}
\subtopic[2012-- Nov. 2016]{U.S. Geological Survey}{
Research Geologist.\\
Grand Canyon Monitoring \& Research Center, U.S. Geological Survey.\\
Supervised by Dr Paul Grams.}
\subtopic[2009--2012]{UoP Marine Science}{
NERC post-doctoral fellowship.\\
Department of Marine Science \& Engineering, University of Plymouth, UK.\\
Supervised by Dr Daniel Conley \& Dr Alex Nimmo-Smith.}
\subtopic[2008--2009]{UCSC Marine Science}{
Postdoctoral Researcher, U.S. Geological Survey\\
\& Department of Earth \& Planetary Sciences, University of California Santa Cruz.\\
Supervised by Dr David Rubin \& Dr Jessica Lacy.}
\subtopic[2008--2011]{UoP Marine Ecology}{
Computer Programming Contractor.\\
Marine Biology \& Ecology Research Centre, University of Plymouth, UK.\\
Supervised by Dr Kerry Howell.}
\subtopic[2008]{UoP BARDEX}{
Research Assistant, School of Geography, University of Plymouth, UK.\\
BARDEX (Barrier Dynamics Experiment), an EU Hydralab III-funded laboratory wave flume project.
Supervised by Prof. Jon Williams \& Prof. Gerhard Masselink.
}
\subtopic[2007--2008]{UoP WHISSP}{
Research Assistant, School of Marine Science \& Engineering, University of Plymouth, UK.\\
WHISSP (Wave Hub Impacts on Seabed and Shoreline Processes), an EU-funded field-based project studying the effects of marine renewable energy devices on the shoreline.
Supervised by Prof. Jon Williams \& Prof. Gerhard Masselink.
}
\subtopic[2004--2008]{UoP Geography}{
Associate Lecturer and Demonstrator (part-time).\\
School of Geography, University of Plymouth, UK.
}
\subtopic[2003--2004]{FSC}{
Assistant tutor.\\
Field Studies Council, Castle Head, Grange-over-Sands, UK.
}
\smalltopic{Teaching}{}
\subtopic[Spring 2017, 2018]{EES 680}{
Earth \& Environmental Data Analysis\\
{\it Course leader -- University of Northern Arizona}}
\subtopic[Fall 2014--Present]{EES 529}{
Applied Remote Sensing\\
{\it Guest lecturer -- University of Northern Arizona}}
\subtopic[Fall 2015]{EES 698-1}{
Topics in Fluvial Geomorphology\\
{\it Guest lecturer -- University of Northern Arizona}}
\subtopic[2010 -- 2012]{OS204}{
Waves, Tides and Coastal Dynamics\\
{\it Guest lecturer -- University of Plymouth}}
\subtopic[2010 -- 2012]{OS311}{
Modelling Ocean Processes\\
{\it Guest lecturer -- University of Plymouth}}
\subtopic[2004--2008]{Geography}{
Introductory statistics, Glacial Geomorphology, Coastal Geomorphology\\
{\it Teaching assistant -- University of Plymouth}}
\subtopic[2003--2004]{FSC}{
Field- and classroom-based ecology, geology, environmental sciences\\
{\it Teaching assistant -- Field Studies Council Castle Head}}
\smalltopic{Service}{}
\subtopic[2007--]{Journal Reviewer}{
Arctic; Continental Shelf Research; Earth Surface Processes \& Landforms; Geo-Marine Letters; Geophysical Research Letters; Hydrobiologia; IEEE Journal of Oceanic Engineering; Journal of Hydraulic Engineering; Journal of Marine Science \& Engineering; Journal of Mountain Science; Journal of Sedimentary Research; Marine Geology; Remote Sensing; Sedimentology; Sedimentary Geology; Water Resources Research.
}
\subtopic[2017--]{NEON Aquatic Technical Working Group}{
Member of the NSF-funded National Ecological Observatory Network Aquatic Technical Working Group, advising on bathymetry, substrate characterisation, and hydroacoustic instrumentation and analyses.
}
\subtopic[2018]{GSA}{
Co-convener for session T3: Advances in River Science in the Intermountain West. Geological Society of America Joint Rocky Mountain - Cordilleran section meeting, Flagstaff, AZ.
}
\subtopic[2016]{Software Carpentry}{
Lead organizer for this 3 day-long, 30-person workshop at U.S. Geological Survey.
}
\subtopic[2015]{MBES in Rivers}{
Lead organizer for 2nd Multibeam in Rivers Workshop, a 3 day-long, 30-person workshop at U.S. Geological Survey.
}
\subtopic[2013]{AGU}{
Co-convener of the session, EP010. Fluvial sediment budgets: Can we do better? American Geophysical Union Fall Meeting, December 2013
}
\subtopic[2007]{AGU}{
Co-convener of the session, H60: Linking sediment supply, bed-sediment particle size, sediment transport, and bed morphology in fluvial, marine, and aeolian settings. American Geophysical Union Fall Meeting, December 2007
}
\subtopic[2007]{YCSEC}{
On the organising committee for the Young Coastal Scientist and Engineers Conference, 2007 (YCSEC 2007) hosted by the School of Geography at the University of Plymouth 19-21 April 2007.
}
\subtopic[2005]{QRA}{
On the organising committee for the Quaternary Research Association's 4th International Postgraduate Symposium, hosted by the School of Geography at the University of Plymouth 31st August - 2nd September 2005.
}
\smalltopic{Mentoring}{}
\subtopic[2016-Present]{Andrew Platt}{
\textit{Estimates of total in-channel sand storage in Grand Canyon}. MS, Northern Arizona University School of Earth Sciences \& Environmental Sustainability.\\
Co-supervised with Dr Ryan Porter.
}
\subtopic[2016-Present]{Ryan Lima}{
\textit{Remote sensing of sandbar dynamics}. PhD, Northern Arizona University School of Earth Sciences \& Environmental Sustainability.\\
Co-supervised with Dr Temuulen Sankey.
}
\subtopic[2014-Present]{Thomas Ashley}{
\textit{Sediment transport and the evolution of dune topography at the grain scale}. PhD, School of Geology and Geophysics, University of Wyoming.\\
Co-supervised with Dr Brandon McElroy.
}
\subtopic[2014-2017]{Rebecca Rossi}{
\textit{Structure-from-Motion surveying of sandbars in Grand Canyon}. MS, Utah State University Department of Watershed Sciences.\\
Co-supervised with Dr Joseph Wheaton.
}
\subtopic[2015-2017]{Daniel Hamill}{
\textit{Transforming a Low-Cost Leisure Gadget into a High Resolution Riverbed Remote Sensing Tool}. MS, Utah State University Department of Watershed Sciences.\\
Co-supervised with Dr Joseph Wheaton.
}
\subtopic[2011--2012]{Martin Meoli}{
\textit{Gravel transport under waves}. MSc Applied Marine Science, School of Marine Science \& Engineering, University of Plymouth\\
Co-supervised with Dr Alex Nimmo-Smith.
}
\subtopic[2011--2012]{James Sawyer}{
\textit{Holographic imaging of near-bed sand suspensions}. MSc Applied Marine Science, School of Marine Science \& Engineering, University of Plymouth\\
Co-supervised with Dr Daniel Conley.
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\topic{A \large\hskip -1ex WARDS \& HONORS}{~}
\subtopic[2017]{Institute of Electrical and Electronics Engineers}{
"Excellence in Peer Review" Award for the journal, {\it IEEE Journal of Oceanic Engineering}
}
\subtopic[February 2017]{ASCE-EWRI Best Technical Note Award 2017}{
For Buscombe et al. (2016) \textit{Automated riverbed sediment classification using low-cost sidescan sonar}, Journal of Hydraulic Engineering. Awarded by the Environmental \& Water Resources Institute, American Society of Civil Engineers.
}
\subtopic[March 2016]{USGS "What's the Big Idea?""}{
Research featured in the video \href{https://www.youtube.com/watch?v=zNqpuKf2O7o}{What's the Big Idea? —Using Sound to Remotely Sense the Riverbed}
on the YouTube channel of the U.S. Geological Survey
}
\subtopic[July 2015]{American Geophysical Union Research Spotlight}{
Research featured in the article \href{https://eos.org/research-spotlights/using-sound-waves-to-study-grand-canyon-sediment}{Using Sound Waves to Study Grand Canyon Sediment}
in EOS Earth and Space Science News
}
\subtopic[2013]{Elsevier "Excellence in Peer Review" Award}{
for the Elsevier journal, {\it Sedimentary Geology}
}
\subtopic[September 2012]{JGR-Oceans Editor's Highlight}{
Research featured in the article \href{http://agupubs.onlinelibrary.wiley.com/agu/article/10.1029/2012JC007954/editor-highlight/}{Novel observations of currents and drag generated by a tsunami}
published in the Journal of Geophysical Research - Oceans.
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\topic{C \large\hskip -1ex OMPUTING}{
I am an active developer and maintainer of several
scientific computing packages.
See my github profile
(\href{http://github.com/dbuscombe-usgs}{http://github.com/dbuscombe-usgs})
for details.}
%\vspace*{-0.5\baselineskip}
\smalltopic{Skills}{
\begin{itemize}[leftmargin=0ex, itemsep=0ex, labelindent=-2ex, parsep=.5ex]
\item[\mydot] Experienced open source developer, with a specialization in
scientific computing, including visualization, geospatial statistics, signal processing, image processing
and machine learning.
\item[\mydot] Expert in the Python Language and extensions such as Cython;
expert in the MATLAB language, experience writing R, C, C++, and Fortran code.
\item[\mydot] Experience with a variety of tools and languages, including
bash, csh, \LaTeX{}, HTML, Git, Linux, virtual machines, virtual environments, auto-deployment of software packages (PyPI, SWIG, Distutils, conda), distributed, parallel, out-of-core and cloud computing.
\item[\mydot] Experience with Hydrodynamic modelling software, including the \href{http://www.gotm.net/index.php}{General Ocean Turbulence Model}; Simulating Waves Nearshore (\href{http://www.swan.tudelft.nl/}{SWAN}); Simulating Waves 'til Shore (\href{http://swash.sourceforge.net/features/features.htm}{SWASH}).
\item[\mydot] Experience with Hydrographic surveying and mapping software, including \href{http://gmt.soest.hawaii.edu/}{Generic Mapping Tools}, \href{http://www.ldeo.columbia.edu/res/pi/MB-System/}{MB-System} and \href{www.hypack.com}{HYPACK}, GIS, and geospatial libaries such as GDAL, Mapbox and Proj-4.
\end{itemize}
}
\smalltopic{Major Software Projects}{}
\subtopic[2018--Present]{PriSM}{
Software for probabilistic seafloor habitat mapping using multibeam backscatter. Source code currently available in Python.}
\subtopic[2010--Present]{DGS}{
Software for automated analyses of grain size from images of sediment. Source code currently available in Matlab and Python.}
\subtopic[2014--Present]{PyHum}{
Software for reading, processing and analysis of Humminbird sidescan data. Source code available in Python/Cython.
}
\subtopic[2015--Present]{pysesa}{
Python program for spatially explicit spectral analysis. Software for spatially explicit analyis of point clouds and spatially distributed data. Source code available in Python.
}
\subtopic[2011--2012]{Sand Simulation Toolbox}{
Software for generating 3D discrete particle models consisting of realistic particles (with a size- and shape-distribution) with user-defined properties. Source code available in Matlab.
}
\subtopic[20012]{MATSCAT}{
Software for analysis of multiple-frequency acoustic backscatter for suspended sediment concentration and particle size. Source code available in Matlab.}
\subtopic[2008--2011]{Benthic Analysis Tool}{
Software for the semi-automation of species identification and measurement in deep-sea ROV/drop frame images. Source code available in Matlab.
}
%\newpage
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\topic{S \large\hskip -1ex ELECTED TALKS}{\small \\{\textcolor{gray}{\it $**$= invited talk}}}
%\smalltopic{Astronomy}{}
\dateonly[**February 2018]{
{\it PyHum: open-source software for acoustic remote sensing with low-cost sidescan sonar.}\\
Fish \& Wildlife Service Remote Sensing Group
}
\dateonly[**October 2017]{
{\it Comprehensive Sediment Transport Monitoring in Fine Grained Rivers with High Suspended Loads.}\\
USGS Minnesota Water Science Center, Mounds View, MN.
}
\dateonly[September 2017]{
{\it The sand dunes of the Colorado River, Grand Canyon, USA.}\\
River, Coastal \& Estuarine Morphodynamics Conference, Italy.
}
\dateonly[**August 2017]{
{\it Automated substrate characterization using low-cost sidescan sonar.}\\
Annual American Fisheries Society Meeting, Tampa, FL.
}
\dateonly[**March 2017]{
{\it Particle Size `by Proxy': Decoding the Textural Information in Scattered Sound \& Light}\\
Utah Water Research Laboratory, Utah State University, Logan, UT.
}
\dateonly[**December 2016]{
{\it Large-scale SfM: Grand Canyon Style}\\
Pacific Coastal \& Marine Science Center, USGS, Santa Cruz, CA.
}
\dateonly[**October 2016]{
{\it Particle Size `by Proxy': Decoding the Textural Information in Remotely Sensed Landforms}\\
School of Earth Sciences \& Environmental Sustainability, Northern Arizona University, Flagstaff, AZ.
}
\dateonly[July 2016]{
{\it Stochasticity of riverbed backscattering, with implications for acoustical classification of non-cohesive sediment using multibeam sonar}\\
8th International Conference on Fluvial Hydraulics, St. Louis, MO
}
\dateonly[**January 2016]{
{\it The Digital Grain Size Web Computing Application}\\
USGS Center for Data Integration, Denver, CO
}
\dateonly[**January 2016]{
{\it Observations of sand dune migration on the Colorado River in Grand Canyon}\\
Glen Canyon Dam Adaptive Management Program Adaptive Management Work Group Meeting, Phoenix, AZ
}
\dateonly[April 2015]{
{\it Considerations for unsupervised riverbed sediment characterization using low-cost sidescan sonar: Examples from the Colorado River, AZ and the Penobscot River, ME.}\\
Proceedings of the 10th Federal Interagency Sedimentation Conference, Reno, NV
}
\dateonly[April 2015]{
{\it Using oblique digital photography for alluvial sandbar monitoring and low-cost change detection.}\\
Proceedings of the 10th Federal Interagency Sedimentation Conference, Reno, NV
}
\dateonly[April 2015]{
{\it Hydroacoustic signatures of Colorado riverbed sediments in Marble and Grand Canyons using multibeam sonar}\\
Proceedings of the 10th Federal Interagency Sedimentation Conference, Reno, NV
}
\dateonly[March 2015]{
{\it Acoustic and topographic sediment classification in Lower Marble Canyon}\\
2nd MBES in Rivers Workshop, USGS Flagstaff, AZ
}
\dateonly[March 2015]{
{\it Characterizing sand dune migration on the Colorado River in Western Grand Canyon using repeat multibeam mapping}\\
2nd MBES in Rivers Workshop, USGS Flagstaff, AZ
}
\dateonly[March 2015]{
{\it Towards automated substrate mapping with low-cost sidescan sonar}\\
2nd MBES in Rivers Workshop, USGS Flagstaff, AZ
}
\dateonly[**February 2015]{
{\it The Digital Grain Size Project: Past, Present and Future}\\
USGS Coastal and Marine Geology, Woods Hole, MA
}
\dateonly[December 2014]{
{\it Topographic and acoustic estimates of grain-scale roughness from high-resolution multibeam echo-sounder: examples from the Colorado River in Marble and Grand Canyons}\\
American Geophysical Union Fall Meeting, San Francisco, CA
}
\dateonly[**August 2014]{
{\it Measuring bed sediments for improved sediment budgets and physical habitat assessment}\\
Glen Canyon Dam Adaptive Management Program Adaptive Management Work Group Meeting, Flagstaff, AZ
}
\dateonly[**February 2014]{
{\it Bed Sediment Classification Using High-Frequency Acoustic Backscatter}\\
Multibeam in Rivers Summit, Utah State University, Logan, UT
}
\dateonly[December 2013]{
{\it Acoustic Scattering by an Heterogeneous River Bed: Relationship to Bathymetry and Implications for Sediment Classification using Multibeam Echosounder Data}\\
American Geophysical Union Fall Meeting, San Francisco, CA
}
\dateonly[July 2012]{
{\it Schmidt number of sand suspensions under oscillating-grid turbulence}\\
33rd International Conference on Coastal Engineering, Santander, Spain
}
\dateonly[**July 2012]{
{\it Digital Grain Size}\\
British Geological Survey, Marine Geosciences Division, Edinburgh, UK
}
\dateonly[**February 2012]{
{\it Nearshore Sediment Transport Through the Looking Glass}\\
Grand Canyon Monitoring and Research Center, Flagstaff, AZ
}
\dateonly[February 2012]{
{\it Co-variation of intertidal morphology, bedforms and grain size on a macrotidal sand beach: Praa Sands, UK}\\
Ocean Sciences 2012, Salt Lake City, UT
}
\dateonly[December 2011]{
{\it How do you tell how big something is without direct measurement? Estimating grain size using an image's spectrum}\\
American Geophysical Union Fall Meeting, San Francisco, CA
}
\dateonly[November 2010]{
{\it Hourly Measurements of Grain-Size from the Inner Continental Shelf Seabed Using a Fully-Automated, Hydraulically-Controlled Underwater Video Microscope}\\
Particles in Europe 2010, Villefranche-Sur-Mer, France
}
\dateonly[June 2010]{
{\it An automated and 'universal' method for measuring mean grain size from a digital image of sediment}\\
9th Federal Interagency Sedimentation Conference, Las Vegas, NV
}
\dateonly[February 2010]{
{\it Modeling sand resuspension and stratification in turbulent nearshore flows: sensitivity to grain size distribution}\\
Ocean Sciences 2010, Portland, OR
}
\dateonly[**February 2010]{
{\it Turbulence, Sediment Stratification and Altered Resuspension under Waves}\\
Centre for Coastal Science and Engineering, University of Plymouth, UK
}
\dateonly[**January 2009]{
{\it Morphodynamics and sediment dynamics of a macrotidal gravel beach}\\
Coastal and Marine Geology, United States Geological Survey, Santa Cruz, CA
}
\dateonly[**October 2008]{
{\it Optical sensing of gravel sediment transport and characteristics: recent advances and future challenges.}\\
Lancaster University Environmental Imaging Network, Lancaster University, UK
}
\dateonly[September 2008]{
{\it Granular Properties from Digital Images of Sediment: Implications for Coastal Sediment Transport Modelling}\\
31st International Conference on Coastal Engineering (ICCE), Hamburg, Germany
}
\dateonly[December 2007]{
{\it The relationship between sediment properties and sedimentation patterns on a macrotidal gravel beach over a semi lunar tidal cycle}\\
American Geophysical Union Fall Meeting, San Francisco, CA
}
\dateonly[**November 2007]{
{\it A year in the life of Slapton Sands - but was it a typical year?}\\
Slapton Research Seminar, Field Studies Council, Slapton Ley, UK
}
\dateonly[May 2007]{
{\it Field observations of step dynamics on a macrotidal gravel beach}\\
Coastal Sediments 2007, New Orleans, LA
}
\dateonly[**December 2006]{
{\it Field observations of morphological change and sediment dynamics from the nearshore of a gravel beach}\\
Centre for Coastal Dynamics and Engineering (C-CoDE), University of Plymouth
}
\dateonly[**November 2006]{
{\it A view from the beach}\\
Slapton Research Seminar, Field Studies Council, Slapton Ley, UK
}
\dateonly[**December 2004]{
{\it A tale of two storms}\\
Slapton Research Seminar, Field Studies Council, Slapton Ley, UK
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\topic{M \large\hskip -1ex AJOR GRANTS}{~}
\subtopic[$\$$30,000 (pending)]{U.S. Bureau of Reclamation}{
Co-Principal Investigator (multiple PIs – J. Mueller and others), (2018 - 2020). Reservoir Operation Alternatives to Minimize the Economic Effects of Sedimentation.
}
\subtopic[$\$$30,000 (pending)]{USGS Center for Data Integration}{
Co-Investigator (J. Warrick and others), (2018). Mapping land-use, hazard vulnerability and habitat suitability using deep neural networks
}
\subtopic[$\$$30,000 (pending)]{Minnesota Aquatic Invasive Species Research Center}{
Co-Principal Investigator (multiple PIs – J. Kozarek and others), (2018 - 2020). Early detection of Zebra mussels using multibeam sonar.
}
\subtopic[$\$$52,209 (pending)]{National Science Foundation}{
Co-Principal Investigator (multiple PIs – M. Guala and others), (2018 - 2020). NSF-GLD: Predictive bedload modeling of bedform sediment flux unders steady and transient flows informed by high resolution bathymetry at laboratory and field scales
}
%\subtopic[$\$$808,425 (pending)]{National Science Foundation}{
%Co-Principal Investigator (multiple PIs – M. Smith and others), (2018 - 2020). NSFGEO-NERC: Collaborative Research: Crossing the Land-Sea Divide - Quantifying the Role of Terrestrial and Littoral Bedload Flux in Submarine Canyon Evolution
%}
%\subtopic[$\$$XXXXX (pending)]{Glen Canyon Dam Adaptive Management Work Group}{
%Co-Investigator (multiple PIs – S. Vanderkooi and others), (2017 - 2019). Sandbars and sediment storage dynamics: long-term monitoring and research at the site, research and ecosystem scales. Grand Canyon Monitoring and Research Center Triennial Work Plan
%}
\subtopic[$\$$XXXXX (pending)]{Glen Canyon Dam Adaptive Management Work Group}{
Co-Investigator (multiple PIs – S. Vanderkooi and others), (2017 - 2019). Sandbars and sediment storage dynamics: long-term monitoring and research at the site, research and ecosystem scales. Grand Canyon Monitoring and Research Center Triennial Work Plan
}
\subtopic[$\$$49,710]{U.S. National Park Service}{
Principal-Investigator, (2017 - 2018) Sediment Resources of the Colorado and Green River in Canyonlands National Park.
}
\subtopic[$\$$23,298]{USGS Coastal and Marine Geology Program}{
Principal-Investigator, (2017 - 2018) Remote Sensing of Coastal Change with advanced structure-from-motion techniques.
}
\subtopic[$\$$144,290]{USGS}{
Principal-Investigator, (2016 - 2017) Remote Sensing of alluvial sandbar dynamics in grand canyon.
}
\subtopic[$\$$200,000]{USGS Mendenhall post-doctoral fellowship}{
Co-investigator: T. Sankey (PI), P. Grams, A. East, D. Buscombe., T. Sankey, (2015 – 2017). The fluvial-aeolian- hillslope continuum: measurement and modeling of topography and vegetation to inform landscape-scale connectivity for sediment in river valley ecosystems
}
\subtopic[$\$$46,417]{USGS Center for Data Integration}{
Principal-Investigator (2015 - 2016). The digital grain size web and mobile computing application
}
\subtopic[$\$$48,994]{USGS Innovation Fund}{
Principal-Investigator (2015 - 2016). LOBOS (Limnological and Oceanographic Benthic Observation System): The next generation dual-scale submersible benthic imaging system. Jointly funded by the USGS Innovation Fund ($\$$16,497), the Innovation Center for Earth Science Director's Fund ($\$$17,497) and the USGS Southwest Biological Science Center ($\$$15,000)
}
\subtopic[$\$$4,253,400]{Glen Canyon Dam Adaptive Management Work Group}{
Co-Investigator (multiple PIs – J. Schmidt and others), (2015 - 2017). Sandbars and sediment storage dynamics: long-term monitoring and research at the site, research and ecosystem scales. Grand Canyon Monitoring and Research Center Triennial Work Plan
}
\subtopic[$\$$232,016]{National Park Service}{
Co-Investigator (multiple PIs – P.E. Grams and others), (2014 - 2017). Geomorphic Processes and Relations Among Flow Regime, Sediment Flux and Resource Conditions on the Green River in Canyonlands National Park
}
\subtopic[$\$$2,911,400]{Glen Canyon Dam Adaptive Management Work Group}{
Co-Investigator (multiple PIs – J. Schmidt and others), (2013 - 2014). Sandbars and sediment storage dynamics: long-term monitoring and research at the site, research and ecosystem scales. Grand Canyon Monitoring and Research Center Biennial Work Plan
}
\subtopic[$\pounds$240,000]{Engineering and Physical Sciences Research Council, UK}{
Co-Investigator; G. Masselink (PI), D.C. Conley, D. Buscombe., (2012 - 2014). Proto-type Experiment and Numerical Modelling of Energetic Sediment Transport under Waves (PESTS). EPSRC EP/K000306/1.
}
%\subtopic[$\pounds$250]{Plymouth Marine Science Education Fund}{
%Principal-Investigator (2008). Travel grant to attend and present at ICCE Hamburg 2008
%}
%\subtopic[$\pounds$150]{Challenger Society for Marine Science}{
%Principal-Investigator (2008). Travel grant to attend and present at ICCE Hamburg 2008
%}
%\subtopic[$\$$500]{Society for Sedimentary Geology Grant}{
%Principal-Investigator (2008). President's Fund to investigate nearshore bedload transport and bedforms with stereo underwater video cameras
%}
\subtopic[$\$$2000]{International Association for Mathematical Geology}{
Principal-Investigator (2008). Grant to develop and trial algorithms for quantification of granular properties and coarse-grain sediment transport from images of the sea bed
}
%\subtopic[700 euros]{International Association of Sedimentologists}{
%Principal-Investigator (2008). Grant to investigate nearshore bedload transport and bedforms with stereo underwater video cameras
%}
%\subtopic[$\$$600]{American Geophysical Union}{
%Principal-Investigator (2007). Travel Grant, to attend the AGU 2007 Fall Meeting in San Francisco, CA
%}
%\subtopic[$\pounds$300]{British Geomorphological Society}{
%Principal-Investigator (2007). Postgraduate award, to attend and present at Coastal Sediments 2007, in New Orleans, LA
%}
%\newpage
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\topic{P \large\hskip -1ex EER- REVIEWED PUBLICATIONS}{~}
\newcounter{PubNumber}
\newcommand{\publication}{\item[{\bf \textcolor{myblue}{[\stepcounter{PubNumber}\arabic{PubNumber}]}}]}
\subtopic{\hspace*{-3ex} 2006--2007}{~
%\vspace*{\baselineskip}
\begin{itemize}[leftmargin=0ex, itemsep=0ex, parsep=.5ex, labelindent=-4ex]
\publication
D. Buscombe {\sl et al.}
{\it Field observations of step dynamics on a macrotidal gravel beach}.
In Kraus, N., and Rosati, J., (Eds), Proceedings of Coastal Sediments 2007 (Volume 1), 2007.
\publication
D. Buscombe \& G. Masselink.
{\it Concepts in Gravel Beach Dynamics}.
EARTH SCIENCE REVIEWS 79:33-52, 2006.
\end{itemize}
}
\subtopic{\hspace*{-3ex} 2008}{~
%\vspace*{\baselineskip}
\begin{itemize}[leftmargin=0ex, itemsep=0ex, parsep=.5ex, labelindent=-4ex]
\publication
G. Masselink {\sl et al.}
{\sl Sediment Trend Models Fail to Reproduce Small Scale Sediment Transport Patterns on an Intertidal Beach}.
SEDIMENTOLOGY 55:667-687, 2008.
\publication
M. Austin \& D. Buscombe.
{\sl Morphological Change and Sediment Dynamics of the Beach Step on a Macrotidal Gravel Beach}.
MARINE GEOLOGY 249:167-183, 2008.
\publication
D. Buscombe.
{\sl Estimation of Grain Size Distributions and Associated Parameters from Digital Images of Sediment}.
SEDIMENTARY GEOLOGY 210:1-10, 2008.
\publication
G. Masselink \& D. Buscombe.
{\sl Shifting gravel: A case study of Slapton Sands}.
GEOGRAPHY REVIEW 22:27-31, 2008.
\publication
D. Buscombe {\sl et al.}
{\sl Granular Properties from Digital Images of Sediment: Implications for Coastal Sediment Transport Modelling}.
Proceedings of the 31st International Conference on Coastal Engineering (ICCE), Hamburg, 2008.
\publication
A. Ruiz de Alegria {\it et al.}
{\it Storm Impacts on a Gravel Beach Using the ARGUS video system}.
Proceedings of the 31st International Conference on Coastal Engineering (ICCE), Hamburg, 2008.
\publication
M. Austin {\sl et al.}
{\it Groundwater seepage between a gravel barrier beach and a freshwater lagoon}.
Proceedings of the 31st International Conference on Coastal Engineering (ICCE), Hamburg, 2008.
\end{itemize}
}
\subtopic{\hspace*{-3ex} 2009}{~
%\vspace*{\baselineskip}
\begin{itemize}[leftmargin=0ex, itemsep=0ex, parsep=.5ex, labelindent=-4ex]
\publication
D. Buscombe \& G. Masselink.
{\sl Grain Size Information from the Statistical Properties of Digital Images of Sediment}.
SEDIMENTOLOGY 56:421-438, 2009.
\publication
J.A. Warrick {\sl et al.}
{\sl Cobble Cam: Grain-size measurements of sand to boulder from digital photographs and autocorrelation analyses}.
EARTH SURFACE PROCESSES \& LANDFORMS 34:1811-1821, 2009.
\publication
J. Williams {\sl et al.}
{\sl BARDEX (Barrier Dynamics Experiment): taking the beach into the laboratory}.
JOURNAL OF COASTAL RESEARCH SI 56:158-162, 2009.
\end{itemize}
}
\subtopic{\hspace*{-3ex} 2010}{~
%\vspace*{\baselineskip}
\begin{itemize}[leftmargin=0ex, itemsep=0ex, parsep=.5ex, labelindent=-4ex]
\publication
D. Buscombe {\sl et al.}
{\sl Universal Approximation of Grain Size from Images of Non-Cohesive Sediment}.
JOURNAL OF GEOPHYSICAL RESEARCH - EARTH SURFACE 115:F02015, 2010.
\publication
D. Buscombe {\sl et al.}
{\sl An automated and 'universal' method for measuring mean grain size from a digital image of sediment}.
Proceedings of the 9th Federal Interagency Sedimentation Conference, Las Vegas, June 2010.
\end{itemize}
}
\subtopic{\hspace*{-3ex} 2012}{~
%\vspace*{\baselineskip}
\begin{itemize}[leftmargin=0ex, itemsep=0ex, parsep=.5ex, labelindent=-4ex]
\publication
J. Williams {\sl et al.}
{\sl Barrier Dynamics Experiment (BARDEX): Aims, Design and Procedures}.
COASTAL ENGINEERING 63:3-12, 2012.
\publication
D. Buscombe \& D. Conley
{\sl Effective Shear Stress of Graded Sediment}.
WATER RESOURCES RESEARCH, 48:W05506, 2012.
\publication
D. Buscombe \& D.M. Rubin.
{\sl Advances in the Simulation and Automated Measurement of Granular Material, Part 1: Simulations}.
JOURNAL OF GEOPHYSICAL RESEARCH - EARTH SURFACE 117:F02001, 2012.
\publication
D. Buscombe \& D.M. Rubin.
{\sl Advances in the Simulation and Automated Measurement of Granular Material, Part 2: Direct Measures of Particle Properties}.
JOURNAL OF GEOPHYSICAL RESEARCH - EARTH SURFACE 117:F02002, 2012.
\publication
J.R. Lacy {\sl et al.}
{\sl Currents and sediment transport induced by a tsunami far from its source}.
JOURNAL OF GEOPHYSICAL RESEARCH - OCEANS 117:C09028, 2012.
\publication
J. A. Puleo {\sl et al.}
{\sl Comprehensive study of swash-zone hydrodynamics and sediment transport}.
Proceedings of the 33rd International Conference on Coastal Engineering, Santander, July 2012.
\publication
D. Buscombe \& D. Conley
{\sl Schmidt number of sand suspensions under oscillating-grid turbulence}.
Proceedings of the 33rd International Conference on Coastal Engineering, Santander, July 2012.
\publication
D. Conley {\sl et al.}
{\sl Use of digital holographic cameras to examine the measurement and understanding of sediment suspension in the nearshore}.
Proceedings of the 33rd International Conference on Coastal Engineering, Santander, July 2012.
\end{itemize}
}
\subtopic{\hspace*{-3ex} 2013}{~
%\vspace*{\baselineskip}
\begin{itemize}[leftmargin=0ex, itemsep=0ex, parsep=.5ex, labelindent=-4ex]
\publication
D. Buscombe.
{\sl Transferable Wavelet Method for Grain Size-Distribution from Images of Sediment Surfaces and Thin Sections, and Other Natural Granular Patterns}.
SEDIMENTOLOGY 60:1709--1732, 2013.
\end{itemize}
}
\subtopic{\hspace*{-3ex} 2014}{~
%\vspace*{\baselineskip}
\begin{itemize}[leftmargin=0ex, itemsep=0ex, parsep=.5ex, labelindent=-4ex]
\publication
J.A. Puleo {\sl et al.}
{\sl A Comprehensive Field Study of Swash-Zone Processes, Part 1: Experimental Design with Examples of Hydrodynamic and Sediment Transport Measurements}.
JOURNAL OF WATERWAY, PORT, COASTAL, \& OCEAN ENGINEERING 140:29–42, 2014.
\publication
D. Buscombe {\sl et al.}
{\sl Autonomous bed-sediment imaging-systems for revealing temporal variability of grain size}.