-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathunset-thumbnail.xsl
28 lines (20 loc) · 1003 Bytes
/
unset-thumbnail.xsl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
xmlns:gco="http://www.isotc211.org/2005/gco"
xmlns:geonet="http://www.fao.org/geonetwork"
xmlns:gmd="http://www.isotc211.org/2005/gmd"
xmlns:gvq="http://www.geoviqua.org/QualityInformationModel/4.0">
<!-- ================================================================= -->
<xsl:template match="/root">
<xsl:apply-templates select="gvq:GVQ_Metadata"/>
</xsl:template>
<!-- ================================================================= -->
<xsl:template match="gmd:graphicOverview[gmd:MD_BrowseGraphic/gmd:fileDescription/gco:CharacterString = /root/env/type]"/>
<!-- ================================================================= -->
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="geonet:info" priority="2"/>
</xsl:stylesheet>