Parse KML MultiGeometry.
504{
506 xmlNodePtr xa;
507
509
510 for (xa = xnode->children ; xa != NULL ; xa = xa->next)
511 {
512
513 if (xa->type != XML_ELEMENT_NODE) continue;
515
520 {
521
522 if (xa->children == NULL) break;
524 }
525 }
526
527 return geom;
528}
LWCOLLECTION * lwcollection_construct_empty(uint8_t type, int32_t srid, char hasz, char hasm)
LWCOLLECTION * lwcollection_add_lwgeom(LWCOLLECTION *col, const LWGEOM *geom)
Appends geom to the collection managed by col.
static LWGEOM * parse_kml(xmlNodePtr xnode, bool *hasz)
Parse KML.
static bool is_kml_namespace(xmlNodePtr xnode, bool is_strict)
Return false if current element namespace is not a KML one Return true otherwise.
static bool is_kml_element(xmlNodePtr xn, const char *kml_name)