PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ parse_kml_multi()

static LWGEOM* parse_kml_multi ( xmlNodePtr  xnode,
bool *  hasz 
)
static

Parse KML MultiGeometry.

Definition at line 487 of file lwgeom_in_kml.c.

488 {
489  LWGEOM *geom;
490  xmlNodePtr xa;
491 
492  geom = (LWGEOM *)lwcollection_construct_empty(COLLECTIONTYPE, 4326, 1, 0);
493 
494  for (xa = xnode->children ; xa != NULL ; xa = xa->next)
495  {
496 
497  if (xa->type != XML_ELEMENT_NODE) continue;
498  if (!is_kml_namespace(xa, false)) continue;
499 
500  if ( !strcmp((char *) xa->name, "Point")
501  || !strcmp((char *) xa->name, "LineString")
502  || !strcmp((char *) xa->name, "Polygon")
503  || !strcmp((char *) xa->name, "MultiGeometry"))
504  {
505 
506  if (xa->children == NULL) break;
507  geom = (LWGEOM*)lwcollection_add_lwgeom((LWCOLLECTION*)geom, parse_kml(xa, hasz));
508  }
509  }
510 
511  return geom;
512 }
#define COLLECTIONTYPE
Definition: liblwgeom.h:91
LWCOLLECTION * lwcollection_construct_empty(uint8_t type, int srid, char hasz, char hasm)
Definition: lwcollection.c:94
LWCOLLECTION * lwcollection_add_lwgeom(LWCOLLECTION *col, const LWGEOM *geom)
Appends geom to the collection managed by col.
Definition: lwcollection.c:187
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.

References COLLECTIONTYPE, is_kml_namespace(), lwcollection_add_lwgeom(), lwcollection_construct_empty(), and parse_kml().

Referenced by parse_kml().

Here is the call graph for this function:
Here is the caller graph for this function: