2021-05-07 22:42:10 +01:00
{% extends "base.html" %}
{% block title %}Cave Entrance locations in UTM{% endblock %}
{% block content %}
< h1 > Entrance locations< / h1 >
< p >
2021-05-07 23:21:57 +01:00
These are all the locations specified in Northing/Easting coordinates in the system.
2021-05-07 22:42:10 +01:00
< table >
2021-05-07 23:21:57 +01:00
< tr > < th > Cave< / th > < th > Entrance< / th > < th > Easting< / th > < th > Northing< / th > < th > tag< / th > < th > tag exact< / th > < th > tag other< / th > < th > slug< / th > < / tr >
2021-05-07 22:42:10 +01:00
{% for ent in ents %}
< tr >
2021-05-07 23:21:57 +01:00
< td style = "text-align:left" > < a href = "/cave/{{ent.cached_primary_slug}}" >
{% for c in ent.cavelist %}{{c.official_name|safe}}{% endfor %}< / a > < / td >
< td style = "text-align:left" > {{ent.name|safe}}< / td >
2021-05-07 22:42:10 +01:00
< td style = "text-align:right" > {{ent.easting|floatformat:2}}< / td >
< td style = "text-align:right" > {{ent.northing|floatformat:2}}< / td >
< td style = "text-align:right" > {{ent.tag_station}}< / td >
< td style = "text-align:right" > {{ent.exact_station}}< / td >
< td style = "text-align:right" > {{ent.other_station}}< / td >
2021-05-07 23:21:57 +01:00
< td style = "text-align:right" > {{ent.slug}}< / td >
2021-05-07 22:42:10 +01:00
< / tr >
{% endfor %}
< / table >
2021-05-07 23:46:11 +01:00
< p > 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.
< table cellpadding = "6" cellspacing = "8" >
< tr > < th > Survex Station< / th > < th > x< / th > < th > y< / th > < / tr >
{% for s in stations %}
< tr >
< td style = "text-align:left; width:240px" > {{s.name|safe}} < / td >
< td style = "text-align:right; width:90px" > {{s.x|floatformat:2}} < / td >
< td style = "text-align:right; width:90px" > {{s.y|floatformat:2}} < / td >
< / tr >
{% endfor %}
< / table >
2021-05-07 22:42:10 +01:00
{% endblock %}