PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ parse_gml_line()

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

Parse GML lineString (2.1.2, 3.1.1)

Definition at line 966 of file lwgeom_in_gml.c.

967 {
968  gmlSrs srs;
969  LWGEOM *geom;
970  POINTARRAY *pa;
971 
972  if (is_xlink(xnode)) xnode = get_xlink_node(xnode);
973 
974  if (xnode->children == NULL)
975  return lwline_as_lwgeom(lwline_construct_empty(*root_srid, 0, 0));
976 
977  pa = parse_gml_data(xnode->children, hasz, root_srid);
978  if (pa->npoints < 2) gml_lwpgerror("invalid GML representation", 36);
979 
980  parse_gml_srs(xnode, &srs);
981  if (srs.reverse_axis) pa = ptarray_flip_coordinates(pa);
982  if (!*root_srid)
983  {
984  *root_srid = srs.srid;
985  geom = (LWGEOM *) lwline_construct(*root_srid, NULL, pa);
986  }
987  else
988  {
989  if (srs.srid != *root_srid)
990  gml_reproject_pa(pa, srs.srid, *root_srid);
991  geom = (LWGEOM *) lwline_construct(SRID_UNKNOWN, NULL, pa);
992  }
993 
994  return geom;
995 }
LWGEOM * lwline_as_lwgeom(const LWLINE *obj)
Definition: lwgeom.c:330
LWLINE * lwline_construct_empty(int srid, char hasz, char hasm)
Definition: lwline.c:64
#define SRID_UNKNOWN
Unknown SRID value.
Definition: liblwgeom.h:188
LWLINE * lwline_construct(int srid, GBOX *bbox, POINTARRAY *points)
Definition: lwline.c:42
POINTARRAY * ptarray_flip_coordinates(POINTARRAY *pa)
Reverse X and Y axis on a given POINTARRAY.
Definition: ptarray.c:368
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 POINTARRAY * gml_reproject_pa(POINTARRAY *pa, int srid_in, int srid_out)
Use Proj4 to reproject a given POINTARRAY.
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)
Definition: lwgeom_in_gml.c:82
uint32_t npoints
Definition: liblwgeom.h:374

References get_xlink_node(), gml_lwpgerror(), gml_reproject_pa(), is_xlink(), lwline_as_lwgeom(), lwline_construct(), lwline_construct_empty(), POINTARRAY::npoints, parse_gml_data(), parse_gml_srs(), ptarray_flip_coordinates(), struct_gmlSrs::reverse_axis, struct_gmlSrs::srid, and SRID_UNKNOWN.

Referenced by parse_gml().

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