{% 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 %} |
|---|
{% if cave.entrances %}
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 %}
{{ 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 %}