PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ lwline_force_dims()

LWLINE* lwline_force_dims ( const LWLINE lwline,
int  hasz,
int  hasm 
)

Definition at line 506 of file lwline.c.

References lwline_construct(), lwline_construct_empty(), lwline_is_empty(), LWLINE::points, ptarray_force_dims(), LWLINE::srid, and LWLINE::type.

Referenced by lwgeom_force_dims().

507 {
508  POINTARRAY *pdims = NULL;
509  LWLINE *lineout;
510 
511  /* Return 2D empty */
512  if( lwline_is_empty(line) )
513  {
514  lineout = lwline_construct_empty(line->srid, hasz, hasm);
515  }
516  else
517  {
518  pdims = ptarray_force_dims(line->points, hasz, hasm);
519  lineout = lwline_construct(line->srid, NULL, pdims);
520  }
521  lineout->type = line->type;
522  return lineout;
523 }
uint8_t type
Definition: liblwgeom.h:418
LWLINE * lwline_construct_empty(int srid, char hasz, char hasm)
Definition: lwline.c:64
int lwline_is_empty(const LWLINE *line)
Definition: lwline.c:525
POINTARRAY * ptarray_force_dims(const POINTARRAY *pa, int hasz, int hasm)
Definition: ptarray.c:1038
LWLINE * lwline_construct(int srid, GBOX *bbox, POINTARRAY *points)
Definition: lwline.c:42
Here is the call graph for this function:
Here is the caller graph for this function: