-
Notifications
You must be signed in to change notification settings - Fork 2
/
help.html
95 lines (81 loc) · 2.86 KB
/
help.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
<!DOCTYPE html>
<html>
<head>
<title>Help</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="css/index.css" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Roboto"
/>
<link rel="shortcut icon" href="#" />
</head>
<body>
<!-- Navbar (sit on top) -->
<div class="w3-top">
<div class="w3-bar w3-white w3-wide w3-padding w3-card">
<a href="/" class="w3-bar-item w3-button"> <b>PRO-AGUA</b> </a>
<!-- Float links to the right. Hide them on small screens -->
<div class="w3-right w3-hide-small">
<a href="/" class="w3-bar-item w3-button"> Land Use </a>
<a href="/mining.html" class="w3-bar-item w3-button">
Mining
</a>
<a href="about.html" class="w3-bar-item w3-button">About</a>
<a href="help.html" class="w3-bar-item w3-button">Help</a>
</div>
</div>
</div>
<!-- Page content -->
<div
class="w3-content w3-padding"
style="max-width:1000px; margin-top: 54px; text-align: justify"
>
<h1>Help</h1>
<h3>Map</h3>
Use the buttons to filter mining activity data by mining type Mining
activity has two types:
<ul>
<li>Suction Pumps</li>
<li>Heavy Machinery</li>
</ul>
Each mining type has its own group of sectors which can be:
<ul>
<li>Delta</li>
<li>Huepetuhe</li>
<li>Small Mines</li>
<li>Pampa</li>
</ul>
<p>
Those will be displayed as buttons above its mining type, try to use
them to filter the map! Each combination of type and sector is using a
different color for a better visualization.
</p>
<p>
Alongside this buttons, a slider is presented to display the evolution
of mining types and sectors across the years Data available is from 1985
to 2017, slider uses 8 years interval to show map layers.
</p>
<p>
At the right side there is a storytelling content element where the user
can scroll and watch the major insight of each interval. There are also
a few animations and visualization charts linking maps with the
storytelling, to make it easier to understand for any user.
</p>
<div style="margin-top: 50px; margin-bottom: 40px">
For any question or further information do not hesitate to contact us by
our emails:
<ul>
<li>Ariel Alba: [email protected]</li>
<li>Andrés Montero: [email protected]</li>
<li>Elias Poroma: [email protected]</li>
</ul>
</div>
</div>
<!-- Footer -->
<footer class="w3-center w3-black w3-padding-16">
<p>Powered by AMAZONICOS</p>
</footer>
</body>
</html>