PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ create_multipoint()

static SHPObject * create_multipoint ( SHPDUMPERSTATE state,
LWMPOINT lwmultipoint 
)
static

Definition at line 118 of file pgsql2shp-core.c.

119 {
120  SHPObject *obj;
121  POINT4D p4d;
122  uint32_t i;
123 
124  double *xpts, *ypts, *zpts, *mpts;
125 
126  /* Allocate storage for points */
127  xpts = malloc(sizeof(double) * lwmultipoint->ngeoms);
128  ypts = malloc(sizeof(double) * lwmultipoint->ngeoms);
129  zpts = malloc(sizeof(double) * lwmultipoint->ngeoms);
130  mpts = malloc(sizeof(double) * lwmultipoint->ngeoms);
131 
132  /* Grab the points: note getPoint4d will correctly handle
133  the case where the POINTs don't contain Z or M coordinates */
134  for (i = 0; i < lwmultipoint->ngeoms; i++)
135  {
136  p4d = getPoint4d(lwmultipoint->geoms[i]->point, 0);
137 
138  xpts[i] = p4d.x;
139  ypts[i] = p4d.y;
140  zpts[i] = p4d.z;
141  mpts[i] = p4d.m;
142 
143  LWDEBUGF(4, "MultiPoint %d - Point: %g %g %g %g", i, xpts[i], ypts[i], zpts[i], mpts[i]);
144  }
145 
146  obj = SHPCreateObject(state->outshptype, -1, 0, NULL, NULL, lwmultipoint->ngeoms, xpts, ypts, zpts, mpts);
147 
148  free(xpts);
149  free(ypts);
150  free(zpts);
151  free(mpts);
152 
153  return obj;
154 }
POINT4D getPoint4d(const POINTARRAY *pa, uint32_t n)
Definition: lwgeom_api.c:106
#define LWDEBUGF(level, msg,...)
Definition: lwgeom_log.h:88
void * malloc(YYSIZE_T)
void free(void *)
SHPObject SHPAPI_CALL1 * SHPCreateObject(int nSHPType, int nShapeId, int nParts, const int *panPartStart, const int *panPartType, int nVertices, const double *padfX, const double *padfY, const double *padfZ, const double *padfM);SHPObject SHPAPI_CALL1(*) SHPCreateSimpleObject(int nSHPType, int nVertices, const double *padfX, const double *padfY, const double *padfZ
uint32_t ngeoms
Definition: liblwgeom.h:471
LWPOINT ** geoms
Definition: liblwgeom.h:473
POINTARRAY * point
Definition: liblwgeom.h:414
double m
Definition: liblwgeom.h:355
double x
Definition: liblwgeom.h:355
double z
Definition: liblwgeom.h:355
double y
Definition: liblwgeom.h:355
unsigned int uint32_t
Definition: uthash.h:78

References free(), LWMPOINT::geoms, getPoint4d(), LWDEBUGF, POINT4D::m, malloc(), LWMPOINT::ngeoms, shp_dumper_state::outshptype, LWPOINT::point, SHPCreateObject(), POINT4D::x, POINT4D::y, and POINT4D::z.

Referenced by ShpLoaderGenerateShapeRow().

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