diff options
-rw-r--r-- | xslt/SuuntoSDM.xslt | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/xslt/SuuntoSDM.xslt b/xslt/SuuntoSDM.xslt index 64564adf1..ed130ae2c 100644 --- a/xslt/SuuntoSDM.xslt +++ b/xslt/SuuntoSDM.xslt @@ -62,6 +62,14 @@ </xsl:otherwise> </xsl:choose> + <xsl:if test="WEIGTH != ''"> + <weightsystem> + <xsl:attribute name="weight"> + <xsl:value-of select="concat(WEIGTH, ' kg')"/> + </xsl:attribute> + </weightsystem> + </xsl:if> + <notes> <xsl:if test="LOGNOTES != ''"> <xsl:value-of select="LOGNOTES" /> @@ -69,6 +77,9 @@ <xsl:if test="WEATHER != ''"> Weather: <xsl:value-of select="WEATHER" /> </xsl:if> + <xsl:if test="WATERVISIBILITYDESC != ''"> + Visibility: <xsl:value-of select="WATERVISIBILITYDESC" /> + </xsl:if> </notes> <!-- FIXME: add support for multiple cylinders, need sample data --> |