-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.htm
34 lines (28 loc) · 1.14 KB
/
index.htm
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
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="sakura.css">
<link rel="stylesheet" type="text/css" href="custom.css">
<title>SRTM 90 elevations</title>
</head>
<body>
<h1>PHP SRTM Reader Demo</h1>
<p>This is a minimal use case demo for the PHP class SRTMGeoTIFFReader
which generates worldwide elevation data.</p>
<p>Mount Snowdon (1085m) in Wales and Luccombe Down (235m) on the Isle of Wight
are approximately 210 miles (338Km) apart. Locations values are latitidue & longitude.</p>
<ul>
<li>Mount Snowdon: [53.06861, -4.07611]</li>
<li>Luccombe Down: [50.603611, -1.2025]</li>
</ul>
<p>
<input type="checkbox" id="infills" checked>
<label for="infills">Include infill elevations every 90m between each location</label>
</p>
<p><button id="btnElevations">Generate elevations</button></p>
<div id="results">Output will appear here...</div >
<script src="getElevations.js" defer></script>
</body>
</html>