PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ parse_kml()

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

Parse KML.

Definition at line 517 of file lwgeom_in_kml.c.

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().

518 {
519  xmlNodePtr xa = xnode;
520 
521  while (xa != NULL && (xa->type != XML_ELEMENT_NODE
522  || !is_kml_namespace(xa, false))) xa = xa->next;
523 
524  if (xa == NULL) lwpgerror("invalid KML representation");
525 
526  if (!strcmp((char *) xa->name, "Point"))
527  return parse_kml_point(xa, hasz);
528 
529  if (!strcmp((char *) xa->name, "LineString"))
530  return parse_kml_line(xa, hasz);
531 
532  if (!strcmp((char *) xa->name, "Polygon"))
533  return parse_kml_polygon(xa, hasz);
534 
535  if (!strcmp((char *) xa->name, "MultiGeometry"))
536  return parse_kml_multi(xa, hasz);
537 
538  lwpgerror("invalid KML representation");
539  return NULL; /* Never reach */
540 }
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 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 LWGEOM * parse_kml_line(xmlNodePtr xnode, bool *hasz)
Parse KML lineString.
Here is the call graph for this function:
Here is the caller graph for this function: