{% extends "base.html" %} {% block title %}Survex files which have no wallets{% endblock %} {% block content %}
ALL YEARS {% for otherexpedition in expeditions %} | {{otherexpedition.year}} {% endfor %}
These are survex blocks within a survex file which have NO ATTACHED WALLET.
i.e. they have a survex block (begin..end) with no *REF line which refers to the wallet holding the raw data for that block of data.
These have "; Messteam", "; Zeichner" or "; "LUSS Dead Mountains" in the survex block, so are non expo surveys.
survex block with no *ref | date | parent block | within survex file | surveyed length |
---|---|---|---|---|
{{ sb }} | {{sb.date }} | {{sb.parent }} | {{sb.survexfile.path}} | {{sb.legslength|floatformat:"1g" }}m | {% endfor %}
These do not have "; Messteam", "; Zeichner" or "; "LUSS Dead Mountains" in the survex block, so are probably expo surveys; definitely if they have identified team members (or have zero length).
survex block with no *ref | date | parent block | within survex file | surveyed length | team |
---|---|---|---|---|---|
{{ sb }} | {{sb.date }} | {{sb.parent }} | {{sb.survexfile.path}} | {{sb.legslength|floatformat:"1g" }}m | {{sb.team|truncatechars:50 }} |
Year | Survex Survey Blocks | Survex Survey Legs | Survex length(m) |
---|---|---|---|
{{legs.0}} | {{legs.0.survexblock_set.all|length}} | {{legs.1.nsurvexlegs|rjust:"10"|floatformat:"0g"}} | {{legs.1.survexleglength|floatformat:"0g"}} |
These are uncorrected tape lengths which include pitches and duplicates but exclude splays or surface-surveys.
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.
This only includes lengths surveyed by Expo survey trips (though not all have valid Expo-attendees as some survex files are administrative collections of *include statements). This no longer (since 30 June 2025) includes ARGE and other non-expo surveys. {% endblock %}