diff options
author | Anton Lundin <glance@acc.umu.se> | 2013-11-21 23:48:40 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-11-21 15:54:16 -0800 |
commit | 8dde12fa35e0e53f93efef8a99a7fe2e625e901c (patch) | |
tree | cef056e4a8baed9b2ed65005631456e5c2d42f9c /xslt | |
parent | 907a22f37e3acd6c12b2299ad331c3ea81d56f24 (diff) | |
download | subsurface-8dde12fa35e0e53f93efef8a99a7fe2e625e901c.tar.gz |
Add optional support for po2 import from csv files
Signed-off-by: Anton Lundin <glance@acc.umu.se>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'xslt')
-rw-r--r-- | xslt/csv2xml.xslt | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/xslt/csv2xml.xslt b/xslt/csv2xml.xslt index 677e83613..6a72ffa17 100644 --- a/xslt/csv2xml.xslt +++ b/xslt/csv2xml.xslt @@ -5,6 +5,7 @@ <xsl:param name="timeField" select="timeField"/> <xsl:param name="depthField" select="depthField"/> <xsl:param name="tempField" select="tempField"/> + <xsl:param name="po2Field" select="po2Field"/> <xsl:param name="date" select="date"/> <xsl:param name="time" select="time"/> <xsl:output method="xml" indent="yes"/> @@ -105,6 +106,17 @@ </xsl:when> </xsl:choose> </xsl:attribute> + + <xsl:attribute name="po2"> + <xsl:choose> + <xsl:when test="$po2Field >= 0"> + <xsl:call-template name="getFieldByIndex"> + <xsl:with-param name="index" select="$po2Field"/> + <xsl:with-param name="line" select="$line"/> + </xsl:call-template> + </xsl:when> + </xsl:choose> + </xsl:attribute> </sample> </xsl:if> </xsl:template> |