PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ lwpoly_force_dims()

LWPOLY* lwpoly_force_dims ( const LWPOLY lwpoly,
int  hasz,
int  hasm 
)

Definition at line 421 of file lwpoly.c.

References lwalloc(), lwpoly_construct(), lwpoly_construct_empty(), lwpoly_is_empty(), LWPOLY::nrings, ptarray_force_dims(), LWPOLY::rings, LWPOLY::srid, and LWPOLY::type.

Referenced by lwgeom_force_dims().

422 {
423  LWPOLY *polyout;
424 
425  /* Return 2D empty */
426  if( lwpoly_is_empty(poly) )
427  {
428  polyout = lwpoly_construct_empty(poly->srid, hasz, hasm);
429  }
430  else
431  {
432  POINTARRAY **rings = NULL;
433  int i;
434  rings = lwalloc(sizeof(POINTARRAY*) * poly->nrings);
435  for( i = 0; i < poly->nrings; i++ )
436  {
437  rings[i] = ptarray_force_dims(poly->rings[i], hasz, hasm);
438  }
439  polyout = lwpoly_construct(poly->srid, NULL, poly->nrings, rings);
440  }
441  polyout->type = poly->type;
442  return polyout;
443 }
LWPOLY * lwpoly_construct(int srid, GBOX *bbox, uint32_t nrings, POINTARRAY **points)
Definition: lwpoly.c:43
uint8_t type
Definition: liblwgeom.h:451
LWPOLY * lwpoly_construct_empty(int srid, char hasz, char hasm)
Definition: lwpoly.c:161
POINTARRAY * ptarray_force_dims(const POINTARRAY *pa, int hasz, int hasm)
Definition: ptarray.c:1038
void * lwalloc(size_t size)
Definition: lwutil.c:229
int lwpoly_is_empty(const LWPOLY *poly)
Definition: lwpoly.c:445
Here is the call graph for this function:
Here is the caller graph for this function: