-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelp.html
executable file
·112 lines (95 loc) · 3.66 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html>
<head>
<title>BiodiversityMap</title>
<meta http-equiv="content-type" content="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- using local jquery, bootstrap and d3.js libs -->
<script type="text/javascript" src="src/jquery.js"></script>
<script src="src/bootstrap.min.js"></script>
<!-- css script -->
<!--script-->
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- fontawesome and custom css -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<!-- Navigation -->
<nav class="navbar navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="buton" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<!-- Header -->
<a class="navbar-brand" href="index.html">biodiversityMaps</a>
</div>
<div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav navbar-right">
<li><a href="index.html"><i class="fa fa-home"></i> Home</a></li>
<li><a href="index.html#about"><i class="fa fa-info-circle" aria-hidden="true"></i> About</a></li>
<li class="active"><a href="#"><i class="fa fa-question-circle" aria-hidden="true"></i> Help</a></li>
</ul>
</div>
</div>
</div>
</nav>
<footer class="footer">
<div class="container">
<p>Developed By :
<span><a href="https://era7bioinformatics.com/en/index.cfm" target="_blank">Era7 Bioinformatics</a></span> And
<span><a href="http://big4-project.eu/" target="_blank">Big4 Project</a></span>
<span style="float:right"> Project Funded By: <b>European Union </b><img id="footer-logo" height="30" width="40" src="data/images/logoeu.gif"/></span>
</p>
</div>
</footer>
<!-- Library Description -->
<div class="container-fluid">
<div class="parallex-img4 row">
<div>
<center>
<h2>biodiversityMaps</h2>
<h2> biodiversity visualization framework using D3.js and leaflet.js</h2>
</center>
</div>
</div>
<div id="help" class="row">
<div class="col-md-12 col-xs-12">
<p><b>biodiversityMaps</b> is a <b>leaflet.js</b> based biodiversity visualization web application for creating <b>biodiversity marker</b>. It makes easy to create mapping of <b>geographical markers</b> on web and allows to visualize data with different marker types.
<br><b>Goal of visualization:</b> Representation of biodiversity data over a geographical map.
</p>
</div>
<div class="col-md-12 col-xs -12">
<div>
<center>
<h1>Getting Started</h1>
</center>
<br>
<p>
<br><b>Data type:</b> CSV data format
<br>
<!--
Type : Biodiversity visualization
Data Format : TSV file
Example :
Specie Country Place coordinates Value
Species1 country1 Place1 [23,45] 5
Species2 country2 Place2 [23,45] 5
Species3 country3 Place3 [23,45] 5
Species4 country4 Place4 [23,45] 5
Species5 country5 Place5 [23,45] 5
</script>
<!-- [...] -->
</code>
</pre-->
</p>
</div>
</div>
</div>
</div>
</body>
</html>