mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
CSV import: create o2 and diluent cylinders for CCR
Signed-off-by: Miika Turkia <miika.turkia@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
87c35e19e2
commit
615f45e58b
1 changed files with 8 additions and 0 deletions
|
@ -43,6 +43,14 @@
|
|||
<xsl:attribute name="time">
|
||||
<xsl:value-of select="concat(substring($time, 2, 2), ':', substring($time, 4, 2))"/>
|
||||
</xsl:attribute>
|
||||
|
||||
<!-- If the dive is CCR, create oxygen and diluent cylinders -->
|
||||
|
||||
<xsl:if test="$po2Field >= 0 or $setpointField >= 0 or $o2sensor1Field >= 0 or $o2sensor2Field >= 0 or $o2sensor3Field >= 0">
|
||||
<cylinder description='oxygen' o2="100.0%" use='oxygen' />
|
||||
<cylinder description='diluent' o2="21.0%" use='diluent' />
|
||||
</xsl:if>
|
||||
|
||||
<divecomputer model="Imported from CSV" deviceid="ffffffff">
|
||||
<xsl:if test="$po2Field >= 0 or $setpointField >= 0 or $o2sensor1Field >= 0 or $o2sensor2Field >= 0 or $o2sensor3Field >= 0">
|
||||
<xsl:attribute name="dctype">CCR</xsl:attribute>
|
||||
|
|
Loading…
Reference in a new issue