-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (57 loc) · 1.64 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
<!DOCTYPE html>
<html>
<head>
<title>harp tutorial</title>
<link href="https://fonts.googleapis.com/css?family=Comfortaa&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Comfortaa'
}
.r-code {
display: inline-block;
padding: 10px;
margin: 20px;
background: #e5e5e5;
color: #333333;
font-family: 'Courier New', Courier, monospace;
}
.r-function {
color: #a52323;
}
.r-quote {
color: #237523;
}
.align-center {
text-align: center;
}
</style>
</head>
<body>
<div class="align-center">
<img src="images/hevequip2.gif" alt="">
</div>
<h1>Harp Tutorial</h1>
<p>
To download harp, open R and do the following:
</p>
<div>
<div class="r-code">
<span class="r-function">install.packages</span>(<span class="r-quote">"devtools"</span>)
<br>
<span class="r-function">library</span>(devtools)
<br>
<span class="r-function">install_github</span>(<span class="r-quote">"andrew-MET/harp"</span>)
</div>
</div>
<span>Follow the links below for a brief walkthrough of the point verification process</span>
<div>
<ul>
<li><a href="whole_process.html">Part 1</a></li>
<li><a href="whole_process_2.html">Part 2</a></li>
<li><a href="whole_process_3.html">Part 3</a></li>
<br>
<li><a href="cmeps.nb.html">Verification of CMEPS</a></li>
</ul>
</div>
</body>
</html>