Nial: added more images to description pages, made all thumbnails equal size, added scrip for finding dead qms in the description pages
@ -38,7 +38,8 @@ with mud/sand banks on the right hand wall. The passage passes under a
|
||||
large aven (QM X) and up a 2m climb before reaching Flush Pitch.</p>
|
||||
|
||||
<h4><a id="flushpitch">Flush Pitch</a></h4>
|
||||
<p><a href="l/bowl.html"><img class="onleft" src="t/bowl.jpg"
|
||||
<p><a href="l/flush_pitch.html"><img class="onleft" src="t/flush_pitch.jpg"
|
||||
alt="Flush Pitch" /></a><a href="l/bowl.html"><img class="onleft" src="t/bowl.jpg"
|
||||
alt="The Bowl" /></a>Traversing across the top of Flush Pitch (10m of rope and two hangers required) a second pitch is encountered, this connects with flush pitch at the bottom. A passage leading off to the right from the second pitch leads to The Bowl, a pitch leading down to Now Wash Your Hands. The Bowl may be free-climbed for some distance until it becomes too vertical. At this point a sloping, drippy passage doubles back from the main direction of The Bowl and leads to a 2m drop into a shallow pool of water, The Cistern.</p>
|
||||
|
||||
<p>Descending Fush Pitch (21m of rope and three hangers required, including the traverse) leads to a small chamber which connects to the bottom of the second pitch. A passage leading south is too tight, and the way on is a crawling sized phreatic tube up a climb to the north. After several twists and turns this emerges at The Cistern. This route is recommended as it avoids the slippery traverse across The Cistern.</p>
|
||||
@ -46,8 +47,8 @@ alt="The Bowl" /></a>Traversing across the top of Flush Pitch (10m of rope and t
|
||||
<p>From The Cistern a 5m climb down leads to a muddy puddle and a crawl through a small hole. Beyond the hole, awkward thrutching through rift passage leads to a 3m climb down (5m handline an a single hanger required) into a large East-West passage, Now Wash Your Hands. A sloping passage to the left at the top of the climb also leads to Now Wash Your Hands.</p>
|
||||
|
||||
<h4><a id="washhands">Now Wash Your Hands</a></h4>
|
||||
<p><a href="l/washhands.html"><img class="onleft" src="t/washhands.jpg"
|
||||
alt="Now Wash Your Hands" /></a><a href="l/washhands2.html"><img class="onleft" src="t/washhands2.jpg"
|
||||
<p><a href="l/washhands.html"><img class="onright" src="t/washhands.jpg"
|
||||
alt="Now Wash Your Hands" /></a><a href="l/washhands2.html"><img class="onright" src="t/washhands2.jpg"
|
||||
alt="Now Wash Your Hands" /></a>Upslope in Now Wash Your Hands large
|
||||
walking passage leads to a junction after 15m. The passage to the left
|
||||
slopes downwards, gradually decreasing in height until it chokes with
|
||||
@ -63,7 +64,10 @@ X</a>]. Straight ahead a short climb up leads to a steeply sloping passage which
|
||||
<p>Downslope in Now Wash Your Hands is a muddy boulder filled passage which, after a short climb down, reaches a T-junction. Left at the junction leads to Out Of Order Rift. The passage to the right is reached by a 1.5m climb up a mud bank. Pleasant, walking sized phreatic passage winds gradually downhill. After a lowering of the roof, requiring crawling, Shit Chute joins on the left. This is a steeply sloping tube with a loose muddy floor. Starting as crawling sized it soon enlarges and the floor drops away into a pitch. This can also be reached through Engaged. The main passage continues to a short pitch requiring 10m of rope and two hangers. This enters Engaged.</p>
|
||||
|
||||
<h4><a id="engaged">Engaged</a></h4>
|
||||
<p>Engaged begins under a drippy aven, with the water flowing down a
|
||||
<p>
|
||||
<p><a href="l/engaged_formation.html"><img class="onleft" src="t/engaged_formation.jpg"
|
||||
alt="Engaged" /></a>
|
||||
Engaged begins under a drippy aven, with the water flowing down a
|
||||
hole in the floor which is too tight. Beyond the aven, the passage
|
||||
trifurcates. The large passage to the right continues across several
|
||||
large holes in the floor, the first of these is the SLTR pitch which
|
||||
|
113
smkridge/204/find_dead_qms.py
Normal file
@ -0,0 +1,113 @@
|
||||
"""
|
||||
Quick and dirty Python script to find references to completed qms in the
|
||||
cave description pages. Run this to find which bits of description
|
||||
need updating.
|
||||
|
||||
The list of qms is read from the qm.csv file and any with an entry in the
|
||||
"Completion description" column (column 7) are searched for in all the html
|
||||
files.
|
||||
|
||||
The script prints a list of the completed qms that it found references to
|
||||
and in which file.
|
||||
|
||||
Nial Peters - 2011
|
||||
"""
|
||||
import csv
|
||||
import re
|
||||
import glob
|
||||
import itertools
|
||||
import os
|
||||
import os.path
|
||||
|
||||
QM_CSV_FILE = "qm.csv"
|
||||
DESC_FOLDER = "."
|
||||
|
||||
|
||||
#####################################################################
|
||||
# A few functions copied from std_ops - pasted here to save people
|
||||
# having to install std_ops to use this script.
|
||||
#####################################################################
|
||||
|
||||
def flatten(l, ltypes=(list, tuple)):
|
||||
"""
|
||||
Reduces any iterable containing other iterables into a single list
|
||||
of non-iterable items. The ltypes option allows control over what
|
||||
element types will be flattened. This algorithm is taken from:
|
||||
http://rightfootin.blogspot.com/2006/09/more-on-python-flatten.html
|
||||
|
||||
>>> print flatten([range(3),range(3,6)])
|
||||
[0, 1, 2, 3, 4, 5]
|
||||
>>> print flatten([1,2,(3,4)])
|
||||
[1, 2, 3, 4]
|
||||
>>> print flatten([1,[2,3,[4,5,[6,[7,8,[9,[10]]]]]]])
|
||||
[1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
|
||||
>>> print flatten([1,[2,3,[4,5,[6,[7,8,[9,[10]]]]]]], ltypes=())
|
||||
[1, [2, 3, [4, 5, [6, [7, 8, [9, [10]]]]]]]
|
||||
>>> print flatten([1,2,(3,4)],ltypes=(list))
|
||||
[1, 2, (3, 4)]
|
||||
"""
|
||||
ltype = type(l)
|
||||
l = list(l)
|
||||
i = 0
|
||||
while i < len(l):
|
||||
while isinstance(l[i], ltypes):
|
||||
if not l[i]:
|
||||
l.pop(i)
|
||||
i -= 1
|
||||
break
|
||||
else:
|
||||
l[i:i + 1] = l[i]
|
||||
i += 1
|
||||
return ltype(l)
|
||||
|
||||
|
||||
def find_files(path, recursive=False, pattern='*', skip_links=True, full_paths=False):
|
||||
if not os.path.isdir(path):
|
||||
raise ValueError, "\'%s\' is not a recognised folder" %path
|
||||
|
||||
found_files = glob.glob(os.path.normpath(path + os.sep + pattern))
|
||||
path_contents = glob.glob(os.path.normpath(path + os.sep + '*'))
|
||||
|
||||
if skip_links:
|
||||
path_contents = [x for x in itertools.ifilterfalse(os.path.islink, path_contents)]
|
||||
|
||||
dirs = [x for x in itertools.ifilter(os.path.isdir, path_contents)]
|
||||
found_files = [x for x in itertools.ifilterfalse(os.path.isdir, found_files)] #now with no dirs in it
|
||||
|
||||
if recursive:
|
||||
found_files += [find_files(x, recursive, pattern, skip_links, full_paths) for x in dirs]
|
||||
|
||||
if full_paths:
|
||||
return [os.path.abspath(x) for x in flatten(found_files) if x]
|
||||
else:
|
||||
return [x for x in flatten(found_files) if x]
|
||||
|
||||
#####################################################################
|
||||
#####################################################################
|
||||
# Main script starts here.
|
||||
#####################################################################
|
||||
completed_qms = []
|
||||
|
||||
with open(QM_CSV_FILE,'rb') as ifp:
|
||||
# read the qm.csv file assuming it is tab delimited
|
||||
qm_reader = csv.reader(ifp, delimiter='\t')
|
||||
|
||||
for row in qm_reader:
|
||||
if row[6] == "" or row[6].isspace():
|
||||
#skip rows that have no entry in the Completion description column
|
||||
continue
|
||||
completed_qms.append(row[0])
|
||||
|
||||
#get a list of all the html files in the description folder
|
||||
html_files = find_files(DESC_FOLDER, pattern="*.html")
|
||||
|
||||
#search each html file for references to each completed qm
|
||||
for desc_file in html_files:
|
||||
with open(desc_file,"r") as f:
|
||||
contents = f.read()
|
||||
for qm in completed_qms:
|
||||
if len(re.findall(qm + "(?!\d)",contents))!=0:
|
||||
print "Reference to "+qm + " found in "+desc_file
|
||||
|
||||
|
||||
|
BIN
smkridge/204/i/chalk_and_cheese.jpg
Normal file
After Width: | Height: | Size: 76 KiB |
BIN
smkridge/204/i/crestarun.jpg
Normal file
After Width: | Height: | Size: 140 KiB |
BIN
smkridge/204/i/crestarun_pitch.jpg
Normal file
After Width: | Height: | Size: 87 KiB |
BIN
smkridge/204/i/engaged_formation.jpg
Normal file
After Width: | Height: | Size: 34 KiB |
BIN
smkridge/204/i/flush_pitch.jpg
Normal file
After Width: | Height: | Size: 135 KiB |
BIN
smkridge/204/i/goretex_is_a_lie.jpg
Normal file
After Width: | Height: | Size: 70 KiB |
BIN
smkridge/204/i/sandpit.jpg
Normal file
After Width: | Height: | Size: 62 KiB |
BIN
smkridge/204/i/stupidhole.jpg
Normal file
After Width: | Height: | Size: 62 KiB |
BIN
smkridge/204/i/toothless.jpg
Normal file
After Width: | Height: | Size: 59 KiB |
BIN
smkridge/204/i/trihang.jpg
Normal file
After Width: | Height: | Size: 120 KiB |
29
smkridge/204/l/chalk_and_cheese.html
Normal file
@ -0,0 +1,29 @@
|
||||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
||||
<title>
|
||||
1623/204 - Chalk and Cheese
|
||||
</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../css/main2.css" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div class="centre"><img alt="Chalk and Cheese" src="../i/chalk_and_cheese.jpg" />
|
||||
</div>
|
||||
|
||||
<p>Kathryn Hopkins and Edvin Deadman at the top of Chalk and Cheese pitch, so named because of the soft white rock at the pitch head.</p>
|
||||
|
||||
<p class="caption">Photo © Nial Peters 2011</p>
|
||||
<hr />
|
||||
<ul id="links">
|
||||
<li><a href="../gallery.html">204 photo gallery</li>
|
||||
<li><a href="../204.html">Back to 204 description</a></li>
|
||||
<li><a href="../../../infodx.htm">Back to Expedition Intro page</a></li>
|
||||
<li><a href="../../../../index.htm">Back to CUCC Home page</a></li>
|
||||
</ul>
|
||||
|
||||
</body>
|
||||
</html>
|
29
smkridge/204/l/crestarun.html
Normal file
@ -0,0 +1,29 @@
|
||||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
||||
<title>
|
||||
1623/204 - Cresta Run
|
||||
</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../css/main2.css" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div class="centre"><img alt="Cresta Run" src="../i/crestarun.jpg" />
|
||||
</div>
|
||||
|
||||
<p>Djuke Veldhuis in the small, winding, phreatic passage of Cresta Run.</p>
|
||||
|
||||
<p class="caption">Photo © Nial Peters 2008</p>
|
||||
<hr />
|
||||
<ul id="links">
|
||||
<li><a href="../gallery.html">204 photo gallery</li>
|
||||
<li><a href="../204.html">Back to 204 description</a></li>
|
||||
<li><a href="../../../infodx.htm">Back to Expedition Intro page</a></li>
|
||||
<li><a href="../../../../index.htm">Back to CUCC Home page</a></li>
|
||||
</ul>
|
||||
|
||||
</body>
|
||||
</html>
|
29
smkridge/204/l/crestarun_pitch.html
Normal file
@ -0,0 +1,29 @@
|
||||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
||||
<title>
|
||||
1623/204 - Cresta Run Pitch
|
||||
</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../css/main2.css" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div class="centre"><img alt="Cresta Run Pitch" src="../i/crestarun_pitch.jpg" />
|
||||
</div>
|
||||
|
||||
<p>Martin Jahnke ascending the pitch up to Cresta Run from Helter Skelter.</p>
|
||||
|
||||
<p class="caption">Photo © Nial Peters 2008</p>
|
||||
<hr />
|
||||
<ul id="links">
|
||||
<li><a href="../gallery.html">204 photo gallery</li>
|
||||
<li><a href="../204.html">Back to 204 description</a></li>
|
||||
<li><a href="../../../infodx.htm">Back to Expedition Intro page</a></li>
|
||||
<li><a href="../../../../index.htm">Back to CUCC Home page</a></li>
|
||||
</ul>
|
||||
|
||||
</body>
|
||||
</html>
|
29
smkridge/204/l/engaged_formation.html
Normal file
@ -0,0 +1,29 @@
|
||||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
||||
<title>
|
||||
1623/204 - Engaged
|
||||
</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../css/main2.css" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div class="centre"><img alt="Engaged" src="../i/engaged_formation.jpg" />
|
||||
</div>
|
||||
|
||||
<p>Small formation at the top of the short pitch down into Engaged.</p>
|
||||
|
||||
<p class="caption">Photo © Edvin Deadman 2008</p>
|
||||
<hr />
|
||||
<ul id="links">
|
||||
<li><a href="../gallery.html">204 photo gallery</li>
|
||||
<li><a href="../204.html">Back to 204 description</a></li>
|
||||
<li><a href="../../../infodx.htm">Back to Expedition Intro page</a></li>
|
||||
<li><a href="../../../../index.htm">Back to CUCC Home page</a></li>
|
||||
</ul>
|
||||
|
||||
</body>
|
||||
</html>
|
29
smkridge/204/l/flush_pitch.html
Normal file
@ -0,0 +1,29 @@
|
||||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
||||
<title>
|
||||
1623/204 - Flush Pitch
|
||||
</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../css/main2.css" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div class="centre"><img alt="Flush Pitch" src="../i/flush_pitch.jpg" />
|
||||
</div>
|
||||
|
||||
<p>Kathryn Hopkins and Nial Peters hand-bolting the traverse across the top of Flush Pitch.</p>
|
||||
|
||||
<p class="caption">Photo © Edvin Deadman 2007</p>
|
||||
<hr />
|
||||
<ul id="links">
|
||||
<li><a href="../gallery.html">204 photo gallery</li>
|
||||
<li><a href="../204.html">Back to 204 description</a></li>
|
||||
<li><a href="../../../infodx.htm">Back to Expedition Intro page</a></li>
|
||||
<li><a href="../../../../index.htm">Back to CUCC Home page</a></li>
|
||||
</ul>
|
||||
|
||||
</body>
|
||||
</html>
|
29
smkridge/204/l/goretex_is_a_lie.html
Normal file
@ -0,0 +1,29 @@
|
||||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
||||
<title>
|
||||
1623/204 - GoreTex is a lie
|
||||
</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../css/main2.css" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div class="centre"><img alt="GoreTex is a lie" src="../i/goretex_is_a_lie.jpg" />
|
||||
</div>
|
||||
|
||||
<p>Djuke Veldhuis ascending one of the many small and unpleasant pitches in GoreTex is a lie.</p>
|
||||
|
||||
<p class="caption">Photo © Nial Peters 2011</p>
|
||||
<hr />
|
||||
<ul id="links">
|
||||
<li><a href="../gallery.html">204 photo gallery</li>
|
||||
<li><a href="../204.html">Back to 204 description</a></li>
|
||||
<li><a href="../../../infodx.htm">Back to Expedition Intro page</a></li>
|
||||
<li><a href="../../../../index.htm">Back to CUCC Home page</a></li>
|
||||
</ul>
|
||||
|
||||
</body>
|
||||
</html>
|
29
smkridge/204/l/sandpit.html
Normal file
@ -0,0 +1,29 @@
|
||||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
||||
<title>
|
||||
1623/204 - Sandpit
|
||||
</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../css/main2.css" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div class="centre"><img alt="Sandpit" src="../i/sandpit.jpg" />
|
||||
</div>
|
||||
|
||||
<p>Eeva Makiranta negotiatiating one of the small sandy crawls in Sandpit.</p>
|
||||
|
||||
<p class="caption">Photo © Nial Peters 2008</p>
|
||||
<hr />
|
||||
<ul id="links">
|
||||
<li><a href="../gallery.html">204 photo gallery</li>
|
||||
<li><a href="../204.html">Back to 204 description</a></li>
|
||||
<li><a href="../../../infodx.htm">Back to Expedition Intro page</a></li>
|
||||
<li><a href="../../../../index.htm">Back to CUCC Home page</a></li>
|
||||
</ul>
|
||||
|
||||
</body>
|
||||
</html>
|
29
smkridge/204/l/stupidhole.html
Normal file
@ -0,0 +1,29 @@
|
||||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
||||
<title>
|
||||
1623/204 - That Stupid Hole
|
||||
</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../css/main2.css" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div class="centre"><img alt="That Stupid Hole" src="../i/stupidhole.jpg" />
|
||||
</div>
|
||||
|
||||
<p>Djuke Veldhuis descending the second pitch in That Stupid Hole.</p>
|
||||
|
||||
<p class="caption">Photo © Nial Peters 2011</p>
|
||||
<hr />
|
||||
<ul id="links">
|
||||
<li><a href="../gallery.html">204 photo gallery</li>
|
||||
<li><a href="../204.html">Back to 204 description</a></li>
|
||||
<li><a href="../../../infodx.htm">Back to Expedition Intro page</a></li>
|
||||
<li><a href="../../../../index.htm">Back to CUCC Home page</a></li>
|
||||
</ul>
|
||||
|
||||
</body>
|
||||
</html>
|
29
smkridge/204/l/toothless.html
Normal file
@ -0,0 +1,29 @@
|
||||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
||||
<title>
|
||||
1623/204 - Toothless Chamber
|
||||
</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../css/main2.css" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div class="centre"><img alt="Toothless" src="../i/toothless.jpg" />
|
||||
</div>
|
||||
|
||||
<p>Tony Rooke placing bolts in Toothless chamber. The name Toothless was chosen after Nial spent half an hour struggling to get a hand-bolt in before realising that all the teeth had broken off of the spit!</p>
|
||||
|
||||
<p class="caption">Photo © Nial Peters 2008</p>
|
||||
<hr />
|
||||
<ul id="links">
|
||||
<li><a href="../gallery.html">204 photo gallery</li>
|
||||
<li><a href="../204.html">Back to 204 description</a></li>
|
||||
<li><a href="../../../infodx.htm">Back to Expedition Intro page</a></li>
|
||||
<li><a href="../../../../index.htm">Back to CUCC Home page</a></li>
|
||||
</ul>
|
||||
|
||||
</body>
|
||||
</html>
|
29
smkridge/204/l/trihang.html
Normal file
@ -0,0 +1,29 @@
|
||||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
||||
<title>
|
||||
1623/204 - Trihang
|
||||
</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../css/main2.css" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div class="centre"><img alt="Trihang" src="../i/trihang.jpg" />
|
||||
</div>
|
||||
|
||||
<p>Nial Peters rigging Trihang pitch (as a tri-hang, as it should be!).</p>
|
||||
|
||||
<p class="caption">Photo © Edvin Deadman 2007</p>
|
||||
<hr />
|
||||
<ul id="links">
|
||||
<li><a href="../gallery.html">204 photo gallery</li>
|
||||
<li><a href="../204.html">Back to 204 description</a></li>
|
||||
<li><a href="../../../infodx.htm">Back to Expedition Intro page</a></li>
|
||||
<li><a href="../../../../index.htm">Back to CUCC Home page</a></li>
|
||||
</ul>
|
||||
|
||||
</body>
|
||||
</html>
|
@ -97,7 +97,8 @@ id="qC2005-204-71">C2005-204-71 D</a>].</p>
|
||||
<h3>Southern area: Hippo Hollows / Fat Worm</h3>
|
||||
|
||||
<h4><a href="l/hippohollows.html"><img class="onright" src="t/hippohollows.jpg"
|
||||
alt="Hippo Hollows mud pots" /></a><a id="hippohollows">Hippo Hollows</a></h4>
|
||||
alt="Hippo Hollows mud pots" /></a><a href="l/chalk_and_cheese.html"><img class="onright" src="t/chalk_and_cheese.jpg"
|
||||
alt="Chalk and Cheese Pitch" /></a><a id="hippohollows">Hippo Hollows</a></h4>
|
||||
|
||||
<p>On the left, from the southern base of Subsoil Chamber, a 1.8m climb up a
|
||||
mud bank leads to a mud-floored passage that enters Hippo Hollows. This section
|
||||
@ -160,7 +161,9 @@ ahead leads steeply down large boulders to a small chamber and a wet aven [<a
|
||||
href="qm.html#C2004-204-66" id="qC2004-204-66">C2004-204-66 C</a>].
|
||||
|
||||
<h5><a id="stupidhole">That Stupid Hole</a></h5>
|
||||
|
||||
<a href="l/stupidhole.html"><img class="onright" src="t/stupidhole.jpg"
|
||||
alt="That Stupid Hole pitch" /></a><a href="l/goretex_is_a_lie.html"><img class="onright" src="t/goretex_is_a_lie.jpg"
|
||||
alt="GoreTex is a lie" /></a>
|
||||
Just down from Chalk and Cheese pitch, walking through the moderately large chamber, on the left there is That Stupid Hole. A bundle of boulders, two with notable spiky points (useful for putting a sling around / rigging), soon give way to a steeply sloping, partially muddy slope. Approximately 10 meters down, there is a axe like boulder (2.5m long) wedged between the walls of a small chamber. A short climb down below this boulder you hit another boulder floor in a chamber approximately 3 meters wide; this chokes at the bottom. However, standing on the top of the axe like boulder a narrow passage, with a notable draft, leads off left. A steep muddy climb up brings you out to an eye hole above another steeply sloping shaft (going up into an aven on the left and continuing steeply down on the right). Various rebelays and another 27 meters below, the shaft continues after being broken by a small, muddy ledge. The draft continues to be prominent and water trickles and puddles visible on portruding ledges below. A Y-hang allows one to descend another 75 meters in a rift system reminiscent of Easegill. At the bottom this pitch series becomes notably wetter and is named <a href="#Goretex is a lie">Goretex is a lie</a>. Eventually this trickle/stream continues into a rift too small to enter. On the left a short crawl through a blocky mud filled hole also dies out. </p>
|
||||
|
||||
<h3>Northern area (The Wares)</h3>
|
||||
|
@ -279,7 +279,12 @@ hole.</p>
|
||||
|
||||
<h4><a id="crestarun">Cresta Run</a></h4>
|
||||
|
||||
<p>The climb mentioned above was bolted in 2004 and has been left permanently rigged.
|
||||
<p>
|
||||
<div class="onright">
|
||||
<a imgclass="onright" href="l/crestarun.html"><img src="t/crestarun.jpg" /></a>
|
||||
<a imgclass="onright" href="l/crestarun_pitch.html"><img src="t/crestarun_pitch.jpg" /></a>
|
||||
</div>
|
||||
The climb mentioned above was bolted in 2004 and has been left permanently rigged.
|
||||
From the head of the pitch, a short climb up leads to a ledge overlooking
|
||||
Swings on one side and on the other side a (blind?) pit with an aven [<a
|
||||
href="qm.html#C2004-204-05" id="qC2004-204-05">C2004-204-05 X</a>] above.
|
||||
@ -287,6 +292,7 @@ Straight ahead is a steeply descending tube (best rigged); after a few metres
|
||||
the floor disappears, revealing a pitch down into <a
|
||||
href="treeumphant.html#helterskelter">Helter Skelter</a>.</p>
|
||||
|
||||
|
||||
<p>Traversing over this pitch past an aven [<a href="qm.html#C2004-204-06"
|
||||
id="qC2004-204-06">C2004-204-06 X</a>] and a narrow passage leading off into
|
||||
the roof [<a href="qm.html#C2004-204-07" id="qC2004-204-07">C2004-204-07 C</a>]
|
||||
@ -315,8 +321,9 @@ boulder [<a href="qm.html#C2004-204-14" id="qC2004-204-14">C2004-204-14
|
||||
C</a>].</p>
|
||||
|
||||
<h4><a id="toothless">Toothless</a></h4>
|
||||
<p>
|
||||
|
||||
<p>From the end of the ledge the pitch is a short descent of 6m to land on top
|
||||
From the end of the ledge the pitch is a short descent of 6m to land on top
|
||||
of a large block in a wide passage, <b>Toothless</b>, continuing north and
|
||||
south [MARK NIAL] [<a href="qm.html#C2005-204-41"
|
||||
id="qC2005-204-41">C2005-204-41 C</a>] [<a href="qm.html#C2005-204-42"
|
||||
@ -324,10 +331,12 @@ id="qC2005-204-42">C2005-204-42 ??</a>] [<a href="qm.html#C2005-204-43"
|
||||
id="qC2005-204-43">C2005-204-43 X</a>] [<a href="qm.html#C2005-204-44"
|
||||
id="qC2005-204-44">C2005-204-44 ??</a>] [<a href="qm.html#C2005-204-45"
|
||||
id="qC2005-204-45">C2005-204-45 C</a>].
|
||||
|
||||
</p>
|
||||
<a href="l/toothless.html"><img src="t/toothless.jpg" /></a>
|
||||
<p>
|
||||
<h3>High Hopes and the 2005 entrances</h3>
|
||||
|
||||
<div class="onleft">
|
||||
<div class="onright">
|
||||
<a href="l/hhclimb.html"><img src="t/hhclimb.jpg" /></a>
|
||||
<a href="l/hhfloor.html"><img src="t/hhfloor.jpg" /></a>
|
||||
</div>
|
||||
|
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 7.9 KiB |
Before Width: | Height: | Size: 6.5 KiB After Width: | Height: | Size: 9.4 KiB |
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 6.2 KiB After Width: | Height: | Size: 6.0 KiB |
Before Width: | Height: | Size: 5.6 KiB After Width: | Height: | Size: 9.0 KiB |
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 8.9 KiB |
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 6.4 KiB |
Before Width: | Height: | Size: 4.6 KiB After Width: | Height: | Size: 6.0 KiB |
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 5.4 KiB |
Before Width: | Height: | Size: 5.1 KiB After Width: | Height: | Size: 7.2 KiB |
Before Width: | Height: | Size: 5.5 KiB After Width: | Height: | Size: 8.0 KiB |
Before Width: | Height: | Size: 5.3 KiB After Width: | Height: | Size: 8.0 KiB |
Before Width: | Height: | Size: 7.0 KiB After Width: | Height: | Size: 5.2 KiB |
Before Width: | Height: | Size: 4.8 KiB After Width: | Height: | Size: 8.7 KiB |
Before Width: | Height: | Size: 8.6 KiB After Width: | Height: | Size: 8.6 KiB |
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 5.5 KiB |
BIN
smkridge/204/t/bivvy.jpg
Normal file
After Width: | Height: | Size: 8.9 KiB |
Before Width: | Height: | Size: 7.5 KiB After Width: | Height: | Size: 8.2 KiB |
Before Width: | Height: | Size: 8.6 KiB After Width: | Height: | Size: 8.7 KiB |
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 8.9 KiB |
Before Width: | Height: | Size: 6.7 KiB After Width: | Height: | Size: 4.8 KiB |
BIN
smkridge/204/t/bridge.jpg
Normal file
After Width: | Height: | Size: 7.9 KiB |
Before Width: | Height: | Size: 3.5 KiB After Width: | Height: | Size: 5.5 KiB |
Before Width: | Height: | Size: 4.1 KiB After Width: | Height: | Size: 6.7 KiB |
Before Width: | Height: | Size: 4.2 KiB After Width: | Height: | Size: 7.2 KiB |
Before Width: | Height: | Size: 6.3 KiB After Width: | Height: | Size: 6.6 KiB |
Before Width: | Height: | Size: 6.7 KiB After Width: | Height: | Size: 6.9 KiB |
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
BIN
smkridge/204/t/chalk_and_cheese.jpg
Normal file
After Width: | Height: | Size: 7.0 KiB |
Before Width: | Height: | Size: 7.2 KiB After Width: | Height: | Size: 7.2 KiB |
Before Width: | Height: | Size: 9.3 KiB After Width: | Height: | Size: 9.3 KiB |
BIN
smkridge/204/t/crestarun.jpg
Normal file
After Width: | Height: | Size: 6.6 KiB |
BIN
smkridge/204/t/crestarun_pitch.jpg
Normal file
After Width: | Height: | Size: 7.2 KiB |
Before Width: | Height: | Size: 8.6 KiB After Width: | Height: | Size: 6.5 KiB |
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 9.3 KiB |
Before Width: | Height: | Size: 9.4 KiB After Width: | Height: | Size: 9.2 KiB |
BIN
smkridge/204/t/engaged_formation.jpg
Normal file
After Width: | Height: | Size: 4.5 KiB |
Before Width: | Height: | Size: 5.0 KiB After Width: | Height: | Size: 8.8 KiB |
Before Width: | Height: | Size: 8.0 KiB After Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 5.5 KiB After Width: | Height: | Size: 5.4 KiB |
Before Width: | Height: | Size: 6.1 KiB After Width: | Height: | Size: 4.0 KiB |
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 3.7 KiB |
Before Width: | Height: | Size: 3.8 KiB After Width: | Height: | Size: 6.3 KiB |
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 5.8 KiB |
BIN
smkridge/204/t/flush_pitch.jpg
Normal file
After Width: | Height: | Size: 7.2 KiB |
Before Width: | Height: | Size: 8.9 KiB After Width: | Height: | Size: 9.6 KiB |
Before Width: | Height: | Size: 3.9 KiB After Width: | Height: | Size: 6.7 KiB |
Before Width: | Height: | Size: 3.8 KiB After Width: | Height: | Size: 6.7 KiB |
Before Width: | Height: | Size: 7.5 KiB After Width: | Height: | Size: 8.1 KiB |
BIN
smkridge/204/t/goretex_is_a_lie.jpg
Normal file
After Width: | Height: | Size: 6.2 KiB |
Before Width: | Height: | Size: 7.7 KiB After Width: | Height: | Size: 8.9 KiB |
Before Width: | Height: | Size: 4.6 KiB After Width: | Height: | Size: 8.5 KiB |
Before Width: | Height: | Size: 5.1 KiB After Width: | Height: | Size: 5.4 KiB |
Before Width: | Height: | Size: 3.9 KiB After Width: | Height: | Size: 6.4 KiB |
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 10 KiB |
Before Width: | Height: | Size: 3.5 KiB After Width: | Height: | Size: 5.7 KiB |
Before Width: | Height: | Size: 4.0 KiB After Width: | Height: | Size: 6.6 KiB |
Before Width: | Height: | Size: 3.7 KiB After Width: | Height: | Size: 5.9 KiB |
Before Width: | Height: | Size: 7.2 KiB After Width: | Height: | Size: 6.2 KiB |
Before Width: | Height: | Size: 6.5 KiB After Width: | Height: | Size: 5.6 KiB |
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 5.3 KiB |
Before Width: | Height: | Size: 3.8 KiB After Width: | Height: | Size: 6.0 KiB |
Before Width: | Height: | Size: 6.9 KiB After Width: | Height: | Size: 6.8 KiB |
Before Width: | Height: | Size: 5.7 KiB After Width: | Height: | Size: 8.7 KiB |
Before Width: | Height: | Size: 3.9 KiB After Width: | Height: | Size: 6.0 KiB |
Before Width: | Height: | Size: 7.4 KiB After Width: | Height: | Size: 7.3 KiB |
Before Width: | Height: | Size: 6.3 KiB After Width: | Height: | Size: 4.1 KiB |
Before Width: | Height: | Size: 9.9 KiB After Width: | Height: | Size: 6.2 KiB |
Before Width: | Height: | Size: 6.8 KiB After Width: | Height: | Size: 5.9 KiB |
Before Width: | Height: | Size: 8.8 KiB After Width: | Height: | Size: 6.5 KiB |
Before Width: | Height: | Size: 8.1 KiB After Width: | Height: | Size: 7.2 KiB |
Before Width: | Height: | Size: 8.3 KiB After Width: | Height: | Size: 8.0 KiB |
Before Width: | Height: | Size: 7.1 KiB After Width: | Height: | Size: 7.3 KiB |
Before Width: | Height: | Size: 7.7 KiB After Width: | Height: | Size: 6.8 KiB |
Before Width: | Height: | Size: 4.1 KiB After Width: | Height: | Size: 6.9 KiB |
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 7.5 KiB |