-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.qmd
More file actions
134 lines (107 loc) · 3.4 KB
/
index.qmd
File metadata and controls
134 lines (107 loc) · 3.4 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
---
title: "spatial-epi-101"
subtitle: "An Introduction to Spatial Epidemiology using R"
toc: false
page-layout: full
---
<style>
/* Custom CSS for the hero banner overlay */
.hero-banner {
position: relative;
color: white;
background-size: cover;
background-position: center;
padding: 8rem 1.5rem;
margin-bottom: 3rem;
text-align: center;
}
.hero-banner .quarto-title-block {
position: relative;
z-index: 2;
color: white;
}
.hero-banner h1.title {
font-size: 3.5rem;
font-weight: 700;
padding-bottom: 0.5rem;
}
.hero-banner .subtitle {
font-size: 1.25rem;
color: #e5e7eb; /* A light gray for the subtitle */
}
/* Remove default Quarto title block styling for the hero banner */
.quarto-title-block {
margin-bottom: 0;
}
/* Center section headers */
.content-section h2 {
text-align: center;
margin-top: 4rem;
margin-bottom: 2rem;
}
/* Style for module cards */
.module-card {
border: 1px solid #dee2e6;
border-radius: 0.5rem;
padding: 1.5rem;
height: 100%;
transition: box-shadow 0.3s ease;
}
.module-card:hover {
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.module-card h3 {
font-size: 1.1rem;
font-weight: 600;
margin-top: 0;
}
</style>
<div class="hero-banner" style="background-image: url('nordlinger-ries.png');">
</div>
<div class="hero-caption" style="text-align: center; margin-bottom: 2rem; font-style: italic; color: #666;">
3D Visualization of Nördlinger Ries
</div>
<div class="content-section container">
## Welcome to the Course
This course provides a comprehensive introduction to the principles and practices of spatial epidemiology. You will learn how to leverage the power of R to analyze, visualize, and interpret spatial health data, gaining critical skills for public health research and practice.
---
## Course Modules
::: {.grid}
::: {.g-col-12 .g-col-md-4}
<div class="module-card">
### Module 1: Mastering R for Spatial Data
Build a rock-solid foundation in handling, manipulating, and visualizing vector and raster data using the essential `sf`, `terra`, and `tmap` packages.
</div>
:::
::: {.g-col-12 .g-col-md-4}
<div class="module-card">
### Module 2: Advanced Spatial Data Operations
Learn the core data wrangling techniques of spatial analysis, including spatial joins, buffering, and extracting raster values for defined zones.
</div>
:::
::: {.g-col-12 .g-col-md-4}
<div class="module-card">
### Module 3: Remote Sensing for Epidemiology
Process satellite imagery to derive key environmental variables like NDVI and NDWI, and understand their application in modeling vector-borne diseases.
</div>
:::
::: {.g-col-12 .g-col-md-4}
<div class="module-card">
### Module 4: Validation and Accuracy Assessment
Learn how to validate your spatial models and maps against ground-truth data using confusion matrices, ROC curves, and other key statistical metrics.
</div>
:::
::: {.g-col-12 .g-col-md-4}
<div class="module-card">
### Module 5: Analyzing Spatial Clustering
Move from visualization to formal testing. This module introduces spatial statistics like Moran's I and Ripley's K-function to identify disease clusters and hotspots.
</div>
:::
::: {.g-col-12 .g-col-md-4}
<div class="module-card">
### Module 6: Resources & Best Practices
A curated list of key textbooks, R packages, and online resources to continue your learning journey. This module also covers principles of ethical and reproducible research.
</div>
:::
:::
</div>