diff options
author | Miika Turkia <miika.turkia@gmail.com> | 2015-11-03 18:12:48 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-12-06 09:21:58 -0800 |
commit | 2bf84e6a5e9146576cf138fdd73b6b0efdc6661b (patch) | |
tree | 8278034784d77a3d79215413d25c32e52b3f1b4e /xslt | |
parent | 9a3532b0cd59a200dd8e4400013928960f50beef (diff) | |
download | subsurface-2bf84e6a5e9146576cf138fdd73b6b0efdc6661b.tar.gz |
Only include samples with data on UDDF import
According to the specification each proper sample should have depth, so
we can just ignore the empty waypoints.
Signed-off-by: Miika Turkia <miika.turkia@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'xslt')
-rw-r--r-- | xslt/uddf.xslt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/xslt/uddf.xslt b/xslt/uddf.xslt index d37bf6795..dddd8bd17 100644 --- a/xslt/uddf.xslt +++ b/xslt/uddf.xslt @@ -458,6 +458,7 @@ </xsl:for-each> <xsl:for-each select="samples/waypoint|u:samples/u:waypoint|u1:samples/u1:waypoint|samples/d"> + <xsl:if test="./depth|./u:depth|./u1:depth != ''"> <sample> <xsl:attribute name="time"> <xsl:call-template name="timeConvert"> @@ -558,6 +559,7 @@ </xsl:attribute> </xsl:if> </sample> + </xsl:if> </xsl:for-each> </divecomputer> </dive> |