如何将纬度和经度值替换为一个元素值?

时间:2018-05-15 16:42:09

标签: xquery marklogic

xml file looks like this 怎么做到这一点? 您需要将纬度和经度的值替换为一个元素值。

例如: 现有的

<Longitude>-0.30365</Longitude>
<Latitude>51.61965</Latitude>

新的: <cordinate-point>-0.30365,51.619165<cordinate-point>

2 个答案:

答案 0 :(得分:2)

您可以使用xdmp:node-insert-before()xdmp:node-delete()函数:

let $doc :- fn:doc("/uri/of/your/doc.xml")
let $long := $doc/root/Longitude
let $lat := $doc/root/Latitude
(: construct an element with text() value of the Longitude and Latitude elements :)
let $point := <cordinate-point>{string-join(($lat,$long), ",")}</cordinate-point>
return
  (
    (: insert a new coordinate-point element before the Longitude element :)
    xdmp:node-insert-before($long, $point),
    (: Remove the Longitude element :)
    xdmp:node-delete($long),
    (: Remove the Latitude element :)
    xdmp:node-delete($lat)
  )

答案 1 :(得分:0)

您可以使用带有本地评估样式表的xdmp:xslt-eval()或带有已安装XSLT的xdmp:xslt-invoke()来使用XSLT转换文档,然后使用{{3}将现有文档替换为转换结果}:

declare variable $XSLT := 
  <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    version="2.0">
    <xsl:output method="xml" indent="yes"/>

    <xsl:template match="@*|node()">
      <xsl:copy>
        <xsl:apply-templates select="@*|node()"/>
      </xsl:copy>
    </xsl:template>
    <!--replace the Latitude element with a cordinate-point element -->
    <xsl:template match="Latitude">
        <cordinate-point>
            <xsl:value-of select="., ../Longitude" separator=","/>
        </cordinate-point>
    </xsl:template>

    <!--drop the Longitude element -->
    <xsl:template match="Longitude"/>

</xsl:stylesheet>;

let $doc := fn:doc("/uri/to/your/doc.xml")
return
    xdmp:node-replace($doc, xdmp:xslt-eval($XSLT, $doc))