profiledata

Occurrence

optional, single

Attributes

Description

Inside the <profiledata> section the description of single dives profile data as well as all other specific information concerning individual dives (logbook entries, equipment used, breathing gases, tank pressure at beginning, and end of dive, breathing gas consumption value etc.) are given.

The <profiledata> section stands after <gasdefinitions> and before <tablegeneration>.

The only element within <profiledata> is <repetitiongroup> which can be repeated any times.

Parent Elements

<uddf>

Child Elements

<repetitiongroup>

See Also

<uddf>

Examples

(see also <repetitiongroup>)

<uddf version="3.2.1">
    <!-- here other sections -->
    <gasdefinitions>
        <!-- here definitions of breathing gases used during the following dives -->
    </gasdefinitions>
    <profiledata>
        <repetitiongroup id="rep_2002_a">
            <!-- the first dive within a <repetitiongroup> section should have an infinite surface interval -->
            <dive id="dive1_2002">
                <surfaceintervalbeforedive>
                    <infinity/>
                </surfaceintervalbeforedive>
                <!-- more dive data -->
            </dive>
            <!-- all following dives in a <repetitiongroup> show a finite surface interval -->
            <dive id="dive2_2002">
                <surfaceintervalbeforedive>
                    <passedtime>17580.0</passedtime>
                </surfaceintervalbeforedive>
                <!-- more dive data -->
            </dive>
            <dive id="dive3_2002">
                <!-- description of next dive -->
            </dive>
            <!-- here more dives can appear -->
        </repetitiongroup>
        <repetitiongroup id="rep_2003_a">
            <!-- the first dive within a <repetitiongroup> section should have an infinite surface interval -->
            <dive id="dive1_2003">
                <surfaceintervalbeforedive>
                    <infinity/>
                </surfaceintervalbeforedive>
                <!-- more dive data -->
            </dive>
            <!-- here more dives (every one with a finite surface interval) -->
        </repetitiongroup>
        <!-- here can follow more <repetitiongroup> sections -->
    </profiledata>
    <tablegeneration>
        <!-- here more definitions for the calculation of tables (for example -->
        <!-- on the basis of under </profiledata> given dive profile data) -->
    </tablegeneration>
</uddf>