Add optional support for stopdepth import from csv

Signed-off-by: Anton Lundin <glance@acc.umu.se>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Anton Lundin 2013-11-21 23:48:42 +01:00 committed by Dirk Hohndel
parent 5eccd73a30
commit 26656310ab
6 changed files with 52 additions and 6 deletions

View file

@ -7,6 +7,7 @@
<xsl:param name="tempField" select="tempField"/>
<xsl:param name="po2Field" select="po2Field"/>
<xsl:param name="cnsField" select="cnsField"/>
<xsl:param name="otuField" select="otuField"/>
<xsl:param name="date" select="date"/>
<xsl:param name="time" select="time"/>
<xsl:output method="xml" indent="yes"/>
@ -129,6 +130,17 @@
</xsl:when>
</xsl:choose>
</xsl:attribute>
<xsl:attribute name="otu">
<xsl:choose>
<xsl:when test="$otuField >= 0">
<xsl:call-template name="getFieldByIndex">
<xsl:with-param name="index" select="$otuField"/>
<xsl:with-param name="line" select="$line"/>
</xsl:call-template>
</xsl:when>
</xsl:choose>
</xsl:attribute>
</sample>
</xsl:if>
</xsl:template>