diff options
author | Philip Sargent <philip.sargent@gmail.com> | 2023-11-02 01:05:36 +0200 |
---|---|---|
committer | Philip Sargent <philip.sargent@gmail.com> | 2023-11-02 01:05:36 +0200 |
commit | cc4a7f04dadfeede1cb8b9908e535f91299fe94e (patch) | |
tree | f0da8f181ad4db78801765ed7b112b0603bab3bd /templates/stations.html | |
parent | 742ccb5f0b995501a3fe304f38942ceff3acf63b (diff) | |
download | troggle-cc4a7f04dadfeede1cb8b9908e535f91299fe94e.tar.gz troggle-cc4a7f04dadfeede1cb8b9908e535f91299fe94e.tar.bz2 troggle-cc4a7f04dadfeede1cb8b9908e535f91299fe94e.zip |
improves stations srtm report
Diffstat (limited to 'templates/stations.html')
-rw-r--r-- | templates/stations.html | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/templates/stations.html b/templates/stations.html index f63c250..c2b3eda 100644 --- a/templates/stations.html +++ b/templates/stations.html @@ -7,7 +7,7 @@ <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> +<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>SRTM ref</th><th>Used on ent</th></tr> {% for s in stations %} <tr> <td style="text-align:left; width:240px"> {{s.name|safe}} </td> @@ -17,7 +17,8 @@ <td style="text-align:right; width:90px"> <em>{{s.long|floatformat:6}} </em></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> + <td style="text-align:right; width:90px"> {{s.srtm_diff.1|floatformat:0}}m <small>away</small></td> + <td style="text-align:right;" > <a href="/cave/{{s.entrance.firstcave|safe}}">{{s.entrance|safe}}</a> </td> </tr> {% empty %} <td colspan="3"> NO STATION DATA - This is due to survex (cavern) failing on the entire dataset. @@ -31,7 +32,7 @@ {% endfor %} </table> - +<p>The SRTM altitude is that measured at a nearby reference point. The horizontal distance between the survey station and the SRTM reference point is shown in the "SRTM ref" column. It is always less than 35m for our dataset. Differences between teh recorded altitude and the SRTM altitude are in <b>bold</b> if the discrepancy is more than 60m. <p> Coordinate systems in Austria are explained in:<br> |