我有这个XML源文件:
<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="c:\ISO19139_rve.xsl"?>
<MD_Metadata xmlns="http://www.isotc211.org/schemas/2005/gmd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:gco="http://www.isotc211.org/schemas/2005/gco" xmlns:gml="http://www.opengis.net/gml" xmlns:xlink="http://www.w3.org/1999/xlink" xsi:schemaLocation="http://www.isotc211.org/schemas/2005/gmd/gmd.xsd">
<identificationInfo>
<MD_DataIdentification>
<extent>
<EX_Extent>
<geographicElement>
<EX_GeographicExtent>
<EX_GeographicBoundingBox>
<westBoundLongitude>
<gco:Decimal>1</gco:Decimal>
</westBoundLongitude>
<eastBoundLongitude>
<gco:Decimal>2</gco:Decimal>
</eastBoundLongitude>
<southBoundLatitude>
<gco:Decimal>3</gco:Decimal>
</southBoundLatitude>
<northBoundLatitude>
<gco:Decimal>4</gco:Decimal>
</northBoundLatitude>
</EX_GeographicBoundingBox>
</EX_GeographicExtent>
</geographicElement>
<temporalElement>
<EX_TemporalExtent>
<extent>
<gml:TimePeriod gml:id="tp1">
<gml:begin>
<gml:TimeIstant gml:id="ti1">
<gml:timePosition>2007-12-01</gml:timePosition>
</gml:TimeIstant>
</gml:begin>
<gml:end>
<gml:TimeIstant gml:id="ti2">
<gml:timePosition>2010-01-01</gml:timePosition>
</gml:TimeIstant>
</gml:end>
</gml:TimePeriod>
</extent>
</EX_TemporalExtent>
</temporalElement>
</EX_Extent>
</extent>
</MD_DataIdentification>
</identificationInfo>
</MD_Metadata>
我需要用这个简单的替换块:
...
<gml:TimePeriod gml:id="TP1">
<gml:beginPosition>2007-12-01</gml:beginPosition>
<gml:endPosition>2010-01-01</gml:endPosition>
</gml:TimePeriod>
...
这是我的转变:
<xsl:stylesheet
version="2.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:gml="http://www.opengis.net/gml/3.2"
xmlns:gco="http://www.isotc211.org/schemas/2005/gco"
xmlns:gmd="http://www.isotc211.org/schemas/2005/gmd"
xmlns="http://www.isotc211.org/schemas/2005/gmd"
>
<xsl:strip-space elements="*"/>
<xsl:output indent="yes" encoding="UTF-8"/>
<!-- identity template -->
<xsl:template match="node() | @*">
<xsl:copy>
<xsl:apply-templates select="node() | @*" />
</xsl:copy>
</xsl:template>
<xsl:template match="gml:TimePeriod">
<xsl:copy>
<xsl:apply-templates select="@*"/>
<beginPosition>
<xsl:value-of select="gml:begin/gml:TimeIstant/gml:timePosition"/>
</beginPosition>
<endPosition>
<xsl:value-of select="gml:end/gml:TimeIstant/gml:timePosition"/>
</endPosition>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
样式表顶部有xmlns:gml="http://www.opengis.net/gml"
声明,但我认为这是命名空间问题。
如果我在
<xsl:template match="gml:TimePeriod" exclude-result-prefixes="#all">
行,我从不进入该代码。
似乎如果我需要通过<gmd:...>
元素,一切正常,但当我需要到达<gml:...>
(或任何其他不同于gmd)元素时,它不匹配。
- 于2014-04-15更新 -
我忘了指定我还需要将"tp1"
元素的<gml:TimePeriod gml:id="tp1">
属性值转换为UPPER-CASE。在实际转型中我需要改变什么?
答案 0 :(得分:3)
正如Tomalak在评论中提到的,问题的根本原因是您在输入XML和样式表中有不同的名称空间URI映射到gml
前缀,因此XML中的元素和元素XSLT希望匹配的不一样。
关于你的补充:
我忘了指定我还需要将
<gml:TimePeriod gml:id="tp1">
元素的“tp1”属性值转换为UPPER-CASE。在实际转型中我需要改变什么?
这应该只是添加一个额外的模板(一旦你的名称空间对齐)并使用XPath 2.0 upper-case
函数:
<xsl:template match="gml:TimePeriod/@gml:id">
<xsl:attribute name="gml:id" select="upper-case(.)" />
</xsl:template>
这只会影响gml:TimePeriod
元素的ID,如果您想要大写所有 ID,那么只需改为match="@gml:id"
。