PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ ptarray_force_dims()

POINTARRAY* ptarray_force_dims ( const POINTARRAY pa,
int  hasz,
int  hasm 
)

Definition at line 1037 of file ptarray.c.

1038 {
1039  /* TODO handle zero-length point arrays */
1040  uint32_t i;
1041  int in_hasz = FLAGS_GET_Z(pa->flags);
1042  int in_hasm = FLAGS_GET_M(pa->flags);
1043  POINT4D pt;
1044  POINTARRAY *pa_out = ptarray_construct_empty(hasz, hasm, pa->npoints);
1045 
1046  for( i = 0; i < pa->npoints; i++ )
1047  {
1048  getPoint4d_p(pa, i, &pt);
1049  if( hasz && ! in_hasz )
1050  pt.z = 0.0;
1051  if( hasm && ! in_hasm )
1052  pt.m = 0.0;
1053  ptarray_append_point(pa_out, &pt, LW_TRUE);
1054  }
1055 
1056  return pa_out;
1057 }
#define FLAGS_GET_Z(flags)
Macros for manipulating the 'flags' byte.
Definition: liblwgeom.h:140
#define FLAGS_GET_M(flags)
Definition: liblwgeom.h:141
int getPoint4d_p(const POINTARRAY *pa, uint32_t n, POINT4D *point)
Definition: lwgeom_api.c:123
#define LW_TRUE
Return types for functions with status returns.
Definition: liblwgeom.h:76
POINTARRAY * ptarray_construct_empty(char hasz, char hasm, uint32_t maxpoints)
Create a new POINTARRAY with no points.
Definition: ptarray.c:70
int ptarray_append_point(POINTARRAY *pa, const POINT4D *pt, int repeated_points)
Append a point to the end of an existing POINTARRAY If allow_duplicate is LW_FALSE,...
Definition: ptarray.c:156
double m
Definition: liblwgeom.h:355
double z
Definition: liblwgeom.h:355
uint32_t npoints
Definition: liblwgeom.h:374
uint8_t flags
Definition: liblwgeom.h:372
unsigned int uint32_t
Definition: uthash.h:78

References POINTARRAY::flags, FLAGS_GET_M, FLAGS_GET_Z, getPoint4d_p(), LW_TRUE, POINT4D::m, POINTARRAY::npoints, ptarray_append_point(), ptarray_construct_empty(), and POINT4D::z.

Referenced by lwline_force_dims(), lwpoint_force_dims(), and lwpoly_force_dims().

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