summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhilip Sargent <philip.sargent@gmail.com>2023-10-27 22:23:03 +0300
committerPhilip Sargent <philip.sargent@gmail.com>2023-10-27 22:23:03 +0300
commitf706bd814e9c5daecbed52e5be806b9fb2addae3 (patch)
treed48601af9d22e19731a53eec1506beafada220a6
parent97bb1a3ad1b5adcc24c73d7c38644bc4e553f366 (diff)
downloadtroggle-f706bd814e9c5daecbed52e5be806b9fb2addae3.tar.gz
troggle-f706bd814e9c5daecbed52e5be806b9fb2addae3.tar.bz2
troggle-f706bd814e9c5daecbed52e5be806b9fb2addae3.zip
add SRTM alts
-rw-r--r--templates/eastings.html50
1 files changed, 27 insertions, 23 deletions
diff --git a/templates/eastings.html b/templates/eastings.html
index 32a628e..0bc23f0 100644
--- a/templates/eastings.html
+++ b/templates/eastings.html
@@ -5,6 +5,33 @@
<h1>Entrance locations</h1>
+<p>This next table is of all the survex stations in troggle: i.e. only those survey stations which have been identified with an Entrance by manually editing the Entrance data.
+<table cellpadding="6" cellspacing="8">
+<tr><th>Survex Station</th><th>x</th><th>y</th><th>lat.</th><th>long.</th><th>alt</th><th>SRTM alt</th><th>Used on ent</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>
+ <td style="text-align:right; width:90px"> {{s.lat|floatformat:6}} </td>
+ <td style="text-align:right; width:90px"> {{s.long|floatformat:6}} </td>
+ <td style="text-align:right; width:90px"> {{s.z|floatformat:0}} </td>
+ <td style="text-align:right; width:90px"> {{s.srtm_diff.0|safe}} </td>
+ <td style="text-align:right;" > {{s.entrance|safe}} </td>
+</tr>
+{% empty %}
+ <td colspan="3"> NO STATION DATA - This is due to survex (cavern) failing on the entire dataset.
+ <br>See <a href="/dataissues">DataIssues</a> 'survex' section .
+ <br>Resolve the survex errors and do a full databasereset import.
+ <br>You should look at the .log and .err files produced by survex in the :loser: repo folder first.
+ <br>
+ <br>Probably, the generaton of the .3d file has failed, so the .pos file is not generated.
+ <br> Look for a message like this 'Failed to find /mnt/d/EXPO/loser/1623-and-1626-no-schoenberg-hs.3d so aborting generation of new .pos, using old one if present'
+ </td>
+{% endfor %}
+</table>
+
+
<p>
Coordinate systems in Austria are explained in:<br>
@@ -93,28 +120,5 @@ the assemblage of survex files, including fixed point files, and is probably 'co
<a href="/handbook/survey/coord2.html">GPS and coordinate systems</a><br>
<a href="/handbook/survey/coord.htm">Basic Coordinate Systems</a>.
-<p>This next table is of all the survex stations in troggle: i.e. only those survey stations which have been identified with an Entrance by manually editing the Entrance data.
-<table cellpadding="6" cellspacing="8">
-<tr><th>Survex Station</th><th>x</th><th>y</th><th>lat.</th><th>long.</th><th>Used on ent</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>
- <td style="text-align:right; width:90px"> {{s.lat|floatformat:6}} </td>
- <td style="text-align:right; width:90px"> {{s.long|floatformat:6}} </td>
- <td style="text-align:right;" > {{s.entrance|safe}} </td>
-</tr>
-{% empty %}
- <td colspan="3"> NO STATION DATA - This is due to survex (cavern) failing on the entire dataset.
- <br>See <a href="/dataissues">DataIssues</a> 'survex' section .
- <br>Resolve the survex errors and do a full databasereset import.
- <br>You should look at the .log and .err files produced by survex in the :loser: repo folder first.
- <br>
- <br>Probably, the generaton of the .3d file has failed, so the .pos file is not generated.
- <br> Look for a message like this 'Failed to find /mnt/d/EXPO/loser/1623-and-1626-no-schoenberg-hs.3d so aborting generation of new .pos, using old one if present'
- </td>
-{% endfor %}
-</table>
{% endblock %} \ No newline at end of file