{% extends "cavebase.html" %} {% block extraheaders %} {% if cave.survex_file %} {% endif %} {% endblock %} {% block content %} {% block contentheader %}
{{ cave.areacode}} / {% if cave.kataster_number %} {{ cave.kataster_number|safe }} {% if cave.entrancelist %} {{ cave.entrancelist|safe }} {% endif %} {% if cave.unofficial_number %}
({{ cave.unofficial_number|safe }}) {% endif %} {% else %} {% if cave.unofficial_number %} {{ cave.unofficial_number|safe }} {% else %} {{ cave_id|safe }} {% endif %} {% endif %}
{{ cave.official_name|safe }} {% if cave.kataster_code %} {{ cave.kataster_code|safe }} {% endif %}
{% block related %} {% endblock %}{% endblock %}
{% comment %} The 'cave' object has text field, not forign-key fields, so we cant dereference to get info on the survex file {% endcomment %} {% if cave.survey %}

Surveys and Rigging Guides

{{ cave.survey|safe }} {% endif %} {% if cave.underground_description %}

Underground Description

{{ cave.underground_description|safe }} {% endif %} {% if cave.equipment %}

Equipment

{{ cave.equipment|safe }} {% endif %} {% comment "Kataster status is probably only required in the header" %} {% if cave.kataster_status %}

Kataster_status

{{ cave.kataster_status|safe }} {% endif %} {% endcomment %} {% if cave.references %}

References

{{ cave.references|safe }} {% endif %} {% if not local %} {% if cave.get_QMs %}

QMs

QM page for {{ cave_id|safe }} {% endif %} {% if wallets %}

Wallets: scanned survey notes

There are {{wallets|length}} wallets with data for this cave:
{% for w in wallets %} {{w.walletname}} {% endfor %} {% endif %} {% endif %} {% if cave.notes %}

Notes

{{ cave.notes|safe }} {% endif %}

{% if cave.entrances %}

Entrances

    {% for ent in cave.entrances %}
  1. Id letter: '{{ ent.entranceletter|safe}}' {% if ent.entrance.name %} {{ ent.entrance.name|safe }} {% endif %}Edit this entrance
    {% if ent.entrance.marking %}
    Marking
    {{ ent.entrance.marking_val|safe }}
    {% endif %} {% if ent.entrance.marking_comment %}
    Marking Comment
    {{ ent.entrance.marking_comment|safe }}
    {% endif %} {% if ent.entrance.findability %}
    Findability
    {{ ent.entrance.findability_val|safe }}
    {% endif %} {% if ent.entrance.findability_comment %}
    Findability Comment
    {{ ent.entrance.findability_comment|safe }}
    {% endif %} {% if ent.entrance.location_description %}
    Location
    {{ ent.entrance.location_description|safe }}
    {% endif %} {% if ent.entrance.lastvisit %}
    Date last visited
    {{ ent.entrance.lastvisit|safe }}
    {% endif %} {% if ent.entrance.approach %}
    Approach
    {{ ent.entrance.approach|safe }}
    {% endif %} {% if ent.entrance.map_description %}
    Map
    {{ ent.entrance.map_description|safe }}
    {% endif %} {% if ent.entrance.underground_description %}
    Underground
    {{ ent.entrance.underground_description|safe }}
    {% endif %} {% if ent.entrance.photo %}
    Photo(s)
    {{ ent.entrance.photo|safe }}
    {% endif %} {% if ent.entrance.entrance_description %}
    Description
    {{ ent.entrance.entrance_description|safe }}
    {% endif %} {% if ent.entrance.explorers %}
    Explorers
    {{ ent.entrance.explorers|safe }}
    {% endif %} {% if ent.entrance.lat_wgs84 %}
    Location
    WGS84 Lat.: {{ ent.entrance.lat_wgs84|floatformat:7 }} N, Long.:{{ ent.entrance.long_wgs84|floatformat:7 }} E

    This would be eventually replaced with something like this in the appropriate gps file in the fixedpts/gps/ folder for the kataster area {{cave.areacode}} :

    *begin 
    *cs out UTM33
    *cs LONG-LAT
    *fix p{{ ent.entrance.name|lower|safe }} {{ent.entrance.long_wgs84|floatformat:7}} {{ ent.entrance.lat_wgs84|floatformat:7 }} {% if ent.entrance.alt %}{{ ent.entrance.alt|safe }}{% else%}0.0{% endif %}
    *end
    and the appropriate *equate and *entrance fields in the survex file {{cave.survex_file|safe}} to equate p{{ ent.entrance.name|lower|safe }} to the actual survey station. The WGS84 fields on the entrance edit form would be deleted, and a Tag/Other survex station id to {{cave.areacode}}.p{{ ent.entrance.name|lower|safe }} used instead. {% endif %} {% if ent.entrance.tag_station %}
    Tag Location
    {{ ent.entrance.tag_station }} {{ ent.entrance.tag.latlong.0|floatformat:5 }}N {{ ent.entrance.tag.latlong.1|floatformat:5 }}E (UTM33 {{ ent.entrance.tag.x|floatformat:0 }}, {{ ent.entrance.tag.y|floatformat:0 }}), {{ ent.entrance.tag.z|floatformat:0 }}m (SRTM is {{ ent.entrance.tag.srtm_diff.0|safe }} m, distance from reference: {{ent.entrance.tag.srtm_alt.1|floatformat:0}}m) OSMand Bing satellite
    {% endif %} {% if ent.entrance.bearings %}
    Bearings
    {{ ent.entrance.bearings|safe }}
    {% endif %} {% if ent.entrance.other_station %}
    Other Station
    {{ ent.entrance.other_station|safe }} {% if ent.entrance.other_description %} - {{ ent.entrance.other_description|safe }} {% endif %} {{ ent.entrance.other_location.latlong.0|floatformat:7 }}N {{ ent.entrance.other_location.latlong.1|floatformat:7 }}E (UTM33 {{ ent.entrance.other_location.x|floatformat:0 }}, {{ ent.entrance.other_location.y|floatformat:0 }}), {{ ent.entrance.other_location.z|floatformat:0 }}m (SRTM is {{ ent.entrance.other_location.srtm_diff.0|safe }}m, distance from reference: {{ent.entrance.other_location.srtm_alt.1|floatformat:0}}m) OSMand Bing satellite
    {% endif %}
  2. {% endfor %}
{% endif %}

New Entrance

Survex File(s)

All survexfiles for this cave (if any)
{% if cave.survex_file %} Primary survex file for this cave
Download .3d file {{cave}}.3d
cave survex path '{{ cave.areacode }}/{% if cave.kataster_number %}{{cave.kataster_number}}{% else %}{{cave.unofficial_number}}{% endif %}/' {% if cave.explorers %}

Initially explored by

{{ cave.explorers|safe }}

[This field is a fossil: it used to show whether the cave was explored by CUCC/expo or by another group, but that information is now available in the survex files recording the surveying, see the primary survex file. However, some caves do not have any survex files, or the original survex files have been replaced by a resurvey, in which case this information is worth keeping.] {% endif %}

{% endif %} {% endblock content %}