-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
102 lines (93 loc) · 3.43 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<meta name="viewport" content="initial-scale=1.0, user-scalable=no, width=device-width">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" type="text/css">
<link rel="stylesheet" href="css/examples.css" type="text/css">
<title>OpenLayers 3: Raster Manipulation Examples</title>
</head>
<body>
<header class="navbar navbar-fixed-top" role="navigation">
<div class="container">
<div class="display-table pull-left">
<a class="navbar-brand" href="./">OpenLayers 3: Raster Manipulation Examples</a>
</div>
</div>
</header>
<div class="container-fluid">
<div id="examples"></div>
<!-- example link box -->
<div>
<div class="row">
<div class="col-md-4 col-sm-4">
<a class="example" href="landcover.html">
<span class="mainlink">
<strong><span>Land Cover Classes</span></strong><br>
<small>landcover.html</small>
</span>
<p class="description">Displays all 2010 Land cover data and then allows filtering on classes</p>
</a>
</div>
</div>
</div>
<!-- example link box -->
<div>
<div class="row">
<div class="col-md-4 col-sm-4">
<a class="example" href="landcover_stats.html">
<span class="mainlink">
<strong><span>Land Cover Statistics</span></strong><br>
<small>landcover_stats.html</small>
</span>
<p class="description">Displays all 2010 Land cover data and then show stats on filtered classes</p>
</a>
</div>
</div>
</div>
<!-- example link box -->
<div>
<div class="row">
<div class="col-md-4 col-sm-4">
<a class="example" href="landcover_layer_clipping.html">
<span class="mainlink">
<strong><span>Land Cover Statistics With Clipping</span></strong><br>
<small>landcover_stats.html</small>
</span>
<p class="description">Displayes Stats Clipped for States</p>
</a>
</div>
</div>
</div>
<!-- example link box -->
<div>
<div class="row">
<div class="col-md-4 col-sm-4">
<a class="example" href="landcover_group_stats.html">
<span class="mainlink">
<strong><span>Land Cover Group Statistics</span></strong><br>
<small>landcover_group_stats.html</small>
</span>
<p class="description">Displayes Stats Clipped for States</p>
</a>
</div>
</div>
</div>
<!-- example link box -->
<div>
<div class="row">
<div class="col-md-4 col-sm-4">
<a class="example" href="landcover_change_by_class.html">
<span class="mainlink">
<strong><span>Land Cover Change By Class</span></strong><br>
<small>landcover_change_by_class.html</small>
</span>
<p class="description">Displays how a group of land cover classes changed over two year pairs</p>
</a>
</div>
</div>
</div>
</div>
</body>
</html>