summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--templates/cave.html8
-rw-r--r--templates/editentrance.html2
2 files changed, 9 insertions, 1 deletions
diff --git a/templates/cave.html b/templates/cave.html
index dd1155a..7063894 100644
--- a/templates/cave.html
+++ b/templates/cave.html
@@ -188,6 +188,14 @@ Nope, it is not useful, removing it... Philip S.
{% if ent.entrance.lat_wgs84 %}
<dt>Location</dt><dd><a href="https://www.openstreetmap.org/?mlat={{ ent.entrance.lat_wgs84|floatformat:7}}&mlon={{ent.entrance.long_wgs84|floatformat:7}}">WGS84 Lat.: {{ ent.entrance.lat_wgs84|floatformat:7 }} N, Long.:{{ ent.entrance.long_wgs84|floatformat:7 }} E</a></dd>
+<p>This would be eventually replaced with something like this in the appropriate gps file in the <var>fixedpts/gps/</var> folder:
+<pre><code>*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</code></pre>
+and the appropriate <var>*equate</var> and <var>*entrance</var> fields in the survex file <var>{{cave.survex_file|safe}}</var>
+to equate p{{ ent.entrance.name|lower|safe }} to the actual survey station.
{% endif %}
{% if ent.entrance.tag_station %}
<dt>Tag Location</dt><dd>{{ ent.entrance.tag_station }} <a href="https://www.openstreetmap.org/?mlat={{ ent.entrance.tag.latlong.0}}&mlon={{ent.entrance.tag.latlong.1}}">{{ ent.entrance.tag.latlong.0|floatformat:5 }}N {{ ent.entrance.tag.latlong.1|floatformat:5 }}E</a> (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)
diff --git a/templates/editentrance.html b/templates/editentrance.html
index d9957a0..f43bb23 100644
--- a/templates/editentrance.html
+++ b/templates/editentrance.html
@@ -9,7 +9,7 @@
{% include 'html_editor_pop_ups.html' %}
<!-- If you are looking for the furniture that creates the fields on this form, you need to look
-at troggle/core/forms.py ass this uses a Django magic form creation thinggy. -->
+at troggle/core/forms.py as this uses a Django magic form creation thinggy. -->
<h2>{{message}}</h2>
<form action="" method="post">{% csrf_token %}