equipmentconfiguration

Occurrence

optional, multiple

Attributes

id=unique identifier for this equipment configuration — compulsory

Description

Via <equipmentconfiguration> an equipment configuration can be "stored". Using the same configuration at different dives, it can be summarized with <equipmentconfiguration> — it's not necessary to input each piece every time. With a certain <dive>, inside <equipmentused> just a cross-referencing (<link/>) must be made to this configuration.

<equipmentconfiguration> must be the last element(s) inside <equipment>, because references on previous given pieces of equipment are made.

A <name>, and an <aliasname> for this configuration may be given. Additionally, via <notes> further information can be provided.

Parent Elements

<equipment>

Child Elements

<aliasname>, <link/> (to be repeated for every piece of equipment to be cross-referenced: <boots>, <buoyancycontroldevice>, <camera>, <compass>, <divecomputer>, <fins>, <gloves>, <knife>, <lead>, <light>, <mask>, <rebreather>, <regulator>, <scooter>, <suit>, <tank>, <tankdata>, <variouspieces>, <videocamera>, <watch>), <name>, <notes>

See Also

<equipment>, <equipmentused>

Examples

<equipment>
    <!-- first, listing of diving equipment -->
    <buoyancycontroldevice id="bcd_1">
        <!-- description of BCD -->
        ...
    </buoyancycontroldevice>
    <compass id="compass_1">
        <!-- description of compass -->
        ...
    </compass>
    <divecomputer id="divecomputer_1">
        <!-- description of dive computer -->
        ...
    </divecomputer>
    <suit id="suit_1">
        <!-- description of suit 1 -->
        ...
    </suit>
    <suit id="suit_2">
        <!-- description of suit 2 -->
        ...
    </suit>
    <tank id="tank_1">
        <!-- description of tank 1 -->
        ...
    </tank>
    <tank id="tank_2">
        <!-- description of tank 2 -->
        ...
    </tank>
    <mask id="mask_1">
        <!-- description of mask 1 -->
        ...
    </tank>
    <mask id="mask_2">
        <!-- description of mask 2 -->
        ...
    </tank>
    <rebreather id="rebreather_1">
        <!-- description of rebreather -->
        ...
    </rebreather>
    <fins id="fins_1">
        <!-- description of fins 1 -->
        ...
    </fins>
    <fins id="fins_2">
        <!-- description of fins 2 -->
        ...
    </fins>
    <watch id="watch_1">
        <!-- description of diving watch -->
        ...
    </watch>
    <!-- after listing of diving equipment now -->
    <!-- aggregation of the different configurations -->
    <equipmentconfiguration id="warmwassertauchen">
        <name>Standard-Warmwasserausrüstung</name>
        <link ref="bcd_1"/>
        <link ref="divecomputer_1"/>
        <link ref="mask_2"/>
        <link ref="compass_1"/>
        <link ref="fins_1"/>
        <link ref="tank_1"/>
    <equipmentconfiguration>
    <equipmentconfiguration id="kaltwassertauchen">
        <name>Standard-Kaltwasserausrüstung</name>
        <link ref="bcd_1"/>
        <link ref="mask_1"/>
        <link ref="divecomputer_1"/>
        <link ref="compass_1"/>
        <link ref="fins_2"/>
        <link ref="tank_1"/>
        <link ref="tank_2"/>
        <link ref="watch_1"/>
        <link ref="suit_2"/>
        <link ref="rebreather_1"/>
    <equipmentconfiguration>
</equipment>