PostGIS  3.1.6dev-r@@SVN_REVISION@@

◆ parse_kml_line()

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

Parse KML lineString.

Definition at line 402 of file lwgeom_in_kml.c.

403 {
404  POINTARRAY *pa;
405 
406  if (xnode->children == NULL) lwpgerror("invalid KML representation");
407  pa = parse_kml_coordinates(xnode->children, hasz);
408  if (pa->npoints < 2) lwpgerror("invalid KML representation");
409 
410  return (LWGEOM *) lwline_construct(4326, NULL, pa);
411 }
LWLINE * lwline_construct(int32_t srid, GBOX *bbox, POINTARRAY *points)
Definition: lwline.c:42
static POINTARRAY * parse_kml_coordinates(xmlNodePtr xnode, bool *hasz)
Parse kml:coordinates.
uint32_t npoints
Definition: liblwgeom.h:441

References lwline_construct(), POINTARRAY::npoints, and parse_kml_coordinates().

Referenced by parse_kml().

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