-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
300 lines (293 loc) · 10.5 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>metaRange - build mechanistic species range models</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8"/>
<meta name="author" content="Stefan Fallert" />
<meta name="description" content="The R package metaRange is a framework that allows you to build process based species distribution models that can include a (basically) arbitrary number of environmental factors, processes, species and species interactions." />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz@48" rel="stylesheet" />
<style>
html, body {
width: 100vw;
height: 100vh;
margin: 0;
padding: 0;
overflow-x: hidden;
}
body {
background-color: #212f36;
background: radial-gradient(circle, rgb(40, 63, 81) 0%, rgb(26, 34, 34) 100%);
background-size: cover;
background-attachment: local;
color: #d6d2c8;
font-family: "Noto Sans", sans-serif;
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
font-variation-settings: "wdth" 100;
font-size: large;
}
header {
display: flex;
justify-content: space-between;
flex-direction: column;
align-items: center;
background-color: rgb(26, 34, 34);
color: #d6d2c8;
padding: 20px 0px;
text-align: center;
position: fixed;
top: 0;
width: 100%;
z-index: 100;
}
nav a:visited {
color: #fff;
text-decoration: none;
}
nav a {
color: #fff;
text-decoration: none;
margin: 0 25px;
}
nav a:hover {
text-decoration: underline;
}
.center {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
margin: 0;
padding: 0;
width: 100%;
box-sizing: border-box;
}
.grainy {
background-image: url(assets/grain.png);
}
.card {
background-color: rgb(26, 34, 34);
background-image: url(assets/grain.png);
border-radius: 12px;
padding: 25px;
}
.badge-card {
border-radius: 6px;
background: linear-gradient(90deg, rgb(37, 39, 39) 0%, rgb(40, 36, 32) 100%);
display: flex;
flex-direction: row;
justify-content: space-evenly;
gap: 10px;
align-content: center;
margin-bottom: 20px;
padding: 15px 10px 10px 10px;
}
.card h2 {
margin-top: 0;
}
.card p {
color: #a4a4a4;
}
.hero-container {
background-color: rgb(26, 34, 34);
position: relative;
width: 100%;
height: 100%;
margin-top: 220px;
margin-bottom: 140px;
}
.image-container {
position: relative;
width: 100%;
margin: auto;
}
.image-container img {
width: 100%;
height: auto;
display: block;
}
.hero-overlay-text {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: rgb(218, 211, 171);
font-size: 48px;
text-align: center;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
margin: 0;
}
.grid-holder-overview {
display: grid;
max-width: 1200px;
grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
margin: 0 auto;
grid-gap: 1rem;
}
.grid-holder-package {
display: grid;
max-width: 1200px;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
margin: 0 auto;
grid-gap: 1rem;
}
.material-symbols-outlined {
font-size: 60px;
}
code {
white-space: pre-wrap;
word-wrap: break-word;
}
p {
line-height: 160%;
}
a {
color: #3187b9;
text-decoration: none;
font-weight: bold;
}
a:hover {
color: #0c71b4;
text-decoration: underline;
}
a:active {
color: #005d9b;
}
a:visited {
color: #3da9c4;
}
</style>
</head>
<body>
<header class="grainy">
<nav>
<a href="#overview">Overview</a>
<a href="#package">R package</a>
<a href="#publications">Publications</a>
<a href="#contact">Contact</a>
</nav>
</header>
<div class="center">
<div class="hero-container">
<h1 class="hero-overlay-text">Welcome to the metaRange project</h1>
</div>
<div style="display: flex; justify-content: center; margin-bottom: 40px;">
<img src="assets/logo.png" alt="metaRange logo" width= "30%">
</div>
<h1>Overview</h1>
<div id="overview" class="card" style="margin-bottom: 20px;">
<p>
[metaRange] is a framework that allows you to build process based species distribution models.
<br/>
They can include a (basically) arbitrary number of environmental factors, processes, species and species interactions.
</p>
</div>
</div>
<div class="grid-holder-overview">
<div class="card">
<div style="display: grid;">
<p>
The framework is grid based and each environmental variable is represented by a seperate raster layer.
</p>
<div class="image-container">
<img src="assets/02.png" alt="environment">
</div>
</div>
</div>
<div class="card">
<div style="display: grid;">
<p>
This environment is inhabited by one or multiple species, where each population is represented by one grid cell of the environment.
</p>
<div class="image-container">
<img src="assets/09.png" alt="species">
</div>
</div>
</div>
<div class="card">
<div style="display: grid;">
<p>
Species are defined by traits (any type of biological meaningful data) and processes (mechanisms that define how the species interacts with its environment and other species).
</p>
<div class="image-container">
<img src="assets/06.png" alt="species detail">
</div>
</div>
</div>
<div class="card">
<div style="display: grid;">
<p>
The processes are sorted into a queue, based on a user given priority, and executed each time step.
</p>
<div class="image-container">
<img src="assets/08.png" alt="queue">
</div>
</div>
</div>
</div>
<div class="center">
<h1 id="package">R package</h1>
<div id="badges" class="badge-card">
<a href="https://cran.r-project.org/package=metaRange">
<img src="https://github.com/metaRange/metaRange/actions/workflows/check-standard.yaml/badge.svg" alt="build status badge" />
</a>
<a href="https://cran.r-project.org/package=metaRange">
<img src="https://www.r-pkg.org/badges/version/metaRange?color=34d058" alt="version badge" />
</a>
<a href="https://cran.r-project.org/package=metaRange">
<img src="https://cranlogs.r-pkg.org/badges/grand-total/metaRange" alt="download count badge" />
</a>
</div>
</div>
<div class="grid-holder-package">
<div id="docs" class="card">
<h2>Documentation / Tutorials</h2>
<p>
The R package includes extensive documentation to allow users of all experience levels a quick start into building models with metaRange.
</p>
<a href="https://metaRange.github.io/metaRange/"><span class="material-symbols-outlined">menu_book</span></a>
</div>
<div id="code" class="card">
<h2>Code</h2>
<p>
Experienced users might want to browse the source code directly.
</p>
<a href="https://github.com/metaRange/metaRange"><span class="material-symbols-outlined">terminal</span></a>
</div>
<div id="install" class="card">
<h2>Installation</h2>
<p>
If you have a working R installation, you can just use:
</p>
<div style="background-color: #2d2d2d; padding: 10px; border-radius: 8px;">
<code>install.packages("metaRange")</code>
</div>
<p>
to get the latest version from CRAN.
</p>
</div>
</div>
<div id="publications" class="center">
<h1>Publications</h1>
<div class="card">
<h2><a href="https://doi.org/10.1101/2024.03.07.583922">metaRange: A framework to build mechanistic range models</a></h2>
<p>
Stefan Fallert, Lea Li, Juliano Sarmento Cabral
<br/>
2024 (bioRxiv preprint)
</p>
</div>
<div id="contact" class="card" style="margin-top: 40px;">
<h2>Contact</h2>
<p>In case of any questions, feel free to reach out via the mail provided on the
<a href="https://www.biozentrum.uni-wuerzburg.de/cctb/research/ecosystem-modeling-move-to-u-of-birmingham/people/stefan-fallert/">University website</a>.
</p>
</div>
</div>
</body>
</html>