-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcalculator.html
149 lines (113 loc) · 3.94 KB
/
calculator.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
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html lang="en">
<head>
<link rel="StyleSheet" href="main.css" type="text/css" />
<link rel="StyleSheet" href="nn4_layout.css" type="text/css" />
<style type="text/css">
/*<![CDATA[*/
@import url(real_layout.css);
/*]]>*/
</style>
<script type="text/javascript" src="calc.js"></script>
<title>AMC Book Time Calculator</title>
<meta http-equiv="pics-label" content='(pics-1.1
"http://www.icra.org/ratingsv02.html" comment "ICRAonline EN v2.0" l
gen true for "http://home.earthlink.net/~ellozy/" r (nz 1 vz 1 lz 1 oz
1 cz 1) "http://www.rsac.org/ratingsv01.html" l gen true for
"http://home.earthlink.net/~ellozy/" r (n 0 s 0 v 0 l 0))' />
<meta name="keywords" content="book time calculator hiking difficulty" />
<meta name="description" content="AMC Book Time Calculator" />
</head>
<body>
<div id="header">
<h1>AMC Book Time Calculator</h1>
</div> <!-- header div -->
<div id="main">
<!--
<noscript>
<hr>
<p>If your browser is displaying this line of text, then it does not
support JavaScript. To use the calculator use a browser than supports
JavaScript.
<hr>
</noscript>
-->
<p>The Appalachian Mountain Club's <i>White Mountain Guide</i> uses
a very approximate formula to estimate the time a given hike will
take. They calculate 30 minutes for every mile, plus 30 minutes for
every 1,000 feet of ascent. Descent is assumed to take as long as
walking on a flat trail.</p>
<p>There are obviously a host of other factors involved in
determining how long it will take you to do a given hike, but "book
time", as this estimate is called, is a popular number. The
calculator below (which will only work if your browser supports
JavaScript) allows you to calculate book time easily. Enter the
elevation gain in the first box, the mileage in the second, and
click on the "Calculate" button. The time, rounded to the nearest
five minutes, will appear in the last box.</p>
<br />
<div class="C">
<table class="CALC">
<tr>
<td class="C" colspan="4"><br />
<b>BOOK TIME CALCULATOR</b><br /></td></tr>
<tr>
<td class="C"><br />
<b>Elevation<br />
Gain (feet)</b></td>
<td class="C"><br />
<b>Distance<br />
(miles)</b></td>
<td class="C"> </td>
<td class="C"><br />
<b>Book Time<br />
(hrs:mins)</b></td></tr>
<tr>
<td>
<form action="calc.js"> <input type="text" size="8" />
</form></td>
<td>
<form action="calc.js"> <input type="text" size="8" />
</form></td>
<td>
<form action="calc.js"> <input type="button"
value="Calculate" onclick="Pass()" /> </form></td>
<td>
<form action="calc.js"> <input type="text" size="12" />
</form></td></tr></table>
</div>
<br />
<br />
<p>A more sophisticated (and hence more complex to use) calculator can
be found on the <a
href="http://hikenh.netfirms.com/HikeTime.htm">NH Hikes and
Walks</a> site.</p>
<hr />
<!-- BEGIN ADDFREESTATS EASY CODE V2 (Normal Page) -->
<!-- CODE FOR YOUR PAGE: Book Time Calculator -->
<!-- URL : http://home.earthlink.net/~ellozy/calculator.html -->
<!-- PAGE NUMBER :76 -->
<script type="text/javascript" language="javascript" src="http://www1.addfreestats.com/cgi-bin/easycode.cgi?usr=00100552P076">
</script>
<!-- END ADDFREESTATS EASY CODE V2 -->
</div> <!-- main div -->
<!-- navbar for index.html -->
<div id="navbar">
Main Sections:
<p class="navbar">
<a href="index.html">4000 Footers Home</a><br />
<a href="bagging.html">Peak Bagging</a><br />
<a href="lists.html">Lists</a><br />
<a href="nhnotes.html">Routes to Peaks</a><br />
<a href="general.html">Guide to Resources</a><br />
<a href="FAQ.html">FAQ</a><br />
<a href="articles.html">Articles</a><br />
<a href="adventures.html">Adventures</a><br />
<a href="highpointing.html">Highpointing</a><br />
<a href="haute-route/haute-route.html">Haute Route</a><br />
<a href="http://retiredinnh.blogspot.com/">My Hiking Blog</a><br /><br />
</p>
</div> <!-- navbar div -->
</body>
</html>