Merge pull request #13749 from ahocevar/gml-polygon-ring-curve

Support GML polygons with ring curves instead of linear rings
This commit is contained in:
Andreas Hocevar
2022-06-12 13:35:41 +02:00
committed by GitHub
3 changed files with 118 additions and 10 deletions

View File

@@ -13,6 +13,7 @@ import {
XML_SCHEMA_INSTANCE_URI,
createElementNS,
getAllTextContent,
makeArrayExtender,
makeArrayPusher,
makeChildAppender,
makeReplacer,
@@ -133,6 +134,27 @@ class GML3 extends GMLBase {
}
}
/**
* @param {Element} node Node.
* @param {Array<*>} objectStack Object stack.
* @return {Array<number>|undefined} Polygon.
*/
readFlatCurveRing(node, objectStack) {
/** @type {Array<LineString>} */
const lineStrings = pushParseAndPop(
[],
this.MULTICURVE_PARSERS,
node,
objectStack,
this
);
const flatCoordinates = [];
for (let i = 0, ii = lineStrings.length; i < ii; ++i) {
extend(flatCoordinates, lineStrings[i].getFlatCoordinates());
}
return flatCoordinates;
}
/**
* @param {Element} node Node.
* @param {Array<*>} objectStack Object stack.
@@ -189,13 +211,7 @@ class GML3 extends GMLBase {
* @return {Array<number>|undefined} flat coordinates.
*/
readSegment(node, objectStack) {
return pushParseAndPop(
[null],
this.SEGMENTS_PARSERS,
node,
objectStack,
this
);
return pushParseAndPop([], this.SEGMENTS_PARSERS, node, objectStack, this);
}
/**
@@ -1161,7 +1177,20 @@ GML3.prototype.PATCHES_PARSERS = {
*/
GML3.prototype.SEGMENTS_PARSERS = {
'http://www.opengis.net/gml': {
'LineStringSegment': makeReplacer(GML3.prototype.readLineStringSegment),
'LineStringSegment': makeArrayExtender(
GML3.prototype.readLineStringSegment
),
},
};
/**
* @const
* @type {Object<string, Object<string, import("../xml.js").Parser>>}
*/
GMLBase.prototype.RING_PARSERS = {
'http://www.opengis.net/gml': {
'LinearRing': makeReplacer(GMLBase.prototype.readFlatLinearRing),
'Ring': makeReplacer(GML3.prototype.readFlatCurveRing),
},
};

View File

@@ -4,7 +4,12 @@
import GML2 from './GML2.js';
import GML3 from './GML3.js';
import GMLBase from './GMLBase.js';
import {makeArrayPusher, makeChildAppender, makeReplacer} from '../xml.js';
import {
makeArrayExtender,
makeArrayPusher,
makeChildAppender,
makeReplacer,
} from '../xml.js';
import {writeStringTextNode} from '../format/xsd.js';
/**
@@ -169,7 +174,9 @@ GML32.prototype.PATCHES_PARSERS = {
*/
GML32.prototype.SEGMENTS_PARSERS = {
'http://www.opengis.net/gml/3.2': {
'LineStringSegment': makeReplacer(GML3.prototype.readLineStringSegment),
'LineStringSegment': makeArrayExtender(
GML3.prototype.readLineStringSegment
),
},
};
@@ -247,6 +254,7 @@ GML32.prototype.POLYGONMEMBER_PARSERS = {
GML32.prototype.RING_PARSERS = {
'http://www.opengis.net/gml/3.2': {
'LinearRing': makeReplacer(GMLBase.prototype.readFlatLinearRing),
'Ring': makeReplacer(GML32.prototype.readFlatCurveRing),
},
};