-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSourceTime.xsl
More file actions
40 lines (37 loc) · 1.93 KB
/
Copy pathSourceTime.xsl
File metadata and controls
40 lines (37 loc) · 1.93 KB
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 version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gmd="http://www.isotc211.org/2005/gmd"
xmlns:gmi="http://www.isotc211.org/2005/gmi" xmlns:gmx="http://www.isotc211.org/2005/gmx"
xmlns:gsr="http://www.isotc211.org/2005/gsr" xmlns:gss="http://www.isotc211.org/2005/gss"
xmlns:gts="http://www.isotc211.org/2005/gts" xmlns:gml="http://www.opengis.net/gml/3.2"
xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:gfc="http://www.isotc211.org/2005/gfc" xmlns:vmf="http://www.altova.com/MapForce/UDF/vmf"
xmlns:fn="http://www.w3.org/2005/xpath-functions"
xmlns:grp="http://www.altova.com/Mapforce/grouping"
xmlns:xd="http://www.oxygenxml.com/ns/doc/xsl"
exclude-result-prefixes="fn grp vmf xs xsi xsl xd" xmlns="http://www.isotc211.org/2005/gmi">
<xd:doc scope="stylesheet">
<xd:desc>
<xd:p>../gpm2iso/SourceTime.xsl</xd:p>
<xd:p><xd:b>Created on:</xd:b> Jul 10, 2018</xd:p>
<xd:p><xd:b>Author:</xd:b> mccre004</xd:p>
<xd:p></xd:p>
</xd:desc>
</xd:doc>
<xsl:template name="SourceTime">
<xsl:element name="gmd:sourceExtent">
<xsl:element name="gmd:EX_Extent">
<xsl:element name="gmd:temporalElement">
<xsl:element name="gmd:EX_TemporalExtent">
<xsl:element name="gmd:extent">
<xsl:element name="gml:TimePeriod">
<xsl:element name="gml:description"></xsl:element>
</xsl:element>
</xsl:element>
</xsl:element>
</xsl:element>
</xsl:element>
</xsl:element>
</xsl:template>
</xsl:stylesheet>