diff --git a/1623/264/l/264_approach.html b/1623/264/l/264_approach.html index 0a5e16cd5..1cdfc2e0c 100644 --- a/1623/264/l/264_approach.html +++ b/1623/264/l/264_approach.html @@ -3,7 +3,7 @@ -Balkonhoehleöhle: 2014 Fluer and Pete +Balkonhoehleöhle: 2014 Fleur and Pete diff --git a/documents/therionprotractors/Makefile b/documents/therionprotractors/Makefile index 7816ca861..3baa96f5e 100644 --- a/documents/therionprotractors/Makefile +++ b/documents/therionprotractors/Makefile @@ -1,24 +1,32 @@ -all: therionpage.pdf therionpage500.pdf +all: therionpage250.pdf therionpage400.pdf therionpage500.pdf #If using windows uncomment this #LATEXTOOL=pdflatex.exe #If using linux or macos(?) uncomment this LATEXTOOL=pdflatex -therionpage.pdf: therionpage.tex therionprotractor.tex - $(LATEXTOOL) therionpage.tex +therionpage250.pdf: therionpage250.tex therionprotractor250.tex + $(LATEXTOOL) therionpage250.tex + +therionpage400.pdf: therionpage400.tex therionprotractor400.tex + $(LATEXTOOL) therionpage400.tex therionpage500.pdf: therionpage500.tex therionprotractor500.tex $(LATEXTOOL) therionpage500.tex -cleanpage: - rm -f therionpage.aux - rm -f therionpage.log - rm -f therionpage.pdf +cleanpage250: + rm -f therionpage250.aux + rm -f therionpage250.log + rm -f therionpage250.pdf + +cleanpage400: + rm -f therionpage400.aux + rm -f therionpage400.log + rm -f therionpage400.pdf cleanpage500: rm -f therionpage500.aux rm -f therionpage500.log rm -f therionpage500.pdf -clean: cleanpage cleanpage500 +clean: cleanpage250 cleanpage400 cleanpage500 diff --git a/documents/therionprotractors/therionpage.tex b/documents/therionprotractors/therionpage250.tex similarity index 89% rename from documents/therionprotractors/therionpage.tex rename to documents/therionprotractors/therionpage250.tex index 21facdf85..184e06011 100644 --- a/documents/therionprotractors/therionpage.tex +++ b/documents/therionprotractors/therionpage250.tex @@ -18,10 +18,10 @@ { \foreach \yval in {1,2,...,6} { - \node at (\xval*\xdist,\yval*\ydist) {\input{therionprotractor.tex}}; + \node at (\xval*\xdist,\yval*\ydist) {\input{therionprotractor250.tex}}; } } \end{tikzpicture} \end{figure} -\end{document} \ No newline at end of file +\end{document} diff --git a/documents/therionprotractors/therionpage400.tex b/documents/therionprotractors/therionpage400.tex new file mode 100644 index 000000000..79e48432b --- /dev/null +++ b/documents/therionprotractors/therionpage400.tex @@ -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} diff --git a/documents/therionprotractors/therionprotractor.tex b/documents/therionprotractors/therionprotractor250.tex similarity index 100% rename from documents/therionprotractors/therionprotractor.tex rename to documents/therionprotractors/therionprotractor250.tex diff --git a/documents/therionprotractors/therionprotractor400.tex b/documents/therionprotractors/therionprotractor400.tex new file mode 100644 index 000000000..19ac98cfd --- /dev/null +++ b/documents/therionprotractors/therionprotractor400.tex @@ -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} diff --git a/fixaid.htm b/fixaid.htm index 241238de4..020dab270 100644 --- a/fixaid.htm +++ b/fixaid.htm @@ -6,20 +6,6 @@ -
-Photos -Rigging - Glossary - Expo - Topics - Index - CUCC

Fixed aids in CUCC caves

@@ -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.

-

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 static ropes are not subject to -disturbance causing abrasion (eg. by flowing water) or rockfall, they -probably deteriorate a lot more slowly in the cave than in the tackle -store. (This may not be true of dynamic ropes).

+

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 static ropes are not subject to disturbance causing abrasion +(eg. by flowing water) or rockfall, they probably deteriorate +a lot 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).

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!


-

Fixed aids in Gemsehöhle

+

Fixed aids in Tunnockschacht

+ + + + + + +

Fixed aids in Gemsehöhle

+ +
locationlengthdiameterrope vintage year left riggedhangersother info
kraken pitch?100m?10mm?201410+
inferno pitches?120m?9mm?2014113 slings, 2 crabs
+ + + + +

Fixed aids in Steinbrückenhöhle

diff --git a/infodx.htm b/infodx.htm index 0b9eed0b5..c836a451c 100644 --- a/infodx.htm +++ b/infodx.htm @@ -25,19 +25,17 @@
  • Recent years:
  • locationlengthdiameterrope vintageyear left riggedhangersother info
    Climb at the NE end of China?20m?10mm?20132
    - - - - + +
    2011|2012| 2013 | 2014 | 2015|2016
    -
  • Coming year: 2016
  • +
  • Coming year: 2017
  • Area Description

    diff --git a/noinfo/cave_data/1623-1996WK11.html b/noinfo/cave_data/1623-1996WK11.html index 0112aac00..2d5deae12 100644 --- a/noinfo/cave_data/1623-1996WK11.html +++ b/noinfo/cave_data/1623-1996WK11.html @@ -31,11 +31,11 @@

    Plan on centreline of 96Wk11 25-30m handline, Long sling -Logbook 2015 +Logbook 2015 1996 Sketch plan and elv in NotKH book 1999- p16
    Proper survey 2015
    -2015#69 +2015#69 34m 25m 20m diff --git a/years/2015/index.html b/years/2015/index.html index 2509af6a8..de7ed94cc 100644 --- a/years/2015/index.html +++ b/years/2015/index.html @@ -18,7 +18,8 @@


    diff --git a/years/2016/rescue_debrief.html b/years/2016/rescue_debrief.html new file mode 100644 index 000000000..9b8206d9e --- /dev/null +++ b/years/2016/rescue_debrief.html @@ -0,0 +1,172 @@ + + + +2016_Rescue_Debrief + + + + + + +

    CUCC Expo Rescue Debrief – 2016

    +
    + +

    High Level Summary:

    +
      +
    1. 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.
    2. +
    3. 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.
    4. +
    5. Need to get smarter about obtaining and using weather forecast information + prior to planning trips.
    6. +
    7. Setting callouts: better to not get out too late in the day (night) if possible; + avoid extreme slack in callout.
    8. +
    9. 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.
    10. +
    11. Responding to missed callouts: factor in the depth of the missing party, the + weather, the resources required and those available.
    12. +
    13. In the event of a rescue appoint an experienced leader and follow their + instructions (unless those instructions break down). Write everything down, including timings.
    14. +
    + +
    +

    Action Summary:

    + +
      +
    1. Julian to research best sources of weather forecast information.
    2. +
    3. Chris to investigate the purchase of a cave radio system
    4. +
    5. Expo to purchase a pool of bothy bags.
    6. +
    7. Review contents and labelling of first response bag
    8. +
    9. Invest in second phone at top camp which can be used at cave entrances + in the case of a rescue.
    10. +
    11. Documentation pack needs preparing about how to contact Austrian +rescue, and also cave information required in event of a rescue.
    12. +
    +
    + +

    Those Present:

    +

    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.

    +

    Preamble:

    +

    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.

    +

    Incident 1:

    +

    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. +

    +

    Incident 2:

    +

    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. +

    +

    Incident 3:

    +

    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. +

    +

    Incident 4:

    +

    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. +

    +

    Incident 5:

    +

    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. +

    +

    Incident 6:

    +

    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.

    + +

    Discussion:

    +

    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.

    + +

    F. Loveridge, 14th July 2016

    +
    + +