PostGIS  3.3.9dev-r@@SVN_REVISION@@

◆ parse_gml_tin()

static LWGEOM* parse_gml_tin ( xmlNodePtr  xnode,
bool *  hasz,
int *  root_srid 
)
static

Parse GML Tin (and TriangulatedSurface) (3.1.1)

TODO handle also Tin attributes:

  • stopLines
  • breakLines
  • maxLength
  • position

Definition at line 1597 of file lwgeom_in_gml.c.

1598 {
1599  gmlSrs srs;
1600  xmlNodePtr xa;
1601  LWGEOM *geom=NULL;
1602  bool found=false;
1603 
1604  if (is_xlink(xnode)) xnode = get_xlink_node(xnode);
1605  if (xnode == NULL)
1606  gml_lwpgerror("invalid GML representation", 30);
1607 
1608  parse_gml_srs(xnode, &srs);
1609  if (*root_srid == SRID_UNKNOWN && srs.srid != SRID_UNKNOWN)
1610  *root_srid = srs.srid;
1611 
1612  geom = (LWGEOM *)lwcollection_construct_empty(TINTYPE, *root_srid, 1, 0);
1613 
1614  if (xnode->children == NULL)
1615  return geom;
1616 
1617  /* Looking for gml:patches or gml:trianglePatches */
1618  for (xa = xnode->children ; xa != NULL ; xa = xa->next)
1619  {
1620  if (xa->type != XML_ELEMENT_NODE) continue;
1621  if (!is_gml_namespace(xa, false)) continue;
1622  if (is_gml_element(xa, "patches") ||
1623  is_gml_element(xa, "trianglePatches"))
1624  {
1625  found = true;
1626  break;
1627  }
1628  }
1629  if (!found) return geom; /* empty one */
1630 
1631  /* Processing each gml:Triangle */
1632  for (xa = xa->children ; xa != NULL ; xa = xa->next)
1633  {
1634  if (xa->type != XML_ELEMENT_NODE) continue;
1635  if (!is_gml_namespace(xa, false)) continue;
1636  if (!is_gml_element(xa, "Triangle")) continue;
1637 
1638  if (xa->children != NULL)
1639  geom = (LWGEOM*) lwtin_add_lwtriangle((LWTIN *) geom,
1640  (LWTRIANGLE *) parse_gml_triangle(xa, hasz, root_srid));
1641  }
1642 
1643  return geom;
1644 }
LWTIN * lwtin_add_lwtriangle(LWTIN *mobj, const LWTRIANGLE *obj)
Definition: lwtin.c:34
#define TINTYPE
Definition: liblwgeom.h:131
LWCOLLECTION * lwcollection_construct_empty(uint8_t type, int32_t srid, char hasz, char hasm)
Definition: lwcollection.c:92
#define SRID_UNKNOWN
Unknown SRID value.
Definition: liblwgeom.h:230
static xmlNodePtr get_xlink_node(xmlNodePtr xnode)
Return a xmlNodePtr on a node referenced by a XLink or NULL otherwise.
static bool is_xlink(xmlNodePtr node)
Return true if current node contains a simple XLink Return false otherwise.
static bool is_gml_namespace(xmlNodePtr xnode, bool is_strict)
Return false if current element namespace is not a GML one Return true otherwise.
static void parse_gml_srs(xmlNodePtr xnode, gmlSrs *srs)
Parse gml srsName attribute.
static void gml_lwpgerror(char *msg, __attribute__((__unused__)) int error_code)
Definition: lwgeom_in_gml.c:81
static LWGEOM * parse_gml_triangle(xmlNodePtr xnode, bool *hasz, int *root_srid)
Parse GML Triangle (3.1.1)
static bool is_gml_element(xmlNodePtr xn, const char *gml_name)

References get_xlink_node(), gml_lwpgerror(), is_gml_element(), is_gml_namespace(), is_xlink(), lwcollection_construct_empty(), lwtin_add_lwtriangle(), parse_gml_srs(), parse_gml_triangle(), struct_gmlSrs::srid, SRID_UNKNOWN, and TINTYPE.

Referenced by parse_gml().

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