mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2024-11-25 16:51:54 +00:00
45 lines
1.8 KiB
HTML
45 lines
1.8 KiB
HTML
{% extends "base.html" %}
|
|
{% block title %}Survex files which have no wallets{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<h1>'Wild' Survex files</h1>
|
|
|
|
<p>These are survex files which have NO ATTACHED WALLET.
|
|
<br />
|
|
i.e. they have no *REF line which refers to the wallet holding the raw data for this survey.
|
|
<p>WORK IN PROGRESS
|
|
|
|
<table>
|
|
<tr><th>survex block with no *ref</th><th>date</th><th>parent block</th><th>within survex file</th><th>surveyed length</th><th>team</th></tr>
|
|
{% for sb in svxwild %}
|
|
<tr>
|
|
<td style="text-align:center"> {{ sb }} </td>
|
|
<td style="text-align:center"> {{sb.date }} </td>
|
|
<td style="text-align:center"> {{sb.parent }} </td>
|
|
<td style="text-align:left"> <a href="{% url "svx" sb.survexfile.path %}">{{sb.survexfile.path}}</a> </td>
|
|
<td style="text-align:center"> {{sb.legslength|floatformat:"1g" }}m </td>
|
|
<td style="text-align:center"> {{sb.team|truncatechars:50 }} </td></tr>
|
|
{% endfor %}
|
|
</table>
|
|
<br />
|
|
<br />
|
|
<table>
|
|
<tr><th>Year</th><th>Survex<br>Survey<br>Blocks</th><th>Survex<br>Survey Legs</th><th>Survex <br>length(m)</th></tr>
|
|
{% for legs in legsbyexpo %}
|
|
<tr>
|
|
<td style="text-align:center"><a href="{{ legs.0.get_absolute_url }}">{{legs.0}}</a></td>
|
|
<td style="text-align:center">{{legs.0.survexblock_set.all|length}}</td>
|
|
<td style="text-align:center">{{legs.1.nsurvexlegs|rjust:"10"|floatformat:"0g"}} </td>
|
|
<td style="text-align:right">{{legs.1.survexleglength|floatformat:"0g"}}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
|
|
|
|
<p>These are uncorrected tape lengths which include pitches and duplicates but exclude splays or surface-surveys.
|
|
<p>One Survex Survey Block is one *begin/*end block of data in a survex file.
|
|
Some files from other caving clubs may have a convention of using many more blocks per file than we do, e.g. if the
|
|
file is exported from other software into survex format.
|
|
|
|
{% endblock %} |