forked from scottcha/OpenAvalancheProject
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAbout.html
52 lines (45 loc) · 1.79 KB
/
About.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
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script>
$(function () {
$("#navbar-placeholder").load("./navbar.html");
});
</script>
<link rel="stylesheet" type="text/css" href="./Content/bootstrap.css">
<link rel="stylesheet" type="text/css" href="./Content/Site.css">
<title>About Open Avalanche Project</title>
</head>
<body>
<div id="navbar-placeholder"></div>
<h2>About Open Avalanche Project</h2>
<p>Open Avalanche Project is a community supported project to prevent avalanche related deaths and impacts by
improving avalanche forecasting. We are approaching this by bringing a platform for machine learning and data
science to the field of snow science.</p>
<div class="row">
<div class="col-md-6">
<p>
I created my first app focused on snow data in 2010. I called is Powder Alarm. It pulled snotel data and
allowed you to wake up earlier than your normal time on powder days.
</p>
</div>
<div class="col-md-6">
<img src="Content/Images/powderalarm.jpg" />
</div>
</div>
<br />
<div class="row">
<div class="col-md-6">
<p>
Through building Powder Alarm I met a partner, Bob, on Teton Gravity Forums and we worked together to
start <a href="http://ullrlabs.com">Ullr Labs</a>. We have built and maintained M.A.S.T from 2011 today.
Its the only full featured snow and avalanche notebook available on both Android and iPhone.
</p>
</div>
<div class="col-md-6">
<img src="Content/Images/mast.png" />
</div>
</div>
</body>
</html>