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
|
<?xml version="1.0" encoding="utf-8" ?>
<ogr:FeatureCollection
gml:id="aFeatureCollection"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://ogr.maptools.org/ statistics_text.xsd"
xmlns:ogr="http://ogr.maptools.org/"
xmlns:gml="http://www.opengis.net/gml/3.2">
<gml:boundedBy><gml:Null /></gml:boundedBy>
<ogr:featureMember>
<ogr:statistics_text gml:id="statistics_text.0">
<ogr:count>4</ogr:count>
<ogr:unique>2</ogr:unique>
<ogr:empty>1</ogr:empty>
<ogr:filled>3</ogr:filled>
<ogr:min>Test</ogr:min>
<ogr:max>Test</ogr:max>
<ogr:min_length>0</ogr:min_length>
<ogr:max_length>4</ogr:max_length>
<ogr:mean_length>3</ogr:mean_length>
<ogr:minority xsi:nil="true"/>
<ogr:majority>Test</ogr:majority>
</ogr:statistics_text>
</ogr:featureMember>
</ogr:FeatureCollection>
|