diff options
author | Miika Turkia <miika.turkia@gmail.com> | 2017-02-08 06:02:06 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2017-02-09 09:22:30 -0800 |
commit | d23717523bf577fb6565d28dd91247bb095fe2ec (patch) | |
tree | d58aad2fc7cab2f07fc9ba42ad1e931c167f7244 | |
parent | 24f61e8b3df1ca7b4c0ff33cb11594f3ac062fad (diff) | |
download | subsurface-d23717523bf577fb6565d28dd91247bb095fe2ec.tar.gz |
Define numberField variable on CSV import
We need to define the import variables that we use. This should fix the
Seabear HUDC import and thus the corresponding test case.
-rw-r--r-- | xslt/csv2xml.xslt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/xslt/csv2xml.xslt b/xslt/csv2xml.xslt index 219ca73a1..bbd2b14d6 100644 --- a/xslt/csv2xml.xslt +++ b/xslt/csv2xml.xslt @@ -19,6 +19,7 @@ <xsl:param name="stopdepthField" select="stopdepthField"/> <xsl:param name="pressureField" select="pressureField"/> <xsl:param name="setpointField" select="setpointField"/> + <xsl:param name="numberField" select="numberField"/> <xsl:param name="date" select="date"/> <xsl:param name="time" select="time"/> <xsl:param name="units" select="units"/> |