-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (36 loc) · 1.93 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
<!DOCTYPE html>
<html>
<head>
<title>SAR Tools</title>
<link rel="stylesheet" type="text/css" href="./assets/css/main.css">
</head>
<body>
<h1>SAR Tools</h1>
<p>Various Search and Rescue related planning tools. Designed for offline use.</p>
<div class="card_div">
<p><a href="load_geojson.html" target="_self" class="in_card">Trim SAR Tracks</a></p>
<p>This script takes a geojson file containing region/segment polygons and track lines. The tool removes portions of the track lines that fall outside of the region/segments.</p>
</div>
<div class="card_div">
<p><a href="consensus.html" target="_self" class="in_card">Consensus</a></p>
<p>Calculate scenario weights using a consensus. Currently Proportional Consensus is the only option. There are plans for allowing this to calculate other consensus methods.</p>
</div>
<div class="card_div">
<p><span style="font-weight: bold;">Disclaimer</span></p>
<p>This software has very limited testing and no field testing. Use at your own risk. I make no statements regarding accuracy of the data. The software is distributed AS IS and is subject to the license as defined in the license file. </p>
</div>
<footer>
<div class="container">
<div class="footer-split">
<p>Created by <a href="https://www.osajus.net" target="_new" class="in_card">Osajus Services, LLC</a></p>
<p>Get the current version <a href="https://github.com/osajus/SAR-Tools" target="_new" class="in_card">here</a></p>
</div>
<div class="footer-split">
<p>Limited for use with Chrome and Edge browsers.</p>
<img src="./assets/images/get_ie.png" alt="Made for Edge" width="100px" />
<img src="./assets/images/get_netscape.png" alt="Made for Chrome" width="100px"/>
</div>
</div>
</footer>
</body>
</html>