{% extends "base.html" %} {% block title %}Cave Entrances and other locations in UTM{% endblock %} {% block content %}

Entrance locations

These are all the locations specified in Northing/Easting coordinates in the system. This report is to help you sort out and fix the bad data in our records. You can see from the tables here that UTM data sometimes have Northings and Eastings swapped, or UTM is used when it is intended to be BMN and vice versa.

Coordinate systems in Austria are explained in:
Geographical fixed points on Loser
GPS and coordinate systems
Basic Coordinate Systems.

The data in the table immediately below has been hand-entered and is sometimes very wrong.

For the Cave column, if there is an official cave name, then it is shown. Otherwise whatever other name we can find for it is shown in italics. For the Entrance column, if the entrance has a name (e.g. Grüner Eingang in Schwarzmooskogeleishöhle) then it is shown. Otherwise it says "Anon:" followed by whatever other name we can find for it, usually the entrance id slug, in italics. {% for ent in ents %} {% endfor %}
CaveEntranceEastingNorthingtagtag exacttag otherslug
{% for c in ent.cavelist %} {% if c.official_name %} {{c.official_name|safe}} {% else %} {{c|safe}} {% endif %}
{% endfor %}
{% if ent.name %} {{ent.name|safe}} {% else %} Anon: {{ent|safe}} {% endif %} {{ent.easting|floatformat:2}} {{ent.northing|floatformat:2}} {{ent.tag_station}} {{ent.exact_station}} {{ent.other_station}} {{ent.slug}}

But the Entrances - the objects in the troggle system - are not properly connected to the dataset which is the combined set of survex data. They are only linked - and only implicitly - by the tag name. The data in the table below is calculated directly from the assemblage of survex files, including fixed point files, and is probably 'correct'.

But which coordinate system are they in ? Read these three articles to find out:
Troggle UTM data report
Geographical fixed points on Loser
GPS and coordinate systems
Basic Coordinate Systems. {% for s in stations %} {% empty %} {% endfor %}
Survex Stationxy
{{s.name|safe}} {{s.x|floatformat:2}} {{s.y|floatformat:2}}
NO STATION DATA - This is due to survex (cavern) failing on the entire dataset.
See DataIssues 'survex' section .
Resolve the survex errors and do a full databasereset import.
You should look at the .log and .err files produced by survex in the :loser: repo folder first.

Probably, the generaton of the .3d file has failed, so the .pos file is not generated.
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'
{% endblock %}