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

◆ LWGEOM_force_4d()

Datum LWGEOM_force_4d ( PG_FUNCTION_ARGS  )

Definition at line 431 of file lwgeom_functions_basic.c.

432{
433 GSERIALIZED *pg_geom_in = PG_GETARG_GSERIALIZED_P(0);
434 GSERIALIZED *pg_geom_out;
435 LWGEOM *lwg_in, *lwg_out;
436
437 /* already 4d */
438 if (gserialized_ndims(pg_geom_in) == 4)
439 PG_RETURN_POINTER(pg_geom_in);
440
441 lwg_in = lwgeom_from_gserialized(pg_geom_in);
442 lwg_out = lwgeom_force_4d(lwg_in);
443 pg_geom_out = geometry_serialize(lwg_out);
444 lwgeom_free(lwg_out);
445 lwgeom_free(lwg_in);
446
447 PG_FREE_IF_COPY(pg_geom_in, 0);
448 PG_RETURN_POINTER(pg_geom_out);
449}
int gserialized_ndims(const GSERIALIZED *g)
Return the number of dimensions (2, 3, 4) in a geometry.
LWGEOM * lwgeom_from_gserialized(const GSERIALIZED *g)
Allocate a new LWGEOM from a GSERIALIZED.
void lwgeom_free(LWGEOM *geom)
Definition lwgeom.c:1138
LWGEOM * lwgeom_force_4d(const LWGEOM *geom)
Definition lwgeom.c:793
GSERIALIZED * geometry_serialize(LWGEOM *lwgeom)

References geometry_serialize(), gserialized_ndims(), lwgeom_force_4d(), lwgeom_free(), and lwgeom_from_gserialized().

Here is the call graph for this function: