PostGIS  3.4.0dev-r@@SVN_REVISION@@

◆ parse_kml()

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

Parse KML.

Definition at line 512 of file lwgeom_in_kml.c.

513 {
514  xmlNodePtr xa = xnode;
515 
516  while (xa != NULL && (xa->type != XML_ELEMENT_NODE
517  || !is_kml_namespace(xa, false))) xa = xa->next;
518 
519  if (xa == NULL) lwpgerror("invalid KML representation");
520 
521  if (!strcmp((char *) xa->name, "Point"))
522  return parse_kml_point(xa, hasz);
523 
524  if (!strcmp((char *) xa->name, "LineString"))
525  return parse_kml_line(xa, hasz);
526 
527  if (!strcmp((char *) xa->name, "Polygon"))
528  return parse_kml_polygon(xa, hasz);
529 
530  if (!strcmp((char *) xa->name, "MultiGeometry"))
531  return parse_kml_multi(xa, hasz);
532 
533  lwpgerror("invalid KML representation");
534  return NULL; /* Never reach */
535 }
static LWGEOM * parse_kml_line(xmlNodePtr xnode, bool *hasz)
Parse KML lineString.
static LWGEOM * parse_kml_multi(xmlNodePtr xnode, bool *hasz)
Parse KML MultiGeometry.
static LWGEOM * parse_kml_polygon(xmlNodePtr xnode, bool *hasz)
Parse KML Polygon.
static LWGEOM * parse_kml_point(xmlNodePtr xnode, bool *hasz)
Parse KML point.
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 is_kml_namespace(), parse_kml_line(), parse_kml_multi(), parse_kml_point(), and parse_kml_polygon().

Referenced by geom_from_kml(), and parse_kml_multi().

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