PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ lwmpoint_locate_along()

static LWMPOINT* lwmpoint_locate_along ( const LWMPOINT lwin,
double  m,
__attribute__((__unused__)) double  offset 
)
static

Definition at line 195 of file lwlinearreferencing.c.

196 {
197  LWGEOM *lwg = lwmpoint_as_lwgeom(lwin);
198  LWMPOINT *lwout = NULL;
199  uint32_t i;
200 
201  /* Construct return */
203 
204  for ( i = 0; i < lwin->ngeoms; i++ )
205  {
206  double point_m = lwpoint_get_m(lwin->geoms[i]);
207  if ( FP_EQUALS(m, point_m) )
208  {
209  lwmpoint_add_lwpoint(lwout, lwpoint_clone(lwin->geoms[i]));
210  }
211  }
212 
213  return lwout;
214 }
int32_t lwgeom_get_srid(const LWGEOM *geom)
Return SRID number.
Definition: lwgeom.c:916
double lwpoint_get_m(const LWPOINT *point)
Definition: lwpoint.c:107
LWGEOM * lwmpoint_as_lwgeom(const LWMPOINT *obj)
Definition: lwgeom.c:295
int lwgeom_has_z(const LWGEOM *geom)
Return LW_TRUE if geometry has Z ordinates.
Definition: lwgeom.c:930
LWMPOINT * lwmpoint_add_lwpoint(LWMPOINT *mobj, const LWPOINT *obj)
Definition: lwmpoint.c:45
LWMPOINT * lwmpoint_construct_empty(int srid, char hasz, char hasm)
Definition: lwmpoint.c:39
int lwgeom_has_m(const LWGEOM *geom)
Return LW_TRUE if geometry has M ordinates.
Definition: lwgeom.c:937
LWPOINT * lwpoint_clone(const LWPOINT *lwgeom)
Definition: lwpoint.c:239
#define FP_EQUALS(A, B)
uint32_t ngeoms
Definition: liblwgeom.h:471
LWPOINT ** geoms
Definition: liblwgeom.h:473
unsigned int uint32_t
Definition: uthash.h:78

References FP_EQUALS, LWMPOINT::geoms, lwgeom_get_srid(), lwgeom_has_m(), lwgeom_has_z(), lwmpoint_add_lwpoint(), lwmpoint_as_lwgeom(), lwmpoint_construct_empty(), lwpoint_clone(), lwpoint_get_m(), and LWMPOINT::ngeoms.

Referenced by lwgeom_locate_along().

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