forked from geonetwork/util-gemet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgemet-to-simpleskos.xsl
243 lines (212 loc) · 9.07 KB
/
gemet-to-simpleskos.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs='http://www.w3.org/2000/01/rdf-schema#'
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:dcterms="http://purl.org/dc/terms/"
xmlns:foaf="http://xmlns.com/foaf/0.1/"
xmlns:gemet="http://www.eionet.europa.eu/gemet/2004/06/gemet-schema.rdf#"
version="2.0">
<!--
Convert GEMET Skos files into a simple skos structure
managed by GeoNetwork opensource.
-->
<xsl:output method="xml" indent="yes"/>
<xsl:variable name="debug" select="false()"/>
<xsl:variable name="maxStringLength" select="254"/>
<xsl:variable select="document('locales.xml')" name="locales"/>
<xsl:variable select="document('gemet-skoscore.rdf')" name="skoscore"/>
<xsl:variable name="withGroup" select="false()"/>
<!-- Concept, group and supergroup descriptions -->
<xsl:variable name="lang">
<lang>
<xsl:for-each select="$locales//locale">
<xsl:copy-of
select="document(concat('gemet-definitions-', ., '.rdf'))"/>
<xsl:copy-of select="document(concat('gemet-groups-', ., '.rdf'))"/>
</xsl:for-each>
</lang>
</xsl:variable>
<xsl:template name="header">
<!-- Scheme -->
<skos:ConceptScheme rdf:about="http://geonetwork-opensource.org/gemet">
<dc:title>GEMET</dc:title>
<dc:description>GEMET thesaurus for GeoNetwork opensource.
</dc:description>
<dc:creator>
<foaf:Organization>
<foaf:name>EEA</foaf:name>
</foaf:Organization>
</dc:creator>
<dc:uri>http://www.eionet.europa.eu/gemet/about?langcode=en</dc:uri>
<dc:rights>http://www.eionet.europa.eu/gemet/about?langcode=en</dc:rights>
<dcterms:issued>2012-07-20</dcterms:issued>
<dcterms:modified>2012-07-20</dcterms:modified>
<xsl:comment>Generated <xsl:value-of select="current-dateTime()"/>.
</xsl:comment>
<xsl:text>
</xsl:text>
<xsl:choose>
<xsl:when test="$withGroup">
<xsl:for-each
select="//skos:Collection[matches(@rdf:about, 'supergroup/[0-9]+$')]">
<xsl:sort select="@rdf:about"/>
<skos:hasTopConcept
rdf:resource="http://www.eionet.europa.eu/gemet/{@rdf:about}"/>
</xsl:for-each>
</xsl:when>
<xsl:otherwise>
<!-- All concept with no broader term -->
<xsl:for-each
select="$skoscore//skos:Concept[matches(@rdf:about, 'concept/[0-9]+$') and not(skos:broader)]">
<xsl:sort select="@rdf:about"/>
<skos:hasTopConcept
rdf:resource="http://www.eionet.europa.eu/gemet/{@rdf:about}"/>
</xsl:for-each>
</xsl:otherwise>
</xsl:choose>
</skos:ConceptScheme>
</xsl:template>
<!-- Based on gemet-backbone.rdf -->
<xsl:template match="/">
<rdf:RDF>
<xsl:call-template name="header"/>
<xsl:if test="$withGroup">
<xsl:comment>GEMET supergroups</xsl:comment>
<xsl:text>
</xsl:text>
<xsl:for-each
select="//skos:Collection[matches(@rdf:about, 'supergroup/[0-9]+$')]">
<xsl:sort select="@rdf:about"/>
<xsl:variable name="id" select="@rdf:about"/>
<skos:Concept rdf:about="http://www.eionet.europa.eu/gemet/{$id}">
<xsl:for-each
select="$lang//rdf:Description[@rdf:about = $id]">
<xsl:variable name="l" select="../@xml:lang"/>
<xsl:if
test="normalize-space(rdfs:label) != ''">
<xsl:element name="skos:prefLabel">
<xsl:attribute name="xml:lang">
<xsl:value-of select="$l"/>
</xsl:attribute>
<xsl:value-of select="rdfs:label"/>
</xsl:element>
</xsl:if>
</xsl:for-each>
<!-- Search groups -->
<xsl:for-each
select="//gemet:subGroupOf/rdf:Description[@rdf:about = $id]/skos:member/@rdf:resource">
<skos:narrower
rdf:resource="http://www.eionet.europa.eu/gemet/{.}"/>
</xsl:for-each>
</skos:Concept>
</xsl:for-each>
<xsl:comment>GEMET groups</xsl:comment>
<xsl:text>
</xsl:text>
<xsl:for-each
select="//skos:Collection[matches(@rdf:about, 'group/[0-9]+$')]">
<xsl:sort select="@rdf:about"/>
<xsl:variable name="id" select="@rdf:about"/>
<skos:Concept rdf:about="http://www.eionet.europa.eu/gemet/{$id}">
<xsl:for-each
select="$lang//rdf:Description[@rdf:about = $id]">
<xsl:variable name="l" select="../@xml:lang"/>
<xsl:if
test="normalize-space(rdfs:label) != ''">
<xsl:element name="skos:prefLabel">
<xsl:attribute name="xml:lang">
<xsl:value-of select="$l"/>
</xsl:attribute>
<xsl:value-of select="rdfs:label"/>
</xsl:element>
</xsl:if>
</xsl:for-each>
<!-- Search groups -->
<xsl:for-each
select="//skos:Collection[@rdf:about = $id]/gemet:subGroupOf/rdf:Description/@rdf:about">
<skos:broader
rdf:resource="http://www.eionet.europa.eu/gemet/{.}"/>
</xsl:for-each>
<!-- Search theme -->
<xsl:for-each
select="//gemet:group/rdf:Description[@rdf:about = $id]/skos:member/@rdf:resource[starts-with(., 'concept')]">
<skos:narrower
rdf:resource="http://www.eionet.europa.eu/gemet/{.}"/>
</xsl:for-each>
</skos:Concept>
</xsl:for-each>
</xsl:if>
<!--<xsl:comment>GEMET themes</xsl:comment>
<xsl:for-each select="//skos:Collection[matches(@rdf:about, 'theme/[0-9]+$')]">
<xsl:sort select="@rdf:about"/>
<xsl:variable name="id" select="@rdf:about"/>
<skos:Concept rdf:about="http://www.eionet.europa.eu/gemet/{$id}">
<xsl:for-each
select="$lang//rdf:Description[@rdf:about = $id]">
<xsl:variable name="l" select="../@xml:lang"/>
<xsl:if
test="normalize-space(rdfs:label) != ''">
<xsl:element name="skos:prefLabel">
<xsl:attribute name="xml:lang">
<xsl:value-of select="$l"/>
</xsl:attribute>
<xsl:value-of select="rdfs:label"/>
</xsl:element>
</xsl:if>
</xsl:for-each>
<xsl:for-each select="//gemet:subGroupOf/rdf:Description/@rdf:about">
<skos:broader rdf:resource="http://www.eionet.europa.eu/gemet/{.}"/>
</xsl:for-each>
</skos:Concept>
</xsl:for-each>-->
<xsl:comment>GEMET concepts</xsl:comment>
<xsl:text>
</xsl:text>
<xsl:for-each
select="//rdf:Description[matches(@rdf:about, 'concept/[0-9]+$')]">
<xsl:sort select="@rdf:about"/>
<xsl:variable name="id" select="@rdf:about"/>
<skos:Concept rdf:about="http://www.eionet.europa.eu/gemet/{$id}">
<xsl:for-each
select="$lang//rdf:Description[@rdf:about = $id]">
<xsl:variable name="l" select="../@xml:lang"/>
<xsl:if
test="normalize-space(skos:prefLabel) != ''">
<xsl:element name="skos:prefLabel">
<xsl:attribute name="xml:lang">
<xsl:value-of select="$l"/>
</xsl:attribute>
<xsl:value-of select="skos:prefLabel"/>
</xsl:element>
</xsl:if>
<xsl:if test="normalize-space(skos:definition) != '' or
normalize-space(skos:scopeNote) != ''">
<xsl:element name="skos:scopeNote">
<xsl:attribute name="xml:lang">
<xsl:value-of select="$l"/>
</xsl:attribute>
<xsl:value-of select="skos:definition|skos:scopeNote"/>
</xsl:element>
</xsl:if>
</xsl:for-each>
<xsl:if test="$withGroup">
<xsl:for-each select="gemet:group/rdf:Description/@rdf:about">
<skos:broader
rdf:resource="http://www.eionet.europa.eu/gemet/{.}"/>
</xsl:for-each>
</xsl:if>
<xsl:for-each select="$skoscore//skos:Concept[@rdf:about = $id]/
*[local-name() = 'narrower' or
local-name() = 'broader' or
local-name() = 'related']">
<xsl:copy>
<xsl:attribute name="rdf:resource"
select="concat('http://www.eionet.europa.eu/gemet/', @rdf:resource)"/>
</xsl:copy>
</xsl:for-each>
</skos:Concept>
</xsl:for-each>
</rdf:RDF>
</xsl:template>
</xsl:stylesheet>