2

SQL地理タイプをjson配列に変換する必要があるプロジェクトに取り組んでいます。この時点で私が選んだ方法は、AsGML を使用して SQL 地理を選択することです (GML 表現が得られます)。

xslt を使用して、この結果の GML を必要な json 形式に変換しています。

私は xslt の専門家ではありません。これはおそらく簡単な問題です。

私が今抱えている問題は、posList 要素の戻り値の末尾にコンマがあり、最終結果から削除できないことです。

よろしくお願いいたします。コード例は次のとおりです。

XSL:

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:template match="MultiSurface">
<MultiGeometry>
<xsl:apply-templates />
</MultiGeometry>
</xsl:template>
<xsl:template match="Polygon">
<Polygon>
<xsl:apply-templates />
</Polygon>
</xsl:template>
<xsl:template match="Point">
<Point>
<xsl:apply-templates />
</Point>
</xsl:template>
<xsl:template match="exterior">
{"ringtype":"exterior",
<xsl:apply-templates />
},
</xsl:template>
<xsl:template match="interior">
{"ringtype":"interior",
<xsl:apply-templates />
},
</xsl:template>
<xsl:template match="posList">
"coordinates":[
<xsl:call-template name="split">
<xsl:with-param name="str" select="normalize-space(.)" />
</xsl:call-template>
]
</xsl:template>
<xsl:template match="pos">
<coordinates>
<xsl:call-template name="split">
<xsl:with-param name="str" select="normalize-space(.)" />
</xsl:call-template>
</coordinates>
</xsl:template>
<xsl:template name="split">
<xsl:param name="str" />
<xsl:choose>
<xsl:when test="contains($str,'' '')">
<xsl:variable name="first">
<xsl:value-of select="format-number(number(substring-before($str,'' '')),''00.000000'')" />
</xsl:variable>
<xsl:variable name="second">
<xsl:value-of select="format-number(number(substring-before(substring-after(concat($str,'' ''),'' ''),'' '')),''00.000000'')" />
</xsl:variable>
<xsl:value-of select="concat(''['',$first,'','',$second,''],'')" />
<xsl:call-template name="split">
<xsl:with-param name="str">
<xsl:value-of select="substring-after(substring-after($str,'' ''),'' '')"/>
</xsl:with-param>
</xsl:call-template>
</xsl:when>
</xsl:choose>
</xsl:template>
</xsl:stylesheet>

入力例:

<Polygon xmlns="http://www.opengis.net/gml">
  <exterior>
    <LinearRing>
      <posList>32.230546755000034 -95.316506964999917 32.230542547000084 -95.316051441999946</posList>
    </LinearRing>
  </exterior>
</Polygon>

出力例 (座標要素の末尾のコンマに注意してください)

<Polygon>
{"ringtype":"exterior",
"coordinates":[
[32.230547,-95.316507],[32.230543,-95.316051],[32.230536,-95.315358],
]
},
</Polygon>
4

1 に答える 1

3

xslt をコンパイルしないものから余分なコンマを生成しないものに修正しました (そして多くの修正がありました) 。

<xsl:stylesheet version="1.0"
 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
 xmlns:x="http://www.opengis.net/gml" exclude-result-prefixes="x">
 <xsl:output omit-xml-declaration="yes" indent="yes"/>
 <xsl:strip-space elements="*"/>

    <xsl:template match="x:MultiSurface">
        <MultiGeometry>
            <xsl:apply-templates />
        </MultiGeometry>
    </xsl:template>

    <xsl:template match="x:Polygon">
        <Polygon>
            <xsl:apply-templates />
        </Polygon>
    </xsl:template>

    <xsl:template match="x:Point">
        <Point>
            <xsl:apply-templates />
        </Point>
    </xsl:template>

    <xsl:template match="x:exterior">
    <xsl:if test="preceding-sibling::exterior">,</xsl:if>
    {"ringtype":"exterior",
        <xsl:apply-templates />
    }
    </xsl:template>

    <xsl:template match="x:interior">
    {"ringtype":"interior",
        <xsl:apply-templates />
    },
    </xsl:template>

    <xsl:template match="x:posList">
    "coordinates":[
        <xsl:call-template name="split">
            <xsl:with-param name="str" select="normalize-space(.)" />
        </xsl:call-template>
    ]
    </xsl:template>

    <xsl:template match="x:pos">
        <coordinates>
            <xsl:call-template name="split">
                <xsl:with-param name="str" select="normalize-space(.)" />
            </xsl:call-template>
        </coordinates>
    </xsl:template>

    <xsl:template name="split">
        <xsl:param name="str" />
        <xsl:choose>
            <xsl:when test="contains($str,' ')">
                <xsl:variable name="first">
                    <xsl:value-of select="format-number(number(substring-before($str,' ')),'00.000000')" />
                </xsl:variable>
                <xsl:variable name="second">
                    <xsl:value-of select="format-number(number(substring-before(substring-after(concat($str,' '),' '),' ')),'00.000000')" />
                </xsl:variable>
                <xsl:value-of select="concat('[',$first,',',$second,']')" />

                <xsl:if test="substring-after(substring-after($str,' '),' ')">
                 <xsl:text>, </xsl:text>
                    <xsl:call-template name="split">
                        <xsl:with-param name="str">
                            <xsl:value-of select="substring-after(substring-after($str,' '),' ')"/>
                        </xsl:with-param>
                    </xsl:call-template>
                </xsl:if>
            </xsl:when>
        </xsl:choose>
    </xsl:template>
</xsl:stylesheet>

提供された XML ドキュメントに適用した場合:

<Polygon xmlns="http://www.opengis.net/gml">
    <exterior>
        <LinearRing>
            <posList>32.230546755000034 -95.316506964999917 32.230542547000084 -95.316051441999946</posList>
        </LinearRing>
    </exterior>
</Polygon>

必要な正しい結果が生成されます。

<Polygon>
    {"ringtype":"exterior",

    "coordinates":[
        [32.230547,-95.316507], [32.230543,-95.316051]
    ]

    }
    </Polygon>
于 2012-08-05T21:12:45.497 に答える