PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ ptarray_locate_along_linear()

static int ptarray_locate_along_linear ( const POINTARRAY pa,
double  m,
POINT4D p,
int  from 
)
static

Definition at line 1050 of file lwlinearreferencing.c.

References getPoint4d_p(), LW_TRUE, POINTARRAY::npoints, and segment_locate_along().

Referenced by lwgeom_cpa_within(), and lwgeom_tcpa().

1051 {
1052  int i = from;
1053  POINT4D p1, p2;
1054 
1055  /* Walk through each segment in the point array */
1056  getPoint4d_p(pa, i, &p1);
1057  for ( i = from+1; i < pa->npoints; i++ )
1058  {
1059  getPoint4d_p(pa, i, &p2);
1060 
1061  if ( segment_locate_along(&p1, &p2, m, 0, p) == LW_TRUE )
1062  return i-1; /* found */
1063 
1064  p1 = p2;
1065  }
1066 
1067  return -1; /* not found */
1068 }
int npoints
Definition: liblwgeom.h:371
static int segment_locate_along(const POINT4D *p1, const POINT4D *p2, double m, double offset, POINT4D *pn)
#define LW_TRUE
Return types for functions with status returns.
Definition: liblwgeom.h:76
int getPoint4d_p(const POINTARRAY *pa, int n, POINT4D *point)
Definition: lwgeom_api.c:122
Here is the call graph for this function:
Here is the caller graph for this function: