diff options
-rw-r--r-- | templates/eastings.html | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/templates/eastings.html b/templates/eastings.html index a5ea9db..4459365 100644 --- a/templates/eastings.html +++ b/templates/eastings.html @@ -56,6 +56,7 @@ the assemblage of survex files, including fixed point files, and is probably 'co <a href="/handbook/survey/lasers.htm">Geographical fixed points on Loser</a><br> <a href="/handbook/survey/coord2.html">GPS and coordinate systems</a><br> <a href="/handbook/survey/coord.htm">Basic Coordinate Systems</a>. + <table cellpadding="6" cellspacing="8"> <tr><th>Survex Station</th><th>x</th><th>y</th></tr> {% for s in stations %} @@ -64,6 +65,15 @@ the assemblage of survex files, including fixed point files, and is probably 'co <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> +{% 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> |