startdivemode=apnoe | closedcircuit | opencircuit | semiclosedcircuit — compulsory
startmix=identifier of breathing gas mix used at beginning of dive — compulsory
Inside <plannedprofile> exact information concerning a planned dive profile is given. After finishing the dive a comparison of the "theoretical" with the real dive profile is possible.
To guarantee clear starting conditions, two — compulsory — attributes, the initially used breathing gas <mix> as well as the dive mode — apnoe diving, scuba diving (using an open system), using a closed circuit, or a semi-closed circuit rebreather — must be set.
<waypoint>
<calculateprofile>, <inputprofile>, <profile>, <table>
(see also <profile>)
<!-- a scuba dive with air as the breathing gas --> <plannedprofile startmix="air" startdivemode="opencircuit"> <!-- every dive begins at 0 min at the surface! :-) --> <waypoint> <depth>0.0</depth> <divetime0.0</divetime> </waypoint> <!-- simple profile: --> <!-- descent within 5 min to 40 m --> <waypoint> <depth>40.0</depth> <divetime>300.0</divetime> </waypoint> <!-- at this depth it is planned to stay for 10 min --> <waypoint> <depth>40.0</depth> <divetime>900.0</divetime> </waypoint> <!-- ascent to 10 m within 10 min --> <waypoint> <depth>10.0</depth> <divetime>1500.0</divetime> </waypoint> <!-- staying at a depth of 10 m for 10 min --> <waypoint> <depth>10.0</depth> <divetime>2100.0</divetime> </waypoint> <!-- ascent to 3 m within 5 min --> <waypoint> <depth>3.0</depth> <divetime>2400.0</divetime> </waypoint> <!-- staying at 3 m for 5 min --> <waypoint> <depth>3.0</depth> <divetime>2700.0</divetime> </waypoint> <!-- ascent to surface within 2 min --> <waypoint> <depth>0.0</depth> <divetime>2820.0</divetime> </waypoint> </plannedprofile>