0

GML を解析して空間データを返す最良の方法を探しています。例として、GML ファイルを次に示します。

<?xml version="1.0" encoding="utf-8"?>
<gml:FeatureCollection xmlns:gml="http://www.opengis.net/gml"
    xmlns:xlink="http://www.w3.org/1999/xlink"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:onecallgml="http://www.pelicancorp.com/onecallgml"
    xsi:schemaLocation="http://www.pelicancorp.com/onecallgml http://www.pelicancorp.com/digsafe/onecallgml.xsd">
<gml:featureMember>
    <onecallgml:OneCallReferral gml:id="digsite">
    <onecallgml:LocationDetails>    
    <gml:surfaceProperty>
    <gml:Polygon srsName="EPSG:2193">
    <gml:exterior>
    <gml:LinearRing>
    <gml:posList>
        1563229.00057526 5179234.72234694 1563576.83066077 5179352.36361939 1563694.22647617 5179123.23451613 1563294.42782719 5179000.13697214 1563229.00057526 5179234.72234694
    </gml:posList>
    </gml:LinearRing>
    </gml:exterior>
    </gml:Polygon>
    </gml:surfaceProperty>
    </onecallgml:LocationDetails>
    </onecallgml:OneCallReferral>
</gml:featureMember>
</gml:FeatureCollection>

各 featureMember を反復処理し、次にそのポリゴンを反復処理してから、posList 座標を配列に取得するにはどうすればよいですか?

4

1 に答える 1

0

VB.NET で XML を扱う場合は、LINQ to XMLを使用することをお勧めします。おそらく、より多くの情報を抽出したいと思うでしょう (例えば、featureMember に結び付ける何か) が、単純な例は次のようになります。

' You will need to import the XML namespace
Imports <xmlns:gml = "http://www.opengis.net/gml">
...
Dim xml As XElement = XElement.Parse(myGmlString) ' or some other method
Dim polys = (
    From fm In xml...<gml:featureMember>
    From poly In fm...<gml:Polygon>
    Select New With {
        .Name = poly.@srsName,
        .Coords = (poly...<gml:posList>.Value.Trim() _
            .Split({" "}, StringSplitOptions.RemoveEmptyEntries) _
            .Select(Function(x) CDbl(x))).ToArray()
    }
).ToList()

これにより、ポリゴン名と Double の配列としての座標を持つ匿名型のリストが得られます。

于 2014-08-05T17:13:21.377 に答える