-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
70 lines (70 loc) · 2.54 KB
/
Copy pathindex.html
File metadata and controls
70 lines (70 loc) · 2.54 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SZ plugin</title>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 20px;
}
header {
text-align: center;
margin-bottom: 20px;
}
img {
display: block;
margin: 0 auto 20px;
max-width: 100%;
height: auto;
}
section {
margin-bottom: 40px;
}
h2 {
color: #333;
border-bottom: 1px solid #ccc;
padding-bottom: 5px;
}
ul {
list-style-type: none;
padding: 0;
}
li {
margin-bottom: 10px;
}
.icon {
position: absolute;
top: 10px;
left: 10px;
width: 40px;
height: 40px;
}
</style>
</head>
<body>
<img src="https://raw.githubusercontent.com/SZtools/SZ-plugin/master/sz_module/images/icon.png" alt="Icon" class="icon">
<header>
<h1>SZ-plugin</h1>
</header>
<section>
<p>This repository contains the code for a QGIS plugin, called “Spatiotemporal data-driven Zoning plugin” (SZ-plugin), aiming at creating maps of susceptibility to various natural forcing elements.
The plugin has been developed with a main focus and application towards landslides susceptibility, but it can be applied to different types of natural events or inter-disciplinary applications.
The plugin uses several type of statistical, machine learning models for susceptibility evaluation, such as:
<p>
<ul>
<li>Generalized Additive Model with two distributions: Binomial, Gaussian (see pygam)</li>
<li>Decision Tree (see scikit-learn)</li>
<li>Support Vector Machine (see scikit-learn)</li>
<li>Random Forest (see scikit-learn)</li>
<li>Multi-layer Perceptron as classifier (see scikit-learn) and regressor (see scikit-learn)</li>
</ul>
<p> The plugin allows the user to perform spatial and temporal analysis implementing space-time cross-validation (CV) methods
Moreover the plugin allows the user to run space-time transferability with all the models implemented.
</p>
<p>Visit our <a href="https://sz-docs.readthedocs.io" target="_blank"> page</a> for more information.</p>
</section>
</body>
</html>