2
0
mirror of https://expo.survex.com/repositories/troggle/.git synced 2024-11-22 07:11:52 +00:00
troggle/templates/statistics.html

36 lines
1.6 KiB
HTML
Raw Permalink Normal View History

2011-07-11 02:10:22 +01:00
{% extends "base.html" %}
{% block title %}Expo statistics{% endblock %}
2011-07-11 02:10:22 +01:00
{% block content %}
2021-03-27 20:05:15 +00:00
<h1>Expedition Statistics</h1>
2020-07-02 16:24:39 +01:00
<p>{{ expoCount }} expeditions: {{ personCount }} people, {{ caveCount }} caves and {{ logbookEntryCount }} logbook entries.
2022-04-18 21:33:04 +01:00
<p>Number of survey legs: {{nsurvexlegs}} <br />
2020-07-02 16:24:39 +01:00
Total length: {{addupsurvexlength|stringformat:".1f"}} km adding up the total for each year.</p>
2020-06-12 14:52:00 +01:00
2020-07-04 13:31:46 +01:00
<p>These are uncorrected tape lengths which include pitches and duplicates but exclude splays or surface-surveys.
2020-07-02 16:24:39 +01:00
<p>
2023-03-12 01:09:17 +00:00
This is work in progress (March 2023): the underground survey length does not match that in e.g.
<a href="/wallets/year/2018">wallets for 2018</a> probably because ARGE surveys are not in any of our wallets.
2023-02-27 16:42:08 +00:00
<p>This includes ARGE and other surveys currently. It will be changed to only include lengths surveyed by valid Expo-attendees.
2020-07-02 16:24:39 +01:00
<table>
2023-03-12 01:09:17 +00:00
<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>
2021-03-27 20:05:15 +00:00
<td style="text-align:center"><a href="{{ legs.0.get_absolute_url }}">{{legs.0}}</a></td>
2020-07-02 16:24:39 +01:00
<td style="text-align:center">{{legs.0.survexblock_set.all|length}}</td>
2023-03-12 01:09:17 +00:00
<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>
2020-07-02 16:24:39 +01:00
<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.
2021-03-27 20:05:15 +00:00
{% endblock %}