1385 xmlChar *interpolation=NULL;
1397 interpolation =
gmlGetProp(xnode,
"interpolation");
1398 if (interpolation != NULL)
1400 if (strcmp((
char *) interpolation,
"planar"))
1402 xmlFree(interpolation);
1408 for (xa = xnode->children ; xa != NULL ; xa = xa->next)
1414 for (xb = xa->children ; xb != NULL ; xb = xb->next)
1416 if (xb->type != XML_ELEMENT_NODE)
continue;
1423 if (ppa[0]->npoints < 4
1438 for (ring=1, xa = xnode->children ; xa != NULL ; xa = xa->next)
1440 if (xa->type != XML_ELEMENT_NODE)
continue;
1445 for (xb = xa->children ; xb != NULL ; xb = xb->next)
1447 if (xb->type != XML_ELEMENT_NODE)
continue;
1454 if (ppa[ring]->npoints < 4
1467 if (ppa == NULL || ppa[0] == NULL)
gml_lwpgerror(
"invalid GML representation", 50);
1471 for (i=0 ; i < ring ; i++)
int ptarray_is_closed_3d(const POINTARRAY *pa)
void * lwrealloc(void *mem, size_t size)
void * lwalloc(size_t size)
int ptarray_is_closed_2d(const POINTARRAY *pa)
#define SRID_UNKNOWN
Unknown SRID value.
LWPOLY * lwpoly_construct(int32_t srid, GBOX *bbox, uint32_t nrings, POINTARRAY **points)
POINTARRAY * ptarray_flip_coordinates(POINTARRAY *pa)
Reverse X and Y axis on a given POINTARRAY.
static POINTARRAY * gml_reproject_pa(POINTARRAY *pa, int32_t epsg_in, int32_t epsg_out)
Use Proj to reproject a given POINTARRAY.
static xmlChar * gmlGetProp(xmlNodePtr xnode, const char *charProp)
Retrieve a GML property from a node or NULL otherwise Respect namespaces if presents in the node elem...
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 POINTARRAY * parse_gml_data(xmlNodePtr xnode, bool *hasz, int *root_srid)
Parse data coordinates.
static void gml_lwpgerror(char *msg, __attribute__((__unused__)) int error_code)
static bool is_gml_element(xmlNodePtr xn, const char *gml_name)