PostGIS 3.0.6dev-r@@SVN_REVISION@@
Loading...
Searching...
No Matches

◆ create_multipoint()

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

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

118{
119 SHPObject *obj;
120 POINT4D p4d;
121 uint32_t i;
122
123 double *xpts, *ypts, *zpts, *mpts;
124
125 /* Allocate storage for points */
126 xpts = malloc(sizeof(double) * lwmultipoint->ngeoms);
127 ypts = malloc(sizeof(double) * lwmultipoint->ngeoms);
128 zpts = malloc(sizeof(double) * lwmultipoint->ngeoms);
129 mpts = malloc(sizeof(double) * lwmultipoint->ngeoms);
130
131 /* Grab the points: note getPoint4d will correctly handle
132 the case where the POINTs don't contain Z or M coordinates */
133 for (i = 0; i < lwmultipoint->ngeoms; i++)
134 {
135 p4d = getPoint4d(lwmultipoint->geoms[i]->point, 0);
136
137 xpts[i] = p4d.x;
138 ypts[i] = p4d.y;
139 zpts[i] = p4d.z;
140 mpts[i] = p4d.m;
141
142 LWDEBUGF(4, "MultiPoint %d - Point: %g %g %g %g", i, xpts[i], ypts[i], zpts[i], mpts[i]);
143 }
144
145 obj = SHPCreateObject(state->outshptype, -1, 0, NULL, NULL, lwmultipoint->ngeoms, xpts, ypts, zpts, mpts);
146
147 free(xpts);
148 free(ypts);
149 free(zpts);
150 free(mpts);
151
152 return obj;
153}
POINT4D getPoint4d(const POINTARRAY *pa, uint32_t n)
Definition lwgeom_api.c:108
#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:524
LWPOINT ** geoms
Definition liblwgeom.h:519
POINTARRAY * point
Definition liblwgeom.h:457
double m
Definition liblwgeom.h:400
double x
Definition liblwgeom.h:400
double z
Definition liblwgeom.h:400
double y
Definition liblwgeom.h:400

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: