Fix name for temperature sample on UDDF import

Signed-off-by: Miika Turkia <miika.turkia@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Miika Turkia 2014-12-13 22:00:33 +02:00 committed by Dirk Hohndel
parent 41e9ec12e2
commit e5c291aca4

View file

@ -427,13 +427,13 @@
</xsl:choose> </xsl:choose>
<xsl:if test="temperature != '' and $temperatureSamples &gt; 0"> <xsl:if test="temperature != '' and $temperatureSamples &gt; 0">
<xsl:attribute name="temperature"> <xsl:attribute name="temp">
<xsl:value-of select="concat(format-number(temperature - 273.15, '0.0'), ' C')"/> <xsl:value-of select="concat(format-number(temperature - 273.15, '0.0'), ' C')"/>
</xsl:attribute> </xsl:attribute>
</xsl:if> </xsl:if>
<xsl:if test="u:temperature|u1:temperature != '' and $temperatureSamples &gt; 0"> <xsl:if test="u:temperature|u1:temperature != '' and $temperatureSamples &gt; 0">
<xsl:attribute name="temperature"> <xsl:attribute name="temp">
<xsl:value-of select="concat(format-number(u:temperature|u1:temperature - 273.15, '0.0'), ' C')"/> <xsl:value-of select="concat(format-number(u:temperature|u1:temperature - 273.15, '0.0'), ' C')"/>
</xsl:attribute> </xsl:attribute>
</xsl:if> </xsl:if>