{% extends "cavebase.html" %} {% block title %}New Cave Creation Form{% endblock %} {% block extraheaders %} {% endblock %} {% block content %}

New Cave Datasheet

Instructions

Refer to the handbook New Cave Datasheet page for what all these mean and how to fill them in.

If starting from scratch, read New Cave Process.

{% csrf_token %}
{% for field in form %} {# Logic to catch the first coordinate and start a side-by-side div #} {% if field.name == "gps_lat" %}
{{ field.label_tag }} {{ field }} N {{ field.errors }}
{% elif field.name == "gps_long" %}
{{ field.label_tag }} {{ field }} E {%if areatext %}     {{areatext}}{% endif %} {{ field.errors }}
{# Standard Checkbox rendering #} {% elif field.field.widget.input_type == "checkbox" %}
{{ field }} {{ field.label_tag }}
{{ field.errors }} {# Standard Field rendering #} {% else %}
{{ field.label_tag }} {{ field }} {{ field.errors }}
{% endif %} {% endfor %}

What this will do:

Why we ask for the time the GPS was recorded

Because ionospheric disturbance happens on a scale of an hour or so, every few hours, and is local to an area about ~50km in size. If we continuously record the GPS position of the potato hut during the expo then we will know if the GPS position of this cave entrancce was recorded during one of these "bad" periods.

Go back and re-record the GPS positon the next day at the exact same point and put that data in the logbook.

{% endblock %}

🚧 under construction.