-
Notifications
You must be signed in to change notification settings - Fork 14
/
dissertation.tex
229 lines (149 loc) · 5.28 KB
/
dissertation.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
\documentclass[print]{dissertation}
%\documentclass{dissertation}
%\usepackage{microtype}
\usepackage[acronym]{glossaries}
\usepackage{amsmath}
\usepackage{gensymb}
\usepackage{physics}
\usepackage[nodisplayskipstretch]{setspace}
\usepackage{listings}
\usepackage{rotating}
\usepackage{tabularx}
\usepackage{multirow}
\usepackage{booktabs}
\newcolumntype{C}[1]{>{\raggedright\arraybackslash}p{#1}}
\usepackage{afterpage}
\usepackage{wrapfig}
\usepackage[inline]{enumitem}
\usepackage{mathtools}
\usepackage{contour}
\usepackage{hyperref}
\usepackage{float}
\usepackage[export]{adjustbox}
\usepackage{footnote}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{natbib}
\bibliographystyle{abbrvnat}
%\setcitestyle{authoryear}
\usepackage{bibentry}
\nobibliography*
\usepackage{comment}
% show sources
\usepackage[source]{optional}
% no sources
% \usepackage[no_source]{optional}
\usepackage{tikz}
\usetikzlibrary{shadows.blur}
\usetikzlibrary{shapes.symbols}
\usepackage{tcolorbox}
\newtcolorbox{highlighted}{colback=yellow}
\usepackage{graphicx}
%% \usepackage{pgfplots}
\usepackage{xcolor}
% Select what to do with todonotes:
% \usepackage[disable]{todonotes} % notes not showed
\usepackage[draft]{todonotes} % notes showed
\newcounter{mycomment}
\newcommand{\mycomment}[2][]{%
% initials of the author (optional) + note in the margin
\refstepcounter{mycomment}%
{%
\setstretch{0.7}% spacing
\todo[color={red!100!green!33},size=\small]{%
\textbf{Comment [\uppercase{#1}\themycomment]:}~#2}%
}}
% JS for strikethrough
\usepackage{soul}
\setlength{\marginparwidth}{2cm}
% abbreviations:
\newacronym{HAND}{HAND}{Height above the nearest drainage}
\newacronym{SRTM}{SRTM}{Shuttle Radar Topography Mission}
\newacronym{NED}{NED}{National Elevation Dataset}
\newacronym{NDWI}{NDWI}{Normalized Difference Water Index}
\newacronym{MNDWI}{MNDWI}{Modified Normalized Difference Water Index}
\newacronym{NDVI}{NDVI}{Normalized Difference Vegetation Index}
\newacronym{NDSI}{NDSI}{Normalized Difference Snow Index}
\newacronym{SAR}{SAR}{Synthetic Aperture Radar}
\newacronym{InSAR}{InSAR}{Interferometric Synthetic Aperture Radar}
\newacronym{AWEI}{AWEI}{Automated Water Extraction Index}
\newacronym{HSV}{HSV}{Hue Saturation Value}
\newacronym{LOWESS}{LOWESS}{Locally Weighted Scatterplot Smoothing}
\newacronym{OSM}{OSM}{OpenStreetMap}
\newacronym{VGI}{VGI}{Volunteered Geographic Information}
\newacronym{EO}{EO}{Earth Observation}
\newacronym{CART}{CART}{Classification And Regression Tree}
\newacronym{IPCC}{IPCC}{Intergovernmental Panel on Climate Change}
\newacronym{SDG}{SDGs}{Sustainable Development Goals}
\newacronym{KDE}{KDE}{Kernel Density Estimation}
\newacronym{PGM}{PGM}{Probabilistic Graphical Model}
\newacronym{CPD}{CPD}{Conditional Probability Distribution}
\newacronym{BN}{BN}{Bayesian Network}
\newacronym{MRF}{MRF}{Markov Random Field}
\newacronym{CRF}{CRF}{Conditional Random Field}
\newacronym{DAG}{DAG}{Directed Acyclic Graph}
\newacronym{MCMC}{MCMC}{Markov Chain Monte Carlo}
\newacronym{EM}{EM}{Expectation Minimization}
\newacronym{PDF}{PDF}{Probability Distribution Functions}
\makeglossaries
\begin{document}
%% Specify the title and author of the thesis. This information will be used on
%% the title page (in title/title.tex) and in the metadata of the fi\dfrac{num}{den}l PDF.
\title{Planetary-scale surface water detection from space}
\author{Gennadii}{Donchyts}
%% Use Roman numerals for the page numbers of the title pages and table of contents.
\frontmatter
\include{00.1-title/title}
\dedication{
\epigraph{
``Entia non sunt multiplicanda praeter necessitatem.`` \\
``Entities should not be multiplied beyond necessity.``
}{\textit{--- William of Occam}}
}
\tableofcontents
\addcontentsline{toc}{chapter}{Acronyms}
\setheader{Acronyms}
\printglossary[type=\acronymtype,title=Acronyms]
\include{00.2-summary/summary}
%% Use Arabic numerals for the page numbers of the chapters.
\mainmatter
%% Turn on thumb indices.
\thumbtrue
\include{01.1-introduction/introduction}
\include{01.1-remote-sensing/remote-sensing}
\include{01.2-water-detection/water-detection}
\include{01.3-prob/prob}
\include{01.4-change-detection/change-detection}
\include{01.8-aqua-monitor/aqua-monitor}
\include{01.9-water-murray-darling/water-australia-osm}
\include{02.1-conclusions/conclusion}
\include{02.2-acknowledgments/acknowledgments}
\appendix % Use letters for the chapter numbers of the appendices.
\include{01.2-water-detection/appendix-a}
% see website
% \include{01.8-aqua-monitor/appendix-a}
\include{03.1-publications/publications}
% \include{propositions}
%\bibliographystyle{apa}
\bibliographystyle{dissertation}
\bibliography{dissertation}
%% Turn off thumb indices for unnumbered chapters.
\thumbfalse
\end{document}
\begin{comment}
* talk to Lourens on IPCC, big issues and trends
* check "we ...", change to "I ..." or "it ..." where appropriate
* check Chapter <> chapter
+ check \ref{ch2} where Chapter needs to be added
* check Figure <> figure
* check \ref{fig:} where Figure needs to be added
* rename ch1 to ch1-introduction, etc.
* human-made vs man-made?
* data sets vs datasets?
* water body / water bodies vs waterbody / waterbodies?
* in order to -> to
* A, m3 -> m2
* Introduction IVVV --> 10
* Landsat <> LANDSAT
* Figure 3.2 freuency
\end{comment}