Merge changes from Cambridge server
@ -3,7 +3,7 @@
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
||||
<title>
|
||||
Balkonhoehleöhle: 2014 Fluer and Pete
|
||||
Balkonhoehleöhle: 2014 Fleur and Pete
|
||||
</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../css/main2.css" />
|
||||
</head>
|
||||
|
Before Width: | Height: | Size: 30 KiB After Width: | Height: | Size: 30 KiB |
Before Width: | Height: | Size: 50 KiB After Width: | Height: | Size: 50 KiB |
BIN
1623/273/ent.jpeg
Normal file
After Width: | Height: | Size: 181 KiB |
BIN
1623/273/explorers.jpeg
Normal file
After Width: | Height: | Size: 173 KiB |
Before Width: | Height: | Size: 94 KiB After Width: | Height: | Size: 94 KiB |
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 11 KiB |
27
documents/therionprotractors/therionpage400.tex
Normal file
@ -0,0 +1,27 @@
|
||||
\documentclass[12pt,a4paper]{article}
|
||||
|
||||
% packages
|
||||
\usepackage{tikz}
|
||||
\usepackage[outline]{contour}
|
||||
\usepackage{standalone}
|
||||
\usepackage[margin=10mm]{geometry}
|
||||
|
||||
\begin{document}
|
||||
\begin{figure}
|
||||
\centering
|
||||
\begin{tikzpicture}
|
||||
|
||||
\pgfmathsetmacro{\xdist}{8.5}
|
||||
\pgfmathsetmacro{\ydist}{4.5}
|
||||
|
||||
\foreach \xval in {1,2}
|
||||
{
|
||||
\foreach \yval in {1,2,...,6}
|
||||
{
|
||||
\node at (\xval*\xdist,\yval*\ydist) {\input{therionprotractor400.tex}};
|
||||
}
|
||||
}
|
||||
|
||||
\end{tikzpicture}
|
||||
\end{figure}
|
||||
\end{document}
|
189
documents/therionprotractors/therionprotractor250.tex
Normal file
@ -0,0 +1,189 @@
|
||||
% ********************************************************************************
|
||||
% Creates a therion protractor of set size and scale
|
||||
% ********************************************************************************
|
||||
|
||||
\documentclass[12pt,border=0pt]{standalone}
|
||||
|
||||
% packages
|
||||
\usepackage{tikz}
|
||||
\usepackage[outline]{contour}
|
||||
|
||||
\begin{document}
|
||||
\begin{tikzpicture}[scale=1]
|
||||
|
||||
\contourlength{1.2pt}
|
||||
|
||||
% ********************************************************************************
|
||||
% Set the coordinates and dimensions to draw from
|
||||
% ********************************************************************************
|
||||
|
||||
% Origin
|
||||
\coordinate (O) at (0,0);
|
||||
|
||||
% Size and scale of the protractor
|
||||
\pgfmathsetmacro{\scaleto}{250} % 1:scaleto
|
||||
\pgfmathsetmacro{\radius}{10} % size in meters
|
||||
\pgfmathsetmacro{\majordivision}{1} % size in meters
|
||||
\pgfmathsetmacro{\minordivision}{0.5} % size in meters
|
||||
|
||||
% Size of the text numbers
|
||||
\newcommand{\textsize}{\tiny}
|
||||
|
||||
% Intrinisc dimensions and conversion factors
|
||||
\pgfmathsetmacro{\convert}{100} % conversion from meters to centimeters
|
||||
\pgfmathsetmacro{\mintick}{0.1} % size in centimeters
|
||||
\pgfmathsetmacro{\majtick}{0.2} % size in centimeters
|
||||
\pgfmathsetmacro{\minradii}{0.5} % fractional radius where dotted radial lines start
|
||||
\pgfmathsetmacro{\minradiiend}{1-\minradii} % remainder
|
||||
|
||||
% Size and scale of the drawing
|
||||
\pgfmathsetmacro{\rad}{\radius*\convert/\scaleto}
|
||||
\pgfmathsetmacro{\majdiv}{\majordivision*\convert/\scaleto}
|
||||
\pgfmathsetmacro{\mindiv}{\minordivision*\convert/\scaleto}
|
||||
|
||||
% Slightly reduced radii for the scale bar
|
||||
\pgfmathsetmacro{\radscale}{\rad-\mindiv}
|
||||
|
||||
|
||||
% ********************************************************************************
|
||||
% Draw the foreshortening lines
|
||||
% ********************************************************************************
|
||||
|
||||
% Vertical lines
|
||||
\foreach \var in {0,\mindiv,...,\radscale}
|
||||
{
|
||||
\draw[gray] (O) ++ (\var,0) -- ++ (0,\rad);
|
||||
\draw[gray] (O) ++ (-\var,0) -- ++ (0,\rad);
|
||||
}
|
||||
|
||||
% White out the excess length
|
||||
\draw[thick,white,fill=white] (O) ++ (\rad,0) arc(0:180:\rad) -- ++ (0,\rad) -- ++ (2*\rad,0) -- cycle;
|
||||
|
||||
|
||||
% ********************************************************************************
|
||||
% Draw the circumcircles
|
||||
% ********************************************************************************
|
||||
|
||||
\foreach \var in {0,\mindiv,...,\rad}
|
||||
{
|
||||
\draw[gray] (O) ++ (\var,0) arc (0:180:\var);
|
||||
}
|
||||
|
||||
|
||||
% ********************************************************************************
|
||||
% Draw the radii
|
||||
% ********************************************************************************
|
||||
|
||||
\foreach \theta in {10,40,...,160}
|
||||
{
|
||||
\draw[red] (O) ++ (\theta:\mindiv) -- ++ (\theta:\radscale);
|
||||
}
|
||||
|
||||
\foreach \theta in {20,50,...,170}
|
||||
{
|
||||
\draw[blue] (O) ++ (\theta:\mindiv) -- ++ (\theta:\radscale);
|
||||
}
|
||||
|
||||
\foreach \theta in {30,60,...,150}
|
||||
{
|
||||
\draw[black] (O) ++ (\theta:\mindiv) -- ++ (\theta:\radscale);
|
||||
}
|
||||
|
||||
\foreach \theta in {5,15,...,175}
|
||||
{
|
||||
\draw[black,dotted] (O) ++ (\theta:\minradii*\rad) -- ++ (\theta:\minradiiend*\rad);
|
||||
}
|
||||
|
||||
|
||||
% ********************************************************************************
|
||||
% Draw the angular scale
|
||||
% ********************************************************************************
|
||||
|
||||
\foreach \theta in {1,2,...,179}
|
||||
{
|
||||
\draw[black,thick] (O) ++ (\theta:\rad) -- ++ (\theta:-\mintick);
|
||||
}
|
||||
|
||||
\foreach \theta in {5,10,...,175}
|
||||
{
|
||||
\draw[black,thick] (O) ++ (\theta:\rad) -- ++ (\theta:-\majtick);
|
||||
}
|
||||
|
||||
|
||||
% ********************************************************************************
|
||||
% Draw the linear scale
|
||||
% ********************************************************************************
|
||||
|
||||
|
||||
\foreach \var in {0,\mindiv,...,\radscale}
|
||||
{
|
||||
\draw[black,thick] (O) ++ (\var,0) -- ++ (0,\mintick);
|
||||
\draw[black,thick] (O) ++ (-\var,0) -- ++ (0,\mintick);
|
||||
}
|
||||
|
||||
|
||||
|
||||
% ********************************************************************************
|
||||
% Draw the outline
|
||||
% ********************************************************************************
|
||||
|
||||
\draw[black,thick] (O) ++ (\rad,0) arc (0:180:\rad) -- cycle;
|
||||
\draw[black,thick] (O) -- ++ (0,\majtick);
|
||||
|
||||
|
||||
% ********************************************************************************
|
||||
% Draw the angle numbers
|
||||
% ********************************************************************************
|
||||
|
||||
\foreach \theta in {10,20,...,80}
|
||||
{
|
||||
\pgfmathsetmacro{\thetaopposite}{\theta+180}
|
||||
|
||||
\draw[black] (O) ++ (\theta:\rad) -- ++ (\theta:-\majtick) node[anchor=south,near start,sloped,rotate=90,text=black] {
|
||||
\textsize
|
||||
\begin{tabular}{c}
|
||||
\contour{white}{\pgfmathprintnumber{\theta}}\\
|
||||
\contour{white}{\pgfmathprintnumber{\thetaopposite}}
|
||||
\end{tabular}
|
||||
};
|
||||
}
|
||||
|
||||
\foreach \theta in {90,100,...,170}
|
||||
{
|
||||
\pgfmathsetmacro{\thetaopposite}{\theta+180}
|
||||
|
||||
\draw[black] (O) ++ (\theta:\rad) -- ++ (\theta:-\majtick) node[anchor=south,near start,sloped,rotate=-90,text=black] {
|
||||
\textsize
|
||||
\begin{tabular}{c}
|
||||
\contour{white}{\pgfmathprintnumber{\theta}}\\
|
||||
\contour{white}{\pgfmathprintnumber{\thetaopposite}}
|
||||
\end{tabular}
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
% ********************************************************************************
|
||||
% Draw the linear numbers
|
||||
% ********************************************************************************
|
||||
|
||||
\pgfmathsetmacro{\labmax}{\radius-\majordivision}
|
||||
\pgfmathsetmacro{\labsecond}{\majordivision+\majordivision}
|
||||
|
||||
\foreach \var in {\majordivision,\labsecond,...,\labmax}
|
||||
{
|
||||
\pgfmathsetmacro{\varpos}{\var*\convert/\scaleto}
|
||||
|
||||
\draw[black,thick] (O) ++ (\varpos,0) -- ++ (0,\mintick) node [above=-2pt] {\contour{white}{\textsize\pgfmathprintnumber{\var}}};
|
||||
\draw[black,thick] (O) ++ (-\varpos,0) -- ++ (0,\mintick) node [above=-2pt] {\contour{white}{\textsize\pgfmathprintnumber{\var}}};
|
||||
}
|
||||
|
||||
|
||||
% ********************************************************************************
|
||||
% Draw the scale number
|
||||
% ********************************************************************************
|
||||
|
||||
\draw[black] (O) ++ (0,\rad/3) -- ++ (0,\rad/3) node [midway,anchor=center,sloped,text=black] {\contour{white}{\textsize $1$:\pgfmathprintnumber{\scaleto}}};
|
||||
|
||||
|
||||
\end{tikzpicture}
|
||||
\end{document}
|
189
documents/therionprotractors/therionprotractor400.tex
Normal file
@ -0,0 +1,189 @@
|
||||
% ********************************************************************************
|
||||
% Creates a therion protractor of set size and scale
|
||||
% ********************************************************************************
|
||||
|
||||
\documentclass[12pt,border=0pt]{standalone}
|
||||
|
||||
% packages
|
||||
\usepackage{tikz}
|
||||
\usepackage[outline]{contour}
|
||||
|
||||
\begin{document}
|
||||
\begin{tikzpicture}[scale=1]
|
||||
|
||||
\contourlength{1.2pt}
|
||||
|
||||
% ********************************************************************************
|
||||
% Set the coordinates and dimensions to draw from
|
||||
% ********************************************************************************
|
||||
|
||||
% Origin
|
||||
\coordinate (O) at (0,0);
|
||||
|
||||
% Size and scale of the protractor
|
||||
\pgfmathsetmacro{\scaleto}{400} % 1:scaleto
|
||||
\pgfmathsetmacro{\radius}{16} % size in meters
|
||||
\pgfmathsetmacro{\majordivision}{2} % size in meters
|
||||
\pgfmathsetmacro{\minordivision}{1} % size in meters
|
||||
|
||||
% Size of the text numbers
|
||||
\newcommand{\textsize}{\tiny}
|
||||
|
||||
% Intrinisc dimensions and conversion factors
|
||||
\pgfmathsetmacro{\convert}{100} % conversion from meters to centimeters
|
||||
\pgfmathsetmacro{\mintick}{0.1} % size in centimeters
|
||||
\pgfmathsetmacro{\majtick}{0.2} % size in centimeters
|
||||
\pgfmathsetmacro{\minradii}{0.5} % fractional radius where dotted radial lines start
|
||||
\pgfmathsetmacro{\minradiiend}{1-\minradii} % remainder
|
||||
|
||||
% Size and scale of the drawing
|
||||
\pgfmathsetmacro{\rad}{\radius*\convert/\scaleto}
|
||||
\pgfmathsetmacro{\majdiv}{\majordivision*\convert/\scaleto}
|
||||
\pgfmathsetmacro{\mindiv}{\minordivision*\convert/\scaleto}
|
||||
|
||||
% Slightly reduced radii for the scale bar
|
||||
\pgfmathsetmacro{\radscale}{\rad-\mindiv}
|
||||
|
||||
|
||||
% ********************************************************************************
|
||||
% Draw the foreshortening lines
|
||||
% ********************************************************************************
|
||||
|
||||
% Vertical lines
|
||||
\foreach \var in {0,\mindiv,...,\radscale}
|
||||
{
|
||||
\draw[gray] (O) ++ (\var,0) -- ++ (0,\rad);
|
||||
\draw[gray] (O) ++ (-\var,0) -- ++ (0,\rad);
|
||||
}
|
||||
|
||||
% White out the excess length
|
||||
\draw[thick,white,fill=white] (O) ++ (\rad,0) arc(0:180:\rad) -- ++ (0,\rad) -- ++ (2*\rad,0) -- cycle;
|
||||
|
||||
|
||||
% ********************************************************************************
|
||||
% Draw the circumcircles
|
||||
% ********************************************************************************
|
||||
|
||||
\foreach \var in {0,\mindiv,...,\rad}
|
||||
{
|
||||
\draw[gray] (O) ++ (\var,0) arc (0:180:\var);
|
||||
}
|
||||
|
||||
|
||||
% ********************************************************************************
|
||||
% Draw the radii
|
||||
% ********************************************************************************
|
||||
|
||||
\foreach \theta in {10,40,...,160}
|
||||
{
|
||||
\draw[green] (O) ++ (\theta:\mindiv) -- ++ (\theta:\radscale);
|
||||
}
|
||||
|
||||
\foreach \theta in {20,50,...,170}
|
||||
{
|
||||
\draw[purple] (O) ++ (\theta:\mindiv) -- ++ (\theta:\radscale);
|
||||
}
|
||||
|
||||
\foreach \theta in {30,60,...,150}
|
||||
{
|
||||
\draw[black] (O) ++ (\theta:\mindiv) -- ++ (\theta:\radscale);
|
||||
}
|
||||
|
||||
\foreach \theta in {5,15,...,175}
|
||||
{
|
||||
\draw[black,dotted] (O) ++ (\theta:\minradii*\rad) -- ++ (\theta:\minradiiend*\rad);
|
||||
}
|
||||
|
||||
|
||||
% ********************************************************************************
|
||||
% Draw the angular scale
|
||||
% ********************************************************************************
|
||||
|
||||
\foreach \theta in {1,2,...,179}
|
||||
{
|
||||
\draw[black,thick] (O) ++ (\theta:\rad) -- ++ (\theta:-\mintick);
|
||||
}
|
||||
|
||||
\foreach \theta in {5,10,...,175}
|
||||
{
|
||||
\draw[black,thick] (O) ++ (\theta:\rad) -- ++ (\theta:-\majtick);
|
||||
}
|
||||
|
||||
|
||||
% ********************************************************************************
|
||||
% Draw the linear scale
|
||||
% ********************************************************************************
|
||||
|
||||
|
||||
\foreach \var in {0,\mindiv,...,\radscale}
|
||||
{
|
||||
\draw[black,thick] (O) ++ (\var,0) -- ++ (0,\mintick);
|
||||
\draw[black,thick] (O) ++ (-\var,0) -- ++ (0,\mintick);
|
||||
}
|
||||
|
||||
|
||||
|
||||
% ********************************************************************************
|
||||
% Draw the outline
|
||||
% ********************************************************************************
|
||||
|
||||
\draw[black,thick] (O) ++ (\rad,0) arc (0:180:\rad) -- cycle;
|
||||
\draw[black,thick] (O) -- ++ (0,\majtick);
|
||||
|
||||
|
||||
% ********************************************************************************
|
||||
% Draw the angle numbers
|
||||
% ********************************************************************************
|
||||
|
||||
\foreach \theta in {10,20,...,80}
|
||||
{
|
||||
\pgfmathsetmacro{\thetaopposite}{\theta+180}
|
||||
|
||||
\draw[black] (O) ++ (\theta:\rad) -- ++ (\theta:-\majtick) node[anchor=south,near start,sloped,rotate=90,text=black] {
|
||||
\textsize
|
||||
\begin{tabular}{c}
|
||||
\contour{white}{\pgfmathprintnumber{\theta}}\\
|
||||
\contour{white}{\pgfmathprintnumber{\thetaopposite}}
|
||||
\end{tabular}
|
||||
};
|
||||
}
|
||||
|
||||
\foreach \theta in {90,100,...,170}
|
||||
{
|
||||
\pgfmathsetmacro{\thetaopposite}{\theta+180}
|
||||
|
||||
\draw[black] (O) ++ (\theta:\rad) -- ++ (\theta:-\majtick) node[anchor=south,near start,sloped,rotate=-90,text=black] {
|
||||
\textsize
|
||||
\begin{tabular}{c}
|
||||
\contour{white}{\pgfmathprintnumber{\theta}}\\
|
||||
\contour{white}{\pgfmathprintnumber{\thetaopposite}}
|
||||
\end{tabular}
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
% ********************************************************************************
|
||||
% Draw the linear numbers
|
||||
% ********************************************************************************
|
||||
|
||||
\pgfmathsetmacro{\labmax}{\radius-\majordivision}
|
||||
\pgfmathsetmacro{\labsecond}{\majordivision+\majordivision}
|
||||
|
||||
\foreach \var in {\majordivision,\labsecond,...,\labmax}
|
||||
{
|
||||
\pgfmathsetmacro{\varpos}{\var*\convert/\scaleto}
|
||||
|
||||
\draw[black,thick] (O) ++ (\varpos,0) -- ++ (0,\mintick) node [above=-2pt] {\contour{white}{\textsize\pgfmathprintnumber{\var}}};
|
||||
\draw[black,thick] (O) ++ (-\varpos,0) -- ++ (0,\mintick) node [above=-2pt] {\contour{white}{\textsize\pgfmathprintnumber{\var}}};
|
||||
}
|
||||
|
||||
|
||||
% ********************************************************************************
|
||||
% Draw the scale number
|
||||
% ********************************************************************************
|
||||
|
||||
\draw[black] (O) ++ (0,\rad/3) -- ++ (0,\rad/3) node [midway,anchor=center,sloped,text=black] {\contour{white}{\textsize $1$:\pgfmathprintnumber{\scaleto}}};
|
||||
|
||||
|
||||
\end{tikzpicture}
|
||||
\end{document}
|
48
fixaid.htm
@ -6,20 +6,6 @@
|
||||
<link rel="stylesheet" type="text/css" href="css/main2.css" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="centre">
|
||||
<a href="1623/161/pix.htm"><img alt="Photos "
|
||||
src="../icons/vtour.png" width="40" height="40" /></a>
|
||||
<img alt="Rigging" src="../icons/rigbut.png" width="40" height="40" />
|
||||
<a href="1623/161/names.htm"><img alt=" Glossary "
|
||||
src="../icons/idx161.png" width="40" height="40" /></a>
|
||||
<a href="index.htm"><img alt=" Expo "
|
||||
src="../icons/ausbut.png" width="40" height="40" /></a>
|
||||
<a href="infodx.htm"><img alt=" Topics "
|
||||
src="../icons/index.png" width="40" height="40" /></a>
|
||||
<a href="indxal.htm"><img alt=" Index "
|
||||
src="../icons/indxal.png" width="40" height="40" /></a>
|
||||
<a href="../index.htm"><img alt=" CUCC"
|
||||
src="../icons/cucc.png" width="40" height="40" /></a></div>
|
||||
|
||||
<h1>Fixed aids in CUCC caves</h1>
|
||||
|
||||
@ -33,14 +19,16 @@ rigged verticals are mentioned in the descriptions, but are also gathered
|
||||
together here to help those needing to keep track of and maintain these
|
||||
ropes.</p>
|
||||
|
||||
<p>As an area may not be visited for some years, it is important to keep a
|
||||
record of when a rope was last changed or inspected, so that some idea may be
|
||||
formed of its likely state. There are currently around 700m of ropes in
|
||||
various places, as much as ten years old, and in place for up to seven years.
|
||||
Current thinking is that if <b>static</b> ropes are not subject to
|
||||
disturbance causing abrasion (eg. by flowing water) or rockfall, they
|
||||
probably deteriorate a <b>lot</b> more slowly in the cave than in the tackle
|
||||
store. (This may not be true of dynamic ropes).</p>
|
||||
<p>As an area may not be visited for some years, it is important to
|
||||
keep a record of when a rope was last changed or inspected, so that
|
||||
some idea may be formed of its likely state. There are currently
|
||||
around 700m of ropes in various places, as much as twenty-five years
|
||||
old, and in place for up to 25 years. Current thinking is that
|
||||
if <b>static</b> ropes are not subject to disturbance causing abrasion
|
||||
(eg. by flowing water) or rockfall, they probably deteriorate
|
||||
a <b>lot</b> more slowly in the cave than in the tackle store. We have
|
||||
successfully use ropes left in the cave for 15 years without mishap
|
||||
(3-wise men traverse, left 1994, returned 2009).</p>
|
||||
|
||||
<p>In all these cases, it is the users' responsibility to convince himself of
|
||||
the safety of the rope before using it. If in any doubt, take climbing and
|
||||
@ -55,12 +43,26 @@ responsible for any mishap arising from its use!</p>
|
||||
|
||||
<hr />
|
||||
|
||||
<h3><a id="sbh">Fixed aids in Gemsehöhle</a></h3>
|
||||
<h3><a id="ts">Fixed aids in Tunnockschacht</a></h3>
|
||||
|
||||
<table class="trad">
|
||||
<tr><th>location</th><th>length</th><th>diameter</th><th>rope vintage</th>
|
||||
<th>year left rigged</th><th>hangers</th><th>other info</th></tr>
|
||||
|
||||
<tr><td>kraken pitch</td>
|
||||
<td>?100m</td><td>?10mm</td><td>?</td><td>2014</td><td>10+</td><td></td></tr>
|
||||
|
||||
<tr><td>inferno pitches</td>
|
||||
<td>?120m</td><td>?9mm</td><td>?</td><td>2014</td><td>11</td><td>3 slings, 2 crabs</td></tr>
|
||||
|
||||
<h3><a id="gh">Fixed aids in Gemsehöhle</a></h3>
|
||||
|
||||
<table class="trad">
|
||||
<tr><th>location</th><th>length</th><th>diameter</th><th>rope vintage</th>
|
||||
<th>year left rigged</th><th>hangers</th><th>other info</th></tr>
|
||||
|
||||
<tr><td>Climb at the NE end of China</td>
|
||||
<td>?20m</td><td>?10mm</td><td>?</td><td>2013</td><td>2</td><td></td></tr>
|
||||
|
||||
<h3><a id="sbh">Fixed aids in Steinbrückenhöhle</a></h3>
|
||||
|
||||
|
@ -25,19 +25,17 @@
|
||||
<li>Recent years:
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="years/2011/">2011</a></td>
|
||||
<td>|</td>
|
||||
<td><a href="years/2012/">2012</a></td>
|
||||
<td>|</td>
|
||||
<td><a href="years/2013/">2013</a></td>
|
||||
<td>|</td>
|
||||
<td><a href="years/2014/">2014</a></td>
|
||||
<td>|</td>
|
||||
<td><a href="years/2015/">2015</a></td>
|
||||
<td>|</td>
|
||||
<td><a href="years/2016/">2016</a></td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
<li>Coming year: <a href="years/2016/">2016</a></li>
|
||||
<li>Coming year: <a href="years/2017/">2017</a></li>
|
||||
</ul>
|
||||
|
||||
<h2>Area Description</h2>
|
||||
|
@ -261,6 +261,8 @@
|
||||
258 Tunnockschacht
|
||||
263 Clownhöhle
|
||||
264 Balkonhöhle
|
||||
267 Verstecktentalhöhle
|
||||
273 Ferkelhöhle
|
||||
|
||||
(d) our internal numbers. When given full kataster status, => official number
|
||||
otherwise, these caves are awaiting submission to Robert. We (try to) say elsewhere how complete the documentation is,
|
||||
@ -270,7 +272,7 @@
|
||||
|
||||
1977/11 expo.survex.com/years/1988/164.htm refers to this number, which is almost certainly 1976-B11
|
||||
(1987-01 might be 199 Stürzender Felsbrocken Höhle but web page doesn't say. This is just an AERW memory to remind me to check logbook)
|
||||
1987-02
|
||||
1987-02 => 1623/267 (in 2016)
|
||||
1989-01
|
||||
1990-01 => 1623/171
|
||||
1990-02 => 1623/172
|
||||
|
@ -31,11 +31,11 @@
|
||||
<p><img src="plan.jpeg" alt="Plan on centreline of 96Wk11"</p>
|
||||
</underground_description>
|
||||
<equipment>25-30m handline, Long sling</equipment>
|
||||
<references><a href="t2015-08-09b">Logbook 2015</a></references>
|
||||
<references><a href="/years/2015/logbook.html#t2015-08-09b">Logbook 2015</a></references>
|
||||
<survey>1996 Sketch plan and elv in NotKH book 1999- p16<br />Proper survey 2015</survey>
|
||||
<kataster_status></kataster_status>
|
||||
<underground_centre_line></underground_centre_line>
|
||||
<notes><a href="/expofiles/surveyscans/2015/2015%2369-Wk11/index.html">2015#69</a></notes>
|
||||
<notes><a href="/expofiles/surveyscans/2015/2015%2369/index.html">2015#69</a></notes>
|
||||
<length>34m</length>
|
||||
<depth>25m</depth>
|
||||
<extent>20m</extent>
|
||||
|
@ -8,7 +8,7 @@
|
||||
<body>
|
||||
<cave>
|
||||
<non_public>False</non_public>
|
||||
<caveslug>1623-1987-02</caveslug>
|
||||
<caveslug>1623-267</caveslug>
|
||||
<official_name>Verstecktentalhöhle</official_name>
|
||||
<area>1623</area>
|
||||
<area>1c</area>
|
||||
@ -17,7 +17,7 @@
|
||||
<unofficial_number>1987-02</unofficial_number>
|
||||
|
||||
<entrance>
|
||||
<entranceslug>1623-1987-02</entranceslug>
|
||||
<entranceslug>1623-267</entranceslug>
|
||||
<letter></letter>
|
||||
</entrance>
|
||||
|
||||
@ -25,16 +25,16 @@
|
||||
<underground_description>The cave has a walk-in entrance, splitting just inside. The left passage comes out below a shaft from the surface, and apparently continues unexplored. The main passage reaches a 10m pitch, also below a surface shaft, which drops into a chamber. To the left is a short passage to an undescended pitch of about 10m, while to the right are three ways on. First is a rift, then a passage with an ice floor, and finally, half back towards the entrance, is a passage emerging below another surface shaft (passed on the surface just before reaching the entrance). This final passage also appeared to continue. Because a large carbide pig was found outside the entrance, it was assumed that someone else was in the course of exploring this cave.</underground_description>
|
||||
<equipment></equipment>
|
||||
<references></references>
|
||||
<survey><a href="../../expofiles/surveys/1987-02/1987-02-plan-2015.pdf">Plan, drawn 2015<br /></a></survey>
|
||||
<survey><a href="../../expofiles/surveys/267/267-plan-2015.pdf">Plan, drawn 2015<br /></a></survey>
|
||||
<kataster_status></kataster_status>
|
||||
<underground_centre_line></underground_centre_line>
|
||||
<notes>There are two skylight entrances. These have been noted from the inside, but not located on the surface and not descended, thus they have not been allocated letters.</notes>
|
||||
<length></length>
|
||||
<depth></depth>
|
||||
<extent></extent>
|
||||
<survex_file>caves/1987-02/1987-02.svx</survex_file>
|
||||
<description_file>1623/1987-02.html</description_file>
|
||||
<url>1623/1987-02.html</url>
|
||||
<survex_file>caves/267/267.svx</survex_file>
|
||||
<description_file>1623/267.html</description_file>
|
||||
<url>1623/267.html</url>
|
||||
</cave>
|
||||
</body>
|
||||
</html>
|
@ -8,32 +8,32 @@
|
||||
<body>
|
||||
<cave>
|
||||
<non_public>False</non_public>
|
||||
<caveslug>1623-2014-NEO-01</caveslug>
|
||||
<official_name>Ferkerhöhle</official_name>
|
||||
<caveslug>1623-273</caveslug>
|
||||
<official_name>Ferkelhöhle</official_name>
|
||||
<area>1623</area>
|
||||
<kataster_code></kataster_code>
|
||||
<kataster_number></kataster_number>
|
||||
<unofficial_number>2014-NEO-01</unofficial_number>
|
||||
|
||||
<entrance>
|
||||
<entranceslug>1623-2014-NEO-01</entranceslug>
|
||||
<entranceslug>1623-273</entranceslug>
|
||||
<letter></letter>
|
||||
</entrance>
|
||||
|
||||
<explorers>CUCC 2014 (Elaine Oliver, David Walker)</explorers>
|
||||
<underground_description>Crawling passage for 11m</underground_description>
|
||||
<underground_description><p>Crawling passage for 11m</p><p>(Piglet Cave in English)</p></underground_description>
|
||||
<equipment></equipment>
|
||||
<references></references>
|
||||
<survey><a href="/1623/2014-neo-01/2014-neo-01-highres.png"><img src="/1623/2014-neo-01/2014-neo-01-lowres.png"/></a></survey>
|
||||
<survey><a href="/1623/273/273-highres.png"><img src="/1623/273/273-lowres.png"/></a></survey>
|
||||
<kataster_status>Not submitted</kataster_status>
|
||||
<underground_centre_line>In dataset</underground_centre_line>
|
||||
<notes></notes>
|
||||
<length></length>
|
||||
<depth></depth>
|
||||
<extent></extent>
|
||||
<survex_file>2014-neo-01/2014-neo-01.svx</survex_file>
|
||||
<survex_file>273/273.svx</survex_file>
|
||||
<description_file></description_file>
|
||||
<url>1623/2014_NEO_01/2014_NEO_01.html</url>
|
||||
<url>1623/273/index.html</url>
|
||||
</cave>
|
||||
</body>
|
||||
</html>
|
@ -8,7 +8,7 @@
|
||||
<body>
|
||||
<entrance>
|
||||
<non_public>False</non_public>
|
||||
<slug>1623-1987-02</slug>
|
||||
<slug>1623-267</slug>
|
||||
<name></name>
|
||||
<entrance_description></entrance_description>
|
||||
<explorers></explorers>
|
||||
@ -16,7 +16,7 @@
|
||||
<location_description>100m up the 204 path from <a href="../1623/157/157.html">157</a> and 0/5, turn right and drop into small valley leading to entrance. This entrance was found by CUCC in 1987, but was not given a number because a carbide pig was found at the entrance and taken to be evidence of previous or ongoing exploration. The entrance was then lost for many years (except briefly when Brian Outram refound it and took the carbide pig, without realising its significance). At one point it was postulated to be the same cave as <a href="../1623/2006-06/2006-06.html">Bogenhöhle</a>, but was finally relocated in 2007.</location_description>
|
||||
<approach></approach>
|
||||
<underground_description></underground_description>
|
||||
<photo><table class="imgtable"><tr><td><a href="../../expofiles/photos/2007/Olly/IMG_2817.JPG"><img src="1987-02/IMG_2817_small.jpg" /></a></td><td><a href="../../expofiles/photos/2015/OllyJenny/jenny-pointing-at-the-1987-02-tag-bolt_20077726964_o.jpg"><img src="1987-02/jenny-pointing-at-the-1987-02-tag-bolt_20077726964_small.jpg" /></a></td></tr><tr class="caption"><td>Looking up valley towards entrance (halfway up on right).</td><td>Jenny pointing at tag bolt.</td></tr><tr><td>Photo © Olly Betts 2007</td><td>Photo © Olly Betts 2015</td></tr></table></photo>
|
||||
<photo><table class="imgtable"><tr><td><a href="../../expofiles/photos/2007/Olly/IMG_2817.JPG"><img src="267/IMG_2817_small.jpg" /></a></td><td><a href="../../expofiles/photos/2015/OllyJenny/jenny-pointing-at-the-1987-02-tag-bolt_20077726964_o.jpg"><img src="267/jenny-pointing-at-the-1987-02-tag-bolt_20077726964_small.jpg" /></a></td></tr><tr class="caption"><td>Looking up valley towards entrance (halfway up on right).</td><td>Jenny pointing at tag bolt.</td></tr><tr><td>Photo © Olly Betts 2007</td><td>Photo © Olly Betts 2015</td></tr></table></photo>
|
||||
<!-- marking options: P = Paint,
|
||||
P? = Paint (?),
|
||||
T = Tag,
|
||||
@ -37,7 +37,7 @@
|
||||
<alt></alt>
|
||||
<northing></northing>
|
||||
<easting></easting>
|
||||
<tag_station>p1987-02</tag_station>
|
||||
<tag_station>p267</tag_station>
|
||||
<exact_station></exact_station>
|
||||
<other_station></other_station>
|
||||
<other_description></other_description>
|
@ -8,15 +8,15 @@
|
||||
<body>
|
||||
<entrance>
|
||||
<non_public>False</non_public>
|
||||
<slug>1623-2014-NEO-01</slug>
|
||||
<slug>1623-273</slug>
|
||||
<name></name>
|
||||
<entrance_description>Side of cliff, floor to knee height entrance, some stone pillars in entrance.</entrance_description>
|
||||
<explorers>CUCC 2014 (Elaine Oliver, David Walker)</explorers>
|
||||
<map_description></map_description>
|
||||
<location_description>On cairned route from Tunnocks</location_description>
|
||||
<approach></approach>
|
||||
<location_description></location_description>
|
||||
<approach>On cairned route from Stone Bivi to Tunnocks</approach>
|
||||
<underground_description></underground_description>
|
||||
<photo></photo>
|
||||
<photo><div><img src="ent.jpeg"><br/>Entrance to 273</div><div><img src="explorers.jpeg"<br/>Elaine Oliver and David Walker during exploration</div></photo>
|
||||
<!-- marking options: P = Paint,
|
||||
P? = Paint (?),
|
||||
T = Tag,
|
||||
@ -27,7 +27,7 @@
|
||||
U = Unmarked,
|
||||
? = Unknown" -->
|
||||
<marking>T</marking>
|
||||
<marking_comment></marking_comment>
|
||||
<marking_comment>Tagged "2014 NEO 01" in 2014</marking_comment>
|
||||
<!-- findability options: ? = To be confirmed ...,
|
||||
S = Surveyed,
|
||||
L = Lost,
|
||||
@ -35,9 +35,9 @@
|
||||
<findability>S</findability>
|
||||
<findability_description>GPS location ('20m accuracy')</findability_description>
|
||||
<alt>1766</alt>
|
||||
<northing>36445.20</northing>
|
||||
<easting>84353.38</easting>
|
||||
<tag_station>t2014-neo-01</tag_station>
|
||||
<northing></northing>
|
||||
<easting></easting>
|
||||
<tag_station>t273</tag_station>
|
||||
<exact_station></exact_station>
|
||||
<other_station></other_station>
|
||||
<other_description></other_description>
|
@ -1,4 +1,4 @@
|
||||
Name,,Guest,VfHO rmember,Mugshot,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016
|
||||
Name,,Guest,VfHO member,Mugshot,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016
|
||||
Hugh Adams,Adams,,,,,,,,,,,,,,,,,,,,,1,,1,,,,,,,,,,,,,,,,,,,,,
|
||||
Rob Adams,Adams,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,,1,,
|
||||
Michael Allen,Allen,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,
|
||||
@ -7,16 +7,16 @@ Gunilla Andrée,Andrée,,,l/andree.htm,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,
|
||||
Gavin Andrews,Andrews,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||
Fernando (Fer) Arbaquero,Arbaquero,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,
|
||||
"<span lang=""sv"">Jan Arnerdal</span>",Arnerdal,1,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||
Andrew Atkinson (Andy A),Atkinson,,1,l/andya.htm,,,,,,,,,,,,,,,,1,1,,1,1,1,1,,1,1,,,,,1,,1,,1,1,1,1,1,1,1,1
|
||||
Andrew Atkinson (Andy A),Atkinson,,1,l/andya.htm,,,,,,,,,,,,,,,,1,1,,1,1,1,1,,1,1,,,,,1,,1,,1,1,1,1,1,1,,1
|
||||
Joe Bache,Bache,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,
|
||||
Ken Baker,Baker,1,,i/kenb.jpg,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||
Philip Balister,Balister,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-1,
|
||||
Jon Barber,Barber,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,
|
||||
Rich Barker,Barker,1,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||
Mike Baslington,Baslington,1,,i/mike_baslington.jpg,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,
|
||||
Mike Baslington,Baslington,1,,i/mike_baslington.jpg,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,
|
||||
Phil Batten,Batten,1,,,,,,,,,,,,,,,,,,,,,,,1,1,,,,,,,,,,,,,,,,,,,
|
||||
Steve Bellhouse,Bellhouse,,,i/steveb.jpg,,,,,,,,,,,,,,,,,,,1,1,1,,1,,,,,,,,,,,,,,,,,,
|
||||
Katey Bender,Bender,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1
|
||||
Katey Bender,Bender,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,1
|
||||
Stuart Bennett,Bennett,,,l/stuartb.htm,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,,-1,,,,,1,,,,
|
||||
Matthew Bent,Bent,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,
|
||||
Morven Beranek-Stanley,Beranek-Stanley,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,
|
||||
@ -88,7 +88,7 @@ Roshni Gohil,Gohil,,,i/roshni.jpg,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1
|
||||
Judith Greaves,Greaves,,,i/judith.jpg,,,,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||
Hilary Greaves (Hils),Greaves,1,,i/hilary_greaves.jpg,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,
|
||||
Martin Green,Green,,,i/marting.jpg,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,1,1,1,,1,,1,1,1,1,1,1,1,1
|
||||
Ashley Gregg,Gregg,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1
|
||||
Ashley Gregg,Gregg,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1
|
||||
Naomi Griffiths,Griffiths,,,i/naomi.jpg,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||
Julian Griffiths,Griffiths,,,,,1,1,1,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||
Julian Haines,Haines,,1,i/haines.jpg,,,,,,,,,,,,,,,,1,1,1,1,1,1,1,1,1,,,,1,,,,,,,,,,,,,
|
||||
@ -137,7 +137,7 @@ Andy Kuszyk,Kuszyk,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,
|
||||
Pete Lancaster,Lancaster,,,l/planc.htm,,,,,,1,1,1,1,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||
Mary Lane,Lane,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,
|
||||
Fran Lane,Lane,,,i/fran.jpg,,,,,,,,,,,,,,,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,
|
||||
Becka Lawson,Lawson,,,l/beckal.htm,,,,,,,,,,,,1,1,1,,,,,,,1,1,,1,1,1,,1,1,1,,1,1,1,1,1,1,1,1,1,1
|
||||
Becka Lawson,Lawson,,,l/beckal.htm,,,,,,,,,,,,1,1,1,,,,,,,1,1,,1,1,1,,1,1,1,,1,1,1,1,1,1,1,1,,1
|
||||
Carole Leach,Leach,,,,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||
Jont Leach,Leach,,,i/jont_leach.jpg,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||
Rod Leach,Leach,,,,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||
@ -164,7 +164,7 @@ Mike Martin,Martin,,,i/mikem.jpg,,,,,,1,,,1,1,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||
Gwyneth Martin,Martin,,,,,,,,,,,,,,,,-1,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||
Pat Martin,Martin,1,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||
Amy Matthews,Matthews,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,
|
||||
Sandeep Mavadia (Deep),Mavadia,1,,l/sandeep.htm,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,
|
||||
Sandeep Mavadia (Deep),Mavadia,1,,l/sandeep.htm,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,
|
||||
Heather McAdam,McAdam,1,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,
|
||||
Mick McHale,McHale,1,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||
Mark McLean,McLean,,,i/markm.jpg,,,,,,,,,,,,,,,,1,1,,,,1,,,,,,,,,,,,,,,,,,,,
|
||||
@ -193,7 +193,7 @@ Sarah Parker,Parker,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,
|
||||
Tim Parker,Parker,,,i/timp.jpg,,,,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||
Rob Parker,Parker,1,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||
John Parrington,Parrington,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||
Ian Peachey,Peachey,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1
|
||||
Ian Peachey,Peachey,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1
|
||||
John Pegler,Pegler,,,i/johnp.jpg,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,
|
||||
Richie Perotton,Perotton,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,
|
||||
Steve Perry,Perry,,,,,1,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||
@ -219,9 +219,9 @@ Jeremy Rodgers,Rodgers,,,i/jjr.jpg,,,,,,,,,,,,,1,1,1,,,,,,1,,,,,,,,,,,,,,,,,,,,
|
||||
Tony Rooke,Rooke,,,l/tonyr.htm,,,,,,,,,,,,,,,1,1,1,,,,1,1,,1,1,1,1,1,1,1,,-1,1,1,,,,,,,
|
||||
Martin Sabry,Sabry,1,,i/msabry.jpg,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,
|
||||
Hugh Salter,Salter,,,l/hughs.htm,,,,,,,,,,,,,1,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||
Haydon Saunders,Saunders,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1
|
||||
Michael Sargent,Sargent,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1
|
||||
Phil Sargent,Sargent,,,i/pms.jpg,,,,,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||
Haydon Saunders,Saunders,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1
|
||||
Tanya Savage,Savage,,,l/tanya.htm,,,,,,,,,,,,,,1,1,1,,,,,,,,1,,,,,,,,,,,,,,,,,
|
||||
Mark Scott,Scott,,,i/mark_scott.jpg,,,,,,,,,,,,,,,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,
|
||||
Chris Sharman,Sharman,,,i/chriss.jpg,,,,,,,,,,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||
@ -230,9 +230,9 @@ Ben Shaw,Shaw,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,
|
||||
Mike Shearme,Shearme,,,i/mikes.png,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||
Wayne Sheldon,Sheldon,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,
|
||||
Julian Shilton,Shilton,,,i/julian_shilton.jpg,,,,,,,,,,,,,,,,1,1,1,,,,,,,,,,,,,,,,,,,,,,,
|
||||
Mark Shinwell,Shinwell,,,l/marks.html,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,1,1,-1,1,1,1,1,,1,1,-1,-1,1,,
|
||||
Mark Shinwell,Shinwell,,,i/marks.jpg,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,1,1,-1,1,1,1,1,,1,1,-1,-1,1,,1
|
||||
Martin Sluka,Sluka,1,,i/martin_sluka.jpg,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,
|
||||
Alice Smith,Smith,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1
|
||||
Alice Smith,Smith,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1
|
||||
Caroline Smith,Smith,,,,,,,,,,,,,-1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||
Chris Smith,Smith,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,,,,,
|
||||
Elliot Smith,Smith,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1
|
||||
@ -254,7 +254,7 @@ Mike Thomas,Thomas,,,l/rmt.htm,,,,,,,1,1,1,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||
Mick Thompson,Thompson,1,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,,,,,,,,,,,,,,,
|
||||
Nick Thorne,Thorne,,,l/nickt.htm,,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||
Julian Todd,Todd,,,l/jtodd.htm,,,,,,,,,,,,,,1,1,1,,1,,,1,,,1,1,,,1,1,,,1,1,1,1,1,1,1,-1,1,1
|
||||
Phil Townsend,Townsend,,,l/philt.htm,,,,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1
|
||||
Phil Townsend,Townsend,,,l/philt.htm,,,,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||
Frank Tully,Tully,1,,i/frankt.jpg,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,1,,1,1,1,1,,1,,,1,1
|
||||
Rachel Turnbull,Turnbull,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,
|
||||
Francis Turner,Turner,,,i/francis_turner.jpg,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||
@ -293,4 +293,4 @@ Robert Winkler,Winkler,1,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,
|
||||
Wookey (Wook),Wookey,,1,l/wookey.htm,,,,,,,,,,,,,1,1,1,1,1,1,,1,1,,1,1,1,,1,,,1,,1,,1,,1,1,-1,1,1,1
|
||||
Ben Wright,Wright,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,
|
||||
Aiora Zabala,Zabala,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,
|
||||
Sarah Livia Zerbes,Zerbes,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-1,-1,,,1,
|
||||
Sarah Livia Zerbes,Zerbes,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-1,-1,,,,
|
||||
|
|
7
pubs.htm
@ -552,6 +552,13 @@ href="years/2015/" name="pubs2015">Austria 2015</a></h4>
|
||||
</a>
|
||||
</p>
|
||||
<hr />
|
||||
<h4>Pre-Expo statements and Post-Expo reports of CUCC <a id="pubs2016"
|
||||
href="years/2016/" name="pubs2016">Austria 2016</a></h4>
|
||||
<p>
|
||||
<a href="http://caverescue.eu/caving-team-got-off-lightly-besides-heavy-alarm-time-overflow-austria/">European rescue report</a>
|
||||
</a>
|
||||
</p>
|
||||
<hr />
|
||||
<!-- LINKS -->
|
||||
<ul id="links">
|
||||
<li>Back to <a href="./">Expedition Home page</a></li>
|
||||
|
@ -19,7 +19,8 @@ three years, but it is rather incomplete.</p>
|
||||
<li>2002 Expedition info:
|
||||
<ul>
|
||||
<li>Expo <a href="goals.htm">mission statement</a></li>
|
||||
<li>Expo <a href="todo.html">jobs/todo list</a><br>
|
||||
<li>Expo <a href="todo.html">jobs/todo list</a></li>
|
||||
<li>Expo <a href="logbook.html">Logbook</a></li>
|
||||
<br>
|
||||
|
||||
<hr />
|
||||
|
@ -101,7 +101,7 @@ away.</li>
|
||||
<li><a href="../../1623/157.htm">Pirat Schacht (157)</a>.
|
||||
Also resolve whether the cave just up slope from 157 is
|
||||
<a href="../../1623/bogen.html">Bogenhöhle (2001-MS-01)</a>
|
||||
or not. <a href="../../1623/1987-02.html">1987-02</a> is also very
|
||||
or not. <a href="../../1623/267.html">1987-02</a> is also very
|
||||
close and could be the same cave too! 157 lies right on the 204 path (or a
|
||||
variant of it) so this could be looked at by team 204 instead.</li>
|
||||
|
||||
|
@ -18,7 +18,8 @@
|
||||
<ul>
|
||||
<li><a href="required_first_aid.html">First aid items needed</a>
|
||||
<li><a href="/expofiles/surveyscans/2015/">Survey scans</a></li>
|
||||
<li><a href="stuffleftattopcamp.html">stuff left at top camp</a></li>
|
||||
<li><a href="stuffleftattopcamp.html">Stuff left at top camp</a></li>
|
||||
<li><a href="stuffleftatbasecamp.html">Stuff left at base camp</a></li>
|
||||
<li><a href="biertent.html">Bier tent survey</a></li>
|
||||
<li><a href="logbook.html">Logbook</a> (incomplete)</li>
|
||||
<li><a href="stuffbought.html">Things bought 2015</a></li>
|
||||
|
15
years/2015/stuffleftatbasecamp.html
Normal file
@ -0,0 +1,15 @@
|
||||
<html><head><title>Stuff left at base camp</title></head><body>
|
||||
<h1>Stuff left at base camp</h1>
|
||||
<h2>Food</h2>
|
||||
<ul>
|
||||
<li>337 noodles</li>
|
||||
<li>13kg couscous</li>
|
||||
<li>40 pesto</li>
|
||||
<li>114 curries</li>
|
||||
<li>89 cup-a-soups</li>
|
||||
<li>4kg hot chocolate</li>
|
||||
<li>10.5kg the right custard</li>
|
||||
<li>aprox 5kg the wrong custard</li>
|
||||
</ul>
|
||||
|
||||
</body></html>
|
@ -19,6 +19,7 @@
|
||||
<li><a href="stuffleftatbasecamp.html">Stuff left at base camp</a></li>
|
||||
<li><a href="thingsfor2017.html">Things needed for 2017</a></li>
|
||||
<li><a href="logbook.html">Logbook</a> (incomplete)</li>
|
||||
<li><a href="rescue_debrief.html">Rescue Debrief 2016</a></li>
|
||||
</ul>
|
||||
<hr />
|
||||
<!-- LINKS -->
|
||||
|
172
years/2016/rescue_debrief.html
Normal file
@ -0,0 +1,172 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>2016_Rescue_Debrief</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
|
||||
<meta name="generator" content="pdftohtml 0.36"/>
|
||||
<meta name="author" content="Fleur Loveridge"/>
|
||||
<meta name="date" content="2016-07-14T18:09:26+00:00"/>
|
||||
</head>
|
||||
<body>
|
||||
<h1>CUCC Expo Rescue Debrief – 2016</h1>
|
||||
<hr/>
|
||||
|
||||
<h3>High Level Summary:</h3>
|
||||
<ol>
|
||||
<li>There needs to be better transfer of knowledge of known hazards, such as
|
||||
pitches susceptible to flooding. Installation of safety dumps (bothy, stove
|
||||
etc) should be part of the rigging process. However, information needs to be
|
||||
readily available in addition to on rigging guides, ideally in cave
|
||||
descriptions at base camp and at top camp.</li>
|
||||
<li>All caving parties also to carry their own emergency equipment, to include a
|
||||
group bothy bag, personal survival bags and personal spare clothes as a
|
||||
minimum.</li>
|
||||
<li>Need to get smarter about obtaining and using weather forecast information
|
||||
prior to planning trips.</li>
|
||||
<li>Setting callouts: better to not get out too late in the day (night) if possible;
|
||||
avoid extreme slack in callout.</li>
|
||||
<li>If do have a long callout, e.g. due to a deep trip, then self-sufficiency is
|
||||
important. Three people on deep caving trips means that someone can come out if there is an accident.</li>
|
||||
<li>Responding to missed callouts: factor in the depth of the missing party, the
|
||||
weather, the resources required and those available.</li>
|
||||
<li>In the event of a rescue appoint an experienced leader and follow their
|
||||
instructions (unless those instructions break down). Write everything down, including timings.</li>
|
||||
</ol>
|
||||
|
||||
<hr/>
|
||||
<h3>Action Summary:</h3>
|
||||
|
||||
<ol>
|
||||
<li>Julian to research best sources of weather forecast information. </li>
|
||||
<li>Chris to investigate the purchase of a cave radio system</li>
|
||||
<li>Expo to purchase a pool of bothy bags.</li>
|
||||
<li>Review contents and labelling of first response bag</li>
|
||||
<li>Invest in second phone at top camp which can be used at cave entrances
|
||||
in the case of a rescue.</li>
|
||||
<li>Documentation pack needs preparing about how to contact Austrian
|
||||
rescue, and also cave information required in event of a rescue.</li>
|
||||
</ol>
|
||||
<hr/>
|
||||
|
||||
<h3>Those Present:</h3>
|
||||
<p>Mark, Anthony, Andrew, Fleur, Pete, Frank, Ian, Katey, Jenny, Olly, George, Luke, Ash, Michael, Roshni, Hayden, Julian, Becka, Aiden, Elaine, Sionad, Martin, Chris, Rob, Nathan.</p>
|
||||
<h3>Preamble:</h3>
|
||||
<p>There have been a few callouts of varying severity on the expedition this year. The purpose of the meeting is to review these incidents and discern what can be done better in the future. Each incident is summarised, followed by a discussion of the responses and what can be done better in the future. The focus is on learning, not blame. It is a collective issue, involving many of those present, bothunderground and on the surface. Generally the response was good, but there arealways lessons that can be learnt.</p>
|
||||
<h4>Incident 1:</h4>
|
||||
<p>Roshni and David were flooded in Balcony. The weather was generally good that day; the forecast was not inclement. However, a storm broke suddenly and earlier than expected. The cavers were caught underground. Roshni tried to ascend the entrance pitch, but couldn’t get up and came back down. At this pointin the expedition there was no emergency equipment in the cave so the pair survived on their own personal equipment. There was a quick response to the callout. One person descended with the grab bag and found that Roshni was developing hypothermia. However, the situation was quickly sorted out and all cavers were able to exit the cave, with assistance as required.
|
||||
</p>
|
||||
<h4>Incident 2:</h4>
|
||||
<p>Mark, Anthony and Luke were marooned at camp in Tunnocks due to the rope outof Kraken getting pulled up by the previous exiting party. They spent an extra night underground, while a rescue was instigated. The rescue was also escalated to include the Austrian Rescue, which involved a helicopter and eight rescuers at the car park. The CUCC response was to send in two runner teams. The second team started to take in extra rigging gear. The third response team were just preparing to go in when the message was received that the party were found and all was ok. Everyone was out by the end of the afternoon. During the afternoon there had been some difficulty finding relevant documentation about the cave (description etc) to provide to the Austrians.
|
||||
</p>
|
||||
<h4>Incident 3:</h4>
|
||||
<p>Merely a minor administrative problem when the callout for Olly & Jenny was not cancelled properly in the base camp callout book. This lead to a preliminary investigation of the situation being instigated by the top camp team, however it soon became clear that the cavers were out. This was a communications failure rather than a serious incident.
|
||||
</p>
|
||||
<h4>Incident 4:</h4>
|
||||
<p>Incidents 4, 5 & 6 all related to the same storm causing cavers to be trapped underground by flooding on pitches. This was caused by very heavy rain at 7pm followed by continued rain over night. In incident 4, Elliot, Alice, Nathan & Luke got flooded into Balcony and had to sit out the elevated water conditions for 2.5 hours until water levels dropped and they exited around 11pm, one hour after their callout. They were able to make use of the bothy bag and stove left underground after the previous incident. Despite the callout being missed a rescue was not initiated due to the surface conditions and the cavers exited under their own steam.
|
||||
</p>
|
||||
<h4>Incident 5:</h4>
|
||||
<p>The camping party in Tunnocks (Chris, Rob, Ian & Katey) were also flooded in the same night due to a flood pulse on Procrastination pitch. Rob was prussicking up to the first rebelay on the pitch when the flood pulse came through and thereforehe came back down. This swift action, facilitated by having his descender on in case, would have prevented the situation from being much worse. The team spent an enforced night underground sharing a bothy bag near to the base of Procrastination. Their callout the next morning was missed and runners were sent down to the top of Procrastination to check. The runners found the missing cavers exiting near the base of the entrance series.
|
||||
</p>
|
||||
<h4>Incident 6: </h4>
|
||||
<p>The final incident was also in Tunnocks, where the Champagne on Ice party (Becka, George, Nat) were trapped by floodwater for five hours. They did not miss their callout, which was the next morning, but were delayed and spent theirtime sharing a bothy bag. Previously, it was thought this route did not flood so badly, but clearly conditions were sufficiently extreme.</p>
|
||||
</body>
|
||||
<h3>Discussion:</h3>
|
||||
<p>While these are not the first incidents CUCC have experienced in Austria it does
|
||||
represent the greatest density of incidents in one year. There were no serious
|
||||
injuries and all the incidents were dealt with satisfactorily, but lessons can be
|
||||
learnt.</p>
|
||||
<ul>
|
||||
<li>Leaving callouts at base camp can be problematic if phone not picked up and
|
||||
need to send a text or leave an answer phone message. Need to be mindful of
|
||||
proper two way communications in setting up a callout.</li>
|
||||
<li>Nicola Radios were tried this year to aid surface to camp communications
|
||||
(which would have helped in the two camp callout cases). While they worked on
|
||||
the surface they did not work for top camp to camp Kraken. More testing could
|
||||
have been done before going underground. However, these are the old Nicola I
|
||||
system and it may have been at the limit of their capability, especially if
|
||||
geological transmission conditions were not ideal.</li>
|
||||
<li>Important to consider if rigging could be improved, or new routes developed,
|
||||
to avoid known flood flashpoints (e.g. as was done with the Usual Suspects
|
||||
route). It was concluded that the Procrastination route could not be
|
||||
substantially improved.</li>
|
||||
<li>Issue with the transfer of knowledge about known flood flash points. E.g. the
|
||||
bothy at the base of Balcony entrance was not installed straight away when
|
||||
the cave was first rigged. A better system is needed for the transfer of
|
||||
such information. It was agreed that the rigging guides should contain the
|
||||
hazard information so that when caves are rigging emergency equipment can
|
||||
also beinstalled. It would be good to also put this information in cave
|
||||
descriptions and to make sure laminated descriptions are at top camp as well
|
||||
as readily accessible on the computing system at base camp.</li>
|
||||
<li>In addition to emergency equipment in situ at known flashpoints each party
|
||||
should be carrying a bothy bag as a minimum for their own
|
||||
self-sufficiency. Individuals should also be carrying a personal survival bag
|
||||
and spare warm layers. This will provide resources in case of issues with
|
||||
unknown hazards during exploration.</li>
|
||||
<li>Expo should purchase a stock of bothy bags rather than relying on individuals
|
||||
to purchase this equipment. They will either need to be stored in Austria,
|
||||
or made sure to come out at the start of expedition.</li>
|
||||
<li>Remember that parties can get separated by flood pulses.</li>
|
||||
<li>Need to make better use of weather forecast information. Possible to have a
|
||||
top camp smart phone to gather information and/or to phone up bulletins from
|
||||
base camp. Julian to research best source of information for weather forecast
|
||||
data.</li>
|
||||
<li>Consideration of likely time for thunderstorms (late afternoon, early
|
||||
evening) suggests that timing of trips can be improved. The “British model”
|
||||
of going caving later in the afternoon brings further risks due to missing
|
||||
dinner and coming out more fatigued in the small hours. The “Swiss model” or
|
||||
alpine start may be better to encourage trips to exit caves before the
|
||||
thunderstorm window.</li>
|
||||
<li>For day trips it is also possible to minimise the thunderstorm risk by using
|
||||
the weather forecasting. For underground camping the risks could be reduced
|
||||
with functioning radios. Chris to research costs and options for expo
|
||||
obtaininga cave radio system that would work in Austria, possibly Cave Link
|
||||
which is most likely in use by the Austrian rescue already.</li>
|
||||
<li>Setting callouts: leaving too much contingency time leads to extra risks if
|
||||
an injury occurs earlier in a trip; leaving too little contingency can cause
|
||||
unnecessary callouts if cavers are “just” slow. Need to plan trips carefully
|
||||
and use judgement.</li>
|
||||
<li>Responding to callouts: be careful not to assume that cavers are flooded in
|
||||
and therefore no action is required in case this masks other problems.
|
||||
Judgements on actions when a callout is missed need to factor in: depth of
|
||||
team (deeper trips take longer to reach by runners, more actions may be
|
||||
needed sooner in case of worst case), weather condition, safety of rescue
|
||||
teams.</li>
|
||||
<li>Escalation to Austrian rescue: more likely to be required in cases of deeper
|
||||
incidents due to time lag of obtaining information from underground. This
|
||||
year “standby” included a helicopter and some cavers as the decision was
|
||||
taken to put resources in place in case of need deep underground with
|
||||
extended period of bad weather on the way. In the past “standby” has meant no
|
||||
action.</li>
|
||||
<li>Communications with Austrian rescue: contact was made directly via Robert
|
||||
Seebacher. Other numbers that expo holds are out of date and need
|
||||
updating. Robert is happy to make sure we have the correct numbers every
|
||||
year. At the start of each expo need to prepare a pack of emergency numbers,
|
||||
plus descriptions, rigging and hazard information to be available in case of
|
||||
need.</li>
|
||||
<li>Consider having minimum of three people on caving trips, especially as if the
|
||||
trip is deep. This means that someone can come out if there is an
|
||||
accident.</li>
|
||||
<li>When should you prussick up a wet pitch? More hazardous than UK because water
|
||||
temperature lower and potential for loose rocks being washed in by
|
||||
floodwater. Generally better to wait for conditions to improve, but must
|
||||
also use judgement – is forecast due to be worse later? Can you monitor the
|
||||
situation to detect rising or falling water levels? Don’t take up tackle bags
|
||||
that can fill with water (or if you take them, carry them upside
|
||||
down). Ideally send an experienced caver first and leave another experienced
|
||||
person til last. Leave the party’s bothy bag at the back in case people are
|
||||
separated.</li>
|
||||
<li>Need to review the contents of the first response kit and also its labelling,
|
||||
e.g. food in mouse proof tubs.</li>
|
||||
<li>If a rescue happens then there needs to be a defined leader put in charge
|
||||
straight away. Follow the instructions of the leader (recommend and discuss,
|
||||
but don’t argue) unless you reach a point when those instructions break down.
|
||||
Always write down everything that happens and when it happens.</li>
|
||||
<li>Should someone experienced always stay on the surface?</li>
|
||||
<li>Need to investigate top camp to cave communications in the event of a rescue
|
||||
and make sure there are always two way comms. Second expo phone at top camp
|
||||
could be used for this purpose.</li>
|
||||
</ul>
|
||||
<p>F. Loveridge, 14th July 2016</p>
|
||||
<hr/>
|
||||
</body>
|
||||
</html>
|