PostGIS  3.7.0dev-r@@SVN_REVISION@@

◆ lwgeom_locate_between()

LWCOLLECTION* lwgeom_locate_between ( const LWGEOM lwin,
double  from,
double  to,
double  offset 
)

Determine the segments along a measured line that fall within the m-range given.

Return as a multiline or geometrycollection. Offset to left (positive) or right (negative).

Definition at line 911 of file lwlinearreferencing.c.

912 {
913  if (!lwgeom_has_m(lwin))
914  lwerror("Input geometry does not have a measure dimension");
915 
916  return lwgeom_clip_to_ordinate_range(lwin, 'M', from, to, offset);
917 }
int lwgeom_has_m(const LWGEOM *geom)
Return LW_TRUE if geometry has M ordinates.
Definition: lwgeom.c:941
void void lwerror(const char *fmt,...) __attribute__((format(printf
Write a notice out to the error handler.
LWCOLLECTION * lwgeom_clip_to_ordinate_range(const LWGEOM *lwin, char ordinate, double from, double to, double offset)
Given a geometry clip based on the from/to range of one of its ordinates (x, y, z,...

References lwerror(), lwgeom_clip_to_ordinate_range(), and lwgeom_has_m().

Here is the call graph for this function: