forked from ESAFastPrototyping/WebWorldWind-X
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
260 lines (253 loc) · 15.4 KB
/
Copy pathindex.html
File metadata and controls
260 lines (253 loc) · 15.4 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="UTF-8">
<title>Extensions for Web WorldWind</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
<style>
.panel-heading, .panel-body {
overflow: overlay;
}
</style>
</head>
<body>
<div class="container content-container" style="margin-top: 20px; margin-bottom: 20px;">
<div class="col-sm-12">
<h1>About</h1>
<p>This <a href="https://github.com/ESAFastPrototyping/WebWorldWind-X" target="_blank">repository</a> contains a collection of specialised extensions to the functionality of Web WorldWind.</p>
<p>These extensions were created in the scope of the Frame Contract for Social Media and Mobile Applications Development for EO Ground Segment and Mission Operations, European Space Agency (ESA) Contract Number 4000112250. They are released under Apache License 2.0.</p>
<p>Consortium: Solenix Deutschland GmbH (Prime Contractor), TERRASIGNA SRL, GISAT SRO, Progressive Systems SRL, Qualteh JR SRL.</p>
<h1>Examples</h1>
<p>The examples below provide an overview of the available extensions. Their complete source code is available in the <a href="https://github.com/ESAFastPrototyping/WebWorldWind-X/tree/master/examples" target="_blank">examples module</a>.</p>
<div class="row">
<div class="col-md-4">
<div class="panel panel-default">
<div class="panel-heading">
<a href="examples/CyclicPickExample.html"><h3 class="panel-title">Cyclic Picking</h3></a>
</div>
<div class="panel-body">
<a href="examples/CyclicPickExample.html">
<img src="examples/CyclicPickExample.png" class="img-responsive center-block">
</a>
<p>
Alternative pick controller that cyclically selects renderables under the cursor instead of selecting them all at once.
</p>
<h5>Source:</h5>
<a href="https://github.com/ESAFastPrototyping/WebWorldWind-X/blob/master/examples/CyclicPickExample.js">CyclicPickExample.js</a><br>
<a href="https://github.com/ESAFastPrototyping/WebWorldWind-X/blob/master/examples/CyclicPickExample.html">CyclicPickExample.html</a>
</div>
</div>
</div>
<div class="col-md-4">
<div class="panel panel-default">
<div class="panel-heading">
<a href="examples/LayerOrderExample.html"><h3 class="panel-title">Layer Ordering</h3></a>
</div>
<div class="panel-body">
<a href="examples/LayerOrderExample.html">
<img src="examples/LayerOrderExample.png" class="img-responsive center-block">
</a>
<p>
Utility class for automatic reordering of layers based on an extra attribute. The default behavior in Web WorldWind is that layers are ordered based on their position in the layer array. This allows ordering of the layers based on a z-index property. A higher z-index means the layer is rendered on top.
</p>
<h5>Source:</h5>
<a href="https://github.com/ESAFastPrototyping/WebWorldWind-X/blob/master/examples/LayerOrderExample.js">LayerOrderExample.js</a><br>
<a href="https://github.com/ESAFastPrototyping/WebWorldWind-X/blob/master/examples/LayerOrderExample.html">LayerOrderExample.html</a>
</div>
</div>
</div>
<div class="col-md-4">
<div class="panel panel-default">
<div class="panel-heading">
<a href="examples/TexturedSurfacePolygonExample.html"><h3 class="panel-title">Textured Surface Polygon</h3></a>
</div>
<div class="panel-body">
<a href="examples/TexturedSurfacePolygonExample.html">
<img src="examples/TexturedSurfacePolygonExample.png" class="img-responsive center-block">
</a>
<p>
The standard surface polygon implementation cannot be textures with an image. This implementation takes a texture and draws it as the cover of the polygon. It supports only rectangular textures.
</p>
<h5>Source:</h5>
<a href="https://github.com/ESAFastPrototyping/WebWorldWind-X/blob/master/examples/TexturedSurfacePolygonExample.js">TexturedSurfacePolygonExample.js</a><br>
<a href="https://github.com/ESAFastPrototyping/WebWorldWind-X/blob/master/examples/TexturedSurfacePolygonExample.html">TexturedSurfacePolygonExample.html</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="panel panel-default">
<div class="panel-heading">
<a href="examples/ControlsExample.html"><h3 class="panel-title">HTML Controls</h3></a>
</div>
<div class="panel-body">
<a href="examples/ControlsExample.html">
<img src="examples/ControlsExample.png" class="img-responsive center-block">
</a>
<p>
Alternative globe controls built in HTML instead of being rendered in WebGL. The controls are positioned at the bottom right of the canvas.
</p>
<h5>Source:</h5>
<a href="https://github.com/ESAFastPrototyping/WebWorldWind-X/blob/master/examples/ControlsExample.js">ControlsExample.js</a><br>
<a href="https://github.com/ESAFastPrototyping/WebWorldWind-X/blob/master/examples/ControlsExample.html">ControlsExample.html</a>
</div>
</div>
</div>
<div class="col-md-4">
<div class="panel panel-default">
<div class="panel-heading">
<a href="examples/Base64ImageExample.html"><h3 class="panel-title">Base64 Image</h3></a>
</div>
<div class="panel-body">
<a href="examples/Base64ImageExample.html">
<img src="examples/Base64ImageExample.png" class="img-responsive center-block">
</a>
<p>
Use of base 64 encoded images for placemarks.
</p>
<h5>Source:</h5>
<a href="https://github.com/ESAFastPrototyping/WebWorldWind-X/blob/master/examples/Base64ImageExample.js">Base64ImageExample.js</a><br>
<a href="https://github.com/ESAFastPrototyping/WebWorldWind-X/blob/master/examples/Base64ImageExample.html">Base64ImageExample.html</a>
</div>
</div>
</div>
<div class="col-md-4">
<div class="panel panel-default">
<div class="panel-heading">
<a href="examples/KmlGroundOverlayExample.html"><h3 class="panel-title">KML Ground Overlay for Sentinel</h3></a>
</div>
<div class="panel-body">
<a href="examples/KmlGroundOverlayExample.html">
<img src="examples/KmlGroundOverlayExample.png" class="img-responsive center-block">
</a>
<p>
Alternative KML Ground Overlay element that handles footprints of Sentinel-1 product.
</p>
<h5>Source:</h5>
<a href="https://github.com/ESAFastPrototyping/WebWorldWind-X/blob/master/examples/KmlGroundOverlayExample.js">KmlGroundOverlayExample.js</a><br>
<a href="https://github.com/ESAFastPrototyping/WebWorldWind-X/blob/master/examples/KmlGroundOverlayExample.html">KmlGroundOverlayExample.html</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="panel panel-default">
<div class="panel-heading">
<a href="examples/SciHubProductsExample.html"><h3 class="panel-title">SciHub Products</h3></a>
</div>
<div class="panel-body">
<a href="examples/SciHubProductsExample.html">
<img src="examples/SciHubProductsExample.png" class="img-responsive center-block">
</a>
<p>
Service and renderables for retrieving and displaying information from the <a href="https://scihub.copernicus.eu/" target="_blank">Copernicus Open Access Hub</a>.
</p>
<h5>Source:</h5>
<a href="https://github.com/ESAFastPrototyping/WebWorldWind-X/blob/master/examples/SciHubProductsExample.js">SciHubProductsExample.js</a><br>
<a href="https://github.com/ESAFastPrototyping/WebWorldWind-X/blob/master/examples/SciHubProductsExample.html">SciHubProductsExample.html</a>
</div>
</div>
</div>
<div class="col-md-4">
<div class="panel panel-default">
<div class="panel-heading">
<a href="examples/AcquisitionPlansExample.html"><h3 class="panel-title">Sentinel Acquisition Plans</h3></a>
</div>
<div class="panel-body">
<a href="examples/AcquisitionPlansExample.html">
<img src="examples/AcquisitionPlansExample.png" class="img-responsive center-block">
</a>
<p>
Service and renderables for downloading and displaying Sentinel acquisition plans from ESA.
</p>
<h5>Source:</h5>
<a href="https://github.com/ESAFastPrototyping/WebWorldWind-X/blob/master/examples/AcquisitionPlansExample.js">AcquisitionPlansExample.js</a><br>
<a href="https://github.com/ESAFastPrototyping/WebWorldWind-X/blob/master/examples/AcquisitionPlansExample.html">AcquisitionPlansExample.html</a>
</div>
</div>
</div>
<div class="col-md-4">
<div class="panel panel-default">
<div class="panel-heading">
<a href="examples/OrbitsExample.html"><h3 class="panel-title">Satellite Orbit</h3></a>
</div>
<div class="panel-body">
<a href="examples/OrbitsExample.html">
<img src="examples/OrbitsExample.png" class="img-responsive center-block">
</a>
<p>
Service and renderables for computing and displaying satellite orbits.
</p>
<h5>Source:</h5>
<a href="https://github.com/ESAFastPrototyping/WebWorldWind-X/blob/master/examples/OrbitsExample.js">OrbitsExample.js</a><br>
<a href="https://github.com/ESAFastPrototyping/WebWorldWind-X/blob/master/examples/OrbitsExample.html">OrbitsExample.html</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="panel panel-default">
<div class="panel-heading">
<a href="examples/SwathConeExample.html"><h3 class="panel-title">Satellite Swath Cone</h3></a>
</div>
<div class="panel-body">
<a href="examples/SwathConeExample.html">
<img src="examples/SwathConeExample.png" class="img-responsive center-block">
</a>
<p>
Renderable for displaying a cone between a satellite and its swath.
</p>
<h5>Source:</h5>
<a href="https://github.com/ESAFastPrototyping/WebWorldWind-X/blob/master/examples/SwathConeExample.js">SwathConeExample.js</a><br>
<a href="https://github.com/ESAFastPrototyping/WebWorldWind-X/blob/master/examples/SwathConeExample.html">SwathConeExample.html</a>
</div>
</div>
</div>
<div class="col-md-4">
<div class="panel panel-default">
<div class="panel-heading">
<a href="examples/ModelExample.html"><h3 class="panel-title">Satellite Model</h3></a>
</div>
<div class="panel-body">
<a href="examples/ModelExample.html">
<img src="examples/ModelExample.png" class="img-responsive center-block">
</a>
<p>
Renderable for displaying the 3D model of a satellite.
</p>
<h5>Source:</h5>
<a href="https://github.com/ESAFastPrototyping/WebWorldWind-X/blob/master/examples/ModelExample.js">ModelExample.js</a><br>
<a href="https://github.com/ESAFastPrototyping/WebWorldWind-X/blob/master/examples/ModelExample.html">ModelExample.html</a>
</div>
</div>
</div>
<div class="col-md-4">
<div class="panel panel-default">
<div class="panel-heading">
<a href="examples/PlanetsExample.html"><h3 class="panel-title">Sun and Planets</h3></a>
</div>
<div class="panel-body">
<a href="examples/PlanetsExample.html">
<img src="examples/PlanetsExample.png" class="img-responsive center-block">
</a>
<p>
Layer that displays the sun and planets.
</p>
<h5>Source:</h5>
<a href="https://github.com/ESAFastPrototyping/WebWorldWind-X/blob/master/examples/PlanetsExample.js">PlanetsExample.js</a><br>
<a href="https://github.com/ESAFastPrototyping/WebWorldWind-X/blob/master/examples/PlanetsExample.html">PlanetsExample.html</a>
</div>
</div>
</div>
</div>
<h1>Documentation</h1>
<p>The API documentation for these extensions is available <a href="api-doc/index.html">here</a>.</p>
</div>
</div>
</body>
</html>