mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2024-11-21 23:01:52 +00:00
124 lines
6.4 KiB
HTML
124 lines
6.4 KiB
HTML
{% autoescape off %}
|
|
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<title>Prospecting Guide</title>
|
|
<link rel="stylesheet" type="text/css" href="/css/main2.css" />
|
|
|
|
</head>
|
|
<body>
|
|
|
|
<h1>Prospecting Guide</h1>
|
|
|
|
<h3>Read this first</h3>
|
|
<p>While this page is generated directly from the current data on all the caves listed, it also contains information which has not been curated and updated since about 1999. References to 'top camp' are likely to be to the 'old top camp' which was near the Schwarzmoossattel (the col) and not near Stone Bridge.
|
|
|
|
<p>Open leads and prospects for discoveries should be looked for in the various <a href="/handbook/troggle/scriptsqms.html">current QMs systems</a> instead.
|
|
<p>This report is a relic of the AERW 'spreadsheet+script' days before troggle, and was designed to be printed out to be taken into the field on paper. It should be retired as the <a href="/map/map.htm">clickable map system</a> is now working with entrances present and labelled (though not yet hot-linked to the relevant cave and entrance descriptions). This replaces the old prospecting guide map based on <a href="/expofiles/location_maps/pguidemap.jpg">/expofiles/location_maps/pguidemap.jpg</a>. But a much better map to print out is the 2015 contour map with all the caves: <a href="/expofiles/location_maps/Expo%202015%20Poster%20OverviewNorth.pdf">/expofiles/location_maps/Expo 2015 Poster OverviewNorth.pdf</a>.
|
|
|
|
<p>The sub-areas names: '1a', '2a' etc. have not been in active use for some years as all exploration for at least the past two decades has been on the mid- to far-plateau.
|
|
|
|
|
|
<p><b>Notes:</b></p>
|
|
<ul><li>A marking status of "Retag" means a tag is in place but it carries a provisional number, or in some cases an incorrect number, and needs replacing with a new tag.</li>
|
|
<li>Kataster status codes indicate the size of a cave, its character and its exploration status, as described <a href="../katast.htm">here</a>.</li>
|
|
<li>For more info on each cave, see the links to detailed description pages.</li>
|
|
</ul>
|
|
|
|
{% for name, area, caves in areas %}
|
|
<h2>{{name|safe}}</h2>
|
|
<table border="1" width="100%">
|
|
<col><col><col><col><col><col><col><col><col>
|
|
<thead>
|
|
<tr><th>Cave Number</th><th>Name</th><th>Finished</th><th>Survey<br>Data</th><th>Survey<br>Drawn</th><th>Marked</th><th>Photo</th><th>Position</th></tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for cave in caves %}
|
|
{% if cave.singleentrance %}
|
|
<tr{% if cave.ours %} class="ours"{% else %} class="notours"{% endif %}>
|
|
<td><a href="/{{ cave.url }}">{{ cave }}</a></td>
|
|
<td>{{ cave.official_name|safe }}</td>
|
|
<td>{{ cave.kataster_code }}</td>
|
|
<td>{{ cave.caveandentrance_set.all.0.entrance.marking_val }}</td>
|
|
<td>{{ cave.caveandentrance_set.all.0.entrance.has_photo }} </td>
|
|
<td>{{ cave.caveandentrance_set.all.0.entrance.find_location }}</td>
|
|
</tr>
|
|
{% if cave.caveandentrance_set.all.0.entrance.location_description %}
|
|
<tr><th>Location</th><td colspan="9">{{ cave.caveandentrance_set.all.0.entrance.location_description|safe }}</td></tr>
|
|
{% endif %}
|
|
{% if cave.caveandentrance_set.all.0.entrance.map_description %}
|
|
<tr><th>Map</th><td colspan="9">{{ cave.caveandentrance_set.all.0.entrance.map_description|safe }}</td></tr>
|
|
{% endif %}
|
|
{% if cave.caveandentrance_set.all.0.entrance.approach %}
|
|
<tr><th>Approach</th><td colspan="9">{{ cave.caveandentrance_set.all.0.entrance.approach|safe }}</td></tr>
|
|
{% endif %}
|
|
{% if cave.caveandentrance_set.all.0.entrance.findability_description %}
|
|
<tr><th>Findability</th><td colspan="9">{{ cave.caveandentrance_set.all.0.entrance.findability_description|safe }}</td></tr>
|
|
{% endif %}
|
|
{% if cave.caveandentrance_set.all.0.entrance.marking_comment %}
|
|
<tr><th>Marking</th><td colspan="9">{{ cave.caveandentrance_set.all.0.entrance.marking_comment|safe }}</td></tr>
|
|
{% endif %}
|
|
{% if cave.caveandentrance_set.all.0.entrance.entrance_description %}
|
|
<tr><th>Ent Desc</th><td colspan="9">{{ cave.caveandentrance_set.all.0.entrance.entrance_description|safe }}</td></tr>
|
|
{% endif %}
|
|
{% if cave.underground_description %}
|
|
<tr><th>Under Desc</th><td colspan="9">{{ cave.underground_description|truncatewords_html:80 }}</td></tr>
|
|
{% endif %}
|
|
|
|
{% else %}
|
|
<tr{% if cave.ours %} class="ours"{% else %} class="notours"{% endif %}>
|
|
<td><a href="/{{ cave.url }}">{{ cave }}</a></td>
|
|
<td>{{ cave.official_name|safe }}</td>
|
|
<td>{{ cave.kataster_code }}</td>
|
|
<td>{{ cave.hassurveydata }}</td>
|
|
<td>{{ cave.hassurvey }}</td>
|
|
<td></td>
|
|
<td></td>
|
|
<td></td>
|
|
<td></td>
|
|
</tr>
|
|
{% if cave.underground_description %}
|
|
<tr><th>Under Desc</th><td colspan="9">{{ cave.underground_description|truncatewords_html:80 }}</td></tr>
|
|
{% endif %}
|
|
{% for caveandentrance in cave.caveandentrance_set.all %}
|
|
<tr{% if cave.ours %} class="ours"{% else %} class="notours"{% endif %}>
|
|
<td><a href="/{{ cave.url }}">{{ caveandentrance.entranceletter}}</a></td>
|
|
<td>{{ caveandentrance.entrance.name|safe }}</td>
|
|
<td></td>
|
|
<td></td>
|
|
<td></td>
|
|
<td>{{ caveandentrance.entrance.marking_val }}</td>
|
|
<td>{{ caveandentrance.entrance.has_photo }} </td>
|
|
<td>{{ caveandentrance.entrance.find_location|safe }}</td>
|
|
</tr>
|
|
<tr>
|
|
{% if caveandentrance.entrance.location_description %}
|
|
<tr><td>Location</td><td colspan="9">{{ caveandentrance.entrance.location_description|safe }}</td></tr>
|
|
{% endif %}
|
|
{% if caveandentrance.entrance.map_description %}
|
|
<tr><td>Map</td><td colspan="9">{{ caveandentrance.entrance.map_description|safe }}</td></tr>
|
|
{% endif %}
|
|
{% if caveandentrance.entrance.approach %}
|
|
<tr><td>Approach</td><td colspan="9">{{ caveandentrance.entrance.approach|safe }}</td></tr>
|
|
{% endif %}
|
|
{% if caveandentrance.entrance.findability_description %}
|
|
<tr><th>Findability</th><td colspan="9">{{ caveandentrance.entrance.findability_description|safe }}</td></tr>
|
|
{% endif %}
|
|
{% if caveandentrance.entrance.marking_comment %}
|
|
<tr><th>Marking</th><td colspan="9">{{ caveandentrance.entrance.marking_comment|safe }}</td></tr>
|
|
{% endif %}
|
|
{% if cave.caveandentrance_set.all.0.entrance.entrance_description %}
|
|
<tr><th>Ent Desc</th><td colspan="9">{{ caveandentrance.entrance.entrance_description|safe }}</td></tr>
|
|
{% endif %}
|
|
{% endfor %}
|
|
{% endif %}
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{% endfor %}
|
|
|
|
</body>
|
|
</html>
|
|
{% endautoescape %}
|