{% extends "base.html" %} {% block title %}Cave Entrance locations in UTM{% endblock %} {% block content %}
These are all the locations specified in Northing/Easting coordinates in the system.
Cave | Entrance | Easting | Northing | tag | tag exact | tag other | slug |
---|---|---|---|---|---|---|---|
{% for c in ent.cavelist %}{{c.official_name|safe}}{% endfor %} | {{ent.name|safe}} | {{ent.easting|floatformat:2}} | {{ent.northing|floatformat:2}} | {{ent.tag_station}} | {{ent.exact_station}} | {{ent.other_station}} | {{ent.slug}} |
But the Entrances - the objects in the troggle system - are not properly connected to the dataset which is the combined set of survex data. They are only linked - and only implicitly - by the tag name.
Survex Station | x | y |
---|---|---|
{{s.name|safe}} | {{s.x|floatformat:2}} | {{s.y|floatformat:2}} |