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

◆ LWGEOM_line_from_mpoint()

Datum LWGEOM_line_from_mpoint ( PG_FUNCTION_ARGS  )

Definition at line 1377 of file lwgeom_functions_basic.c.

1378{
1379 GSERIALIZED *ingeom, *result;
1380 LWLINE *lwline;
1381 LWMPOINT *mpoint;
1382
1383 POSTGIS_DEBUG(2, "LWGEOM_line_from_mpoint called");
1384
1385 /* Get input GSERIALIZED and deserialize it */
1386 ingeom = PG_GETARG_GSERIALIZED_P(0);
1387
1388 if (gserialized_get_type(ingeom) != MULTIPOINTTYPE)
1389 {
1390 elog(ERROR, "makeline: input must be a multipoint");
1391 PG_RETURN_NULL(); /* input is not a multipoint */
1392 }
1393
1395 lwline = lwline_from_lwmpoint(mpoint->srid, mpoint);
1396 if (!lwline)
1397 {
1398 PG_FREE_IF_COPY(ingeom, 0);
1399 elog(ERROR, "makeline: lwline_from_lwmpoint returned NULL");
1400 PG_RETURN_NULL();
1401 }
1402
1403 result = geometry_serialize(lwline_as_lwgeom(lwline));
1404
1405 PG_FREE_IF_COPY(ingeom, 0);
1406 lwline_free(lwline);
1407
1408 PG_RETURN_POINTER(result);
1409}
char result[OUT_DOUBLE_BUFFER_SIZE]
Definition cu_print.c:267
LWGEOM * lwgeom_from_gserialized(const GSERIALIZED *g)
Allocate a new LWGEOM from a GSERIALIZED.
uint32_t gserialized_get_type(const GSERIALIZED *g)
Extract the geometry type from the serialized form (it hides in the anonymous data area,...
#define MULTIPOINTTYPE
Definition liblwgeom.h:105
LWGEOM * lwline_as_lwgeom(const LWLINE *obj)
Definition lwgeom.c:367
LWMPOINT * lwgeom_as_lwmpoint(const LWGEOM *lwgeom)
Definition lwgeom.c:270
void lwline_free(LWLINE *line)
Definition lwline.c:67
LWLINE * lwline_from_lwmpoint(int32_t srid, const LWMPOINT *mpoint)
Definition lwline.c:285
int32_t srid
Definition liblwgeom.h:534

References gserialized_get_type(), lwgeom_as_lwmpoint(), lwgeom_from_gserialized(), lwline_as_lwgeom(), lwline_free(), lwline_from_lwmpoint(), MULTIPOINTTYPE, result, and LWMPOINT::srid.

Here is the call graph for this function: