Mercurial > repos > ecology > data_paper_from_eml
diff emldown_templates/temporal_coverage.xsl @ 0:cfe884e53600 draft default tip
planemo upload for repository https://github.com/galaxyecology/tools-ecology/tree/main/tools-ecology/tools/make_data_paper_sketches commit 34f4e0604adc2a2ba4902ce6b8e6df2460eda292
author | ecology |
---|---|
date | Tue, 15 Oct 2024 20:33:48 +0000 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/emldown_templates/temporal_coverage.xsl Tue Oct 15 20:33:48 2024 +0000 @@ -0,0 +1,43 @@ +<?xml version="1.0" encoding="UTF-8"?> +<xsl:stylesheet version="1.0" + xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> + + <xsl:template name="temporal_coverage" match="/"> + <xsl:choose> + <xsl:when test=".//temporalCoverage"> + <h3>Temporal coverage</h3> + + <!-- If there is a rangeOfDates node, create a table of the values --> + <xsl:if test="//dataset/coverage/temporalCoverage/rangeOfDates"> + <table class="table table-striped"> + <tr> + <th>Start date</th> + <th>End date</th> + </tr> + <xsl:for-each select="//dataset/coverage/temporalCoverage/rangeOfDates"> + <tr> + <td><xsl:value-of select="beginDate/calendarDate"/></td> + <td><xsl:value-of select="endDate/calendarDate"/></td> + </tr> + </xsl:for-each> + </table> + </xsl:if> + + <!-- If there is a singleDateTime node, create a table of the values --> + <xsl:if test="//dataset/coverage/temporalCoverage/singleDateTime"> + <table class="table table-striped"> + <tr> + <th>Date</th> + </tr> + <xsl:for-each select="//dataset/coverage/temporalCoverage/singleDateTime"> + <tr> + <td><xsl:value-of select="calendarDate"/></td> + </tr> + </xsl:for-each> + </table> + </xsl:if> + </xsl:when> + </xsl:choose> + </xsl:template> +</xsl:stylesheet> +