-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathset-uuid.xsl
40 lines (29 loc) · 1.28 KB
/
set-uuid.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
29
30
31
32
33
34
35
36
37
38
39
40
<?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:gmd="http://www.isotc211.org/2005/gmd"
xmlns:gvq="http://www.geoviqua.org/QualityInformationModel/4.0" exclude-result-prefixes="gmd">
<!-- ================================================================= -->
<xsl:template match="/root">
<xsl:apply-templates select="gvq:GVQ_Metadata"/>
</xsl:template>
<!-- ================================================================= -->
<xsl:template match="gvq:GVQ_Metadata">
<xsl:copy>
<xsl:copy-of select="@*"/>
<gmd:fileIdentifier>
<gco:CharacterString><xsl:value-of select="/root/env/uuid"/></gco:CharacterString>
</gmd:fileIdentifier>
<xsl:apply-templates select="node()"/>
</xsl:copy>
</xsl:template>
<!-- ================================================================= -->
<xsl:template match="gmd:fileIdentifier"/>
<!-- ================================================================= -->
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
<!-- ================================================================= -->
</xsl:stylesheet>