PostGIS  3.7.0dev-r@@SVN_REVISION@@

◆ parse_kml_multi()

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

Parse KML MultiGeometry.

Definition at line 503 of file lwgeom_in_kml.c.

504 {
505  LWGEOM *geom;
506  xmlNodePtr xa;
507 
508  geom = (LWGEOM *)lwcollection_construct_empty(COLLECTIONTYPE, 4326, 1, 0);
509 
510  for (xa = xnode->children ; xa != NULL ; xa = xa->next)
511  {
512 
513  if (xa->type != XML_ELEMENT_NODE) continue;
514  if (!is_kml_namespace(xa, false)) continue;
515 
516  if ( is_kml_element(xa, "Point")
517  || is_kml_element(xa, "LineString")
518  || is_kml_element(xa, "Polygon")
519  || is_kml_element(xa, "MultiGeometry"))
520  {
521 
522  if (xa->children == NULL) break;
523  geom = (LWGEOM*)lwcollection_add_lwgeom((LWCOLLECTION*)geom, parse_kml(xa, hasz));
524  }
525  }
526 
527  return geom;
528 }
#define COLLECTIONTYPE
Definition: liblwgeom.h:108
LWCOLLECTION * lwcollection_construct_empty(uint8_t type, int32_t srid, char hasz, char hasm)
Definition: lwcollection.c:92
LWCOLLECTION * lwcollection_add_lwgeom(LWCOLLECTION *col, const LWGEOM *geom)
Appends geom to the collection managed by col.
Definition: lwcollection.c:189
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)
Definition: lwgeom_in_kml.c:68

References COLLECTIONTYPE, is_kml_element(), 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: