PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ parse_gml_polygon()

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

Parse GML Polygon (2.1.2, 3.1.1)

Definition at line 1129 of file lwgeom_in_gml.c.

References get_xlink_node(), gml_lwpgerror(), gml_reproject_pa(), is_gml_namespace(), is_xlink(), lwalloc(), lwpoly_as_lwgeom(), lwpoly_construct(), lwpoly_construct_empty(), lwrealloc(), parse_gml_data(), parse_gml_srs(), ptarray_flip_coordinates(), ptarray_is_closed_2d(), ptarray_is_closed_3d(), struct_gmlSrs::reverse_axis, struct_gmlSrs::srid, and SRID_UNKNOWN.

Referenced by parse_gml().

1130 {
1131  gmlSrs srs;
1132  int i, ring;
1133  LWGEOM *geom;
1134  xmlNodePtr xa, xb;
1135  POINTARRAY **ppa = NULL;
1136 
1137  if (is_xlink(xnode)) xnode = get_xlink_node(xnode);
1138 
1139  if (xnode->children == NULL)
1140  return lwpoly_as_lwgeom(lwpoly_construct_empty(*root_srid, 0, 0));
1141 
1142  parse_gml_srs(xnode, &srs);
1143 
1144  for (xa = xnode->children ; xa != NULL ; xa = xa->next)
1145  {
1146  /* Polygon/outerBoundaryIs -> GML 2.1.2 */
1147  /* Polygon/exterior -> GML 3.1.1 */
1148  if (xa->type != XML_ELEMENT_NODE) continue;
1149  if (!is_gml_namespace(xa, false)) continue;
1150  if (strcmp((char *) xa->name, "outerBoundaryIs") &&
1151  strcmp((char *) xa->name, "exterior")) continue;
1152 
1153  for (xb = xa->children ; xb != NULL ; xb = xb->next)
1154  {
1155  if (xb->type != XML_ELEMENT_NODE) continue;
1156  if (!is_gml_namespace(xb, false)) continue;
1157  if (strcmp((char *) xb->name, "LinearRing")) continue;
1158 
1159  ppa = (POINTARRAY**) lwalloc(sizeof(POINTARRAY*));
1160  ppa[0] = parse_gml_data(xb->children, hasz, root_srid);
1161 
1162  if (ppa[0]->npoints < 4
1163  || (!*hasz && !ptarray_is_closed_2d(ppa[0]))
1164  || (*hasz && !ptarray_is_closed_3d(ppa[0])))
1165  gml_lwpgerror("invalid GML representation", 43);
1166 
1167  if (srs.reverse_axis) ppa[0] = ptarray_flip_coordinates(ppa[0]);
1168  }
1169  }
1170 
1171  /* Found an <exterior> or <outerBoundaryIs> but no rings?!? We're outa here! */
1172  if ( ! ppa )
1173  gml_lwpgerror("invalid GML representation", 43);
1174 
1175  for (ring=1, xa = xnode->children ; xa != NULL ; xa = xa->next)
1176  {
1177  /* Polygon/innerBoundaryIs -> GML 2.1.2 */
1178  /* Polygon/interior -> GML 3.1.1 */
1179  if (xa->type != XML_ELEMENT_NODE) continue;
1180  if (!is_gml_namespace(xa, false)) continue;
1181  if (strcmp((char *) xa->name, "innerBoundaryIs") &&
1182  strcmp((char *) xa->name, "interior")) continue;
1183 
1184  for (xb = xa->children ; xb != NULL ; xb = xb->next)
1185  {
1186  if (xb->type != XML_ELEMENT_NODE) continue;
1187  if (!is_gml_namespace(xb, false)) continue;
1188  if (strcmp((char *) xb->name, "LinearRing")) continue;
1189 
1190  ppa = (POINTARRAY**) lwrealloc((POINTARRAY *) ppa,
1191  sizeof(POINTARRAY*) * (ring + 1));
1192  ppa[ring] = parse_gml_data(xb->children, hasz, root_srid);
1193 
1194  if (ppa[ring]->npoints < 4
1195  || (!*hasz && !ptarray_is_closed_2d(ppa[ring]))
1196  || (*hasz && !ptarray_is_closed_3d(ppa[ring])))
1197  gml_lwpgerror("invalid GML representation", 43);
1198 
1199  if (srs.reverse_axis) ppa[ring] = ptarray_flip_coordinates(ppa[ring]);
1200  ring++;
1201  }
1202  }
1203 
1204  /* Exterior Ring is mandatory */
1205  if (ppa == NULL || ppa[0] == NULL) gml_lwpgerror("invalid GML representation", 44);
1206 
1207  if (srs.srid != *root_srid && *root_srid != SRID_UNKNOWN)
1208  {
1209  for (i=0 ; i < ring ; i++)
1210  gml_reproject_pa(ppa[i], srs.srid, *root_srid);
1211  }
1212  geom = (LWGEOM *) lwpoly_construct(*root_srid, NULL, ring, ppa);
1213 
1214  return geom;
1215 }
static void gml_lwpgerror(char *msg, int error_code)
Definition: lwgeom_in_gml.c:81
static void parse_gml_srs(xmlNodePtr xnode, gmlSrs *srs)
Parse gml srsName attribute.
int ptarray_is_closed_3d(const POINTARRAY *pa)
Definition: ptarray.c:710
int ptarray_is_closed_2d(const POINTARRAY *pa)
Definition: ptarray.c:697
LWGEOM * lwpoly_as_lwgeom(const LWPOLY *obj)
Definition: lwgeom.c:288
static POINTARRAY * gml_reproject_pa(POINTARRAY *pa, int srid_in, int srid_out)
Use Proj4 to reproject a given POINTARRAY.
POINTARRAY * ptarray_flip_coordinates(POINTARRAY *pa)
Reverse X and Y axis on a given POINTARRAY.
Definition: ptarray.c:369
static xmlNodePtr get_xlink_node(xmlNodePtr xnode)
Return a xmlNodePtr on a node referenced by a XLink or NULL otherwise.
LWPOLY * lwpoly_construct(int srid, GBOX *bbox, uint32_t nrings, POINTARRAY **points)
Definition: lwpoly.c:43
#define SRID_UNKNOWN
Unknown SRID value.
Definition: liblwgeom.h:188
static bool is_xlink(xmlNodePtr node)
Return true if current node contains a simple XLink Return false otherwise.
static POINTARRAY * parse_gml_data(xmlNodePtr xnode, bool *hasz, int *root_srid)
Parse data coordinates.
static bool is_gml_namespace(xmlNodePtr xnode, bool is_strict)
Return false if current element namespace is not a GML one Return true otherwise. ...
void * lwrealloc(void *mem, size_t size)
Definition: lwutil.c:237
LWPOLY * lwpoly_construct_empty(int srid, char hasz, char hasm)
Definition: lwpoly.c:161
void * lwalloc(size_t size)
Definition: lwutil.c:229
Here is the call graph for this function:
Here is the caller graph for this function: