PostGIS  3.0.6dev-r@@SVN_REVISION@@

◆ lwgeom_interpolate_point()

double lwgeom_interpolate_point ( const LWGEOM lwin,
const LWPOINT lwpt 
)

Find the measure value at the location on the line closest to the point.

Definition at line 926 of file lwlinearreferencing.c.

927 {
928  POINT4D p, p_proj;
929  double ret = 0.0;
930 
931  if (!lwin)
932  lwerror("lwgeom_interpolate_point: null input geometry!");
933 
934  if (!lwgeom_has_m(lwin))
935  lwerror("Input geometry does not have a measure dimension");
936 
937  if (lwgeom_is_empty(lwin) || lwpoint_is_empty(lwpt))
938  lwerror("Input geometry is empty");
939 
940  switch (lwin->type)
941  {
942  case LINETYPE:
943  {
944  LWLINE *lwline = lwgeom_as_lwline(lwin);
945  lwpoint_getPoint4d_p(lwpt, &p);
946  ret = ptarray_locate_point(lwline->points, &p, NULL, &p_proj);
947  ret = p_proj.m;
948  break;
949  }
950  default:
951  lwerror("This function does not accept %s geometries.", lwtype_name(lwin->type));
952  }
953  return ret;
954 }
int lwpoint_getPoint4d_p(const LWPOINT *point, POINT4D *out)
Definition: lwpoint.c:57
LWLINE * lwgeom_as_lwline(const LWGEOM *lwgeom)
Definition: lwgeom.c:161
#define LINETYPE
Definition: liblwgeom.h:117
double ptarray_locate_point(const POINTARRAY *pa, const POINT4D *pt, double *dist, POINT4D *p_located)
Definition: ptarray.c:1303
const char * lwtype_name(uint8_t type)
Return the type name string associated with a type number (e.g.
Definition: lwutil.c:216
int lwgeom_has_m(const LWGEOM *geom)
Return LW_TRUE if geometry has M ordinates.
Definition: lwgeom.c:923
int lwpoint_is_empty(const LWPOINT *point)
void lwerror(const char *fmt,...)
Write a notice out to the error handler.
Definition: lwutil.c:190
static int lwgeom_is_empty(const LWGEOM *geom)
Return true or false depending on whether a geometry is an "empty" geometry (no vertices members)
Definition: lwinline.h:193
uint8_t type
Definition: liblwgeom.h:448
POINTARRAY * points
Definition: liblwgeom.h:469
double m
Definition: liblwgeom.h:400

References LINETYPE, lwerror(), lwgeom_as_lwline(), lwgeom_has_m(), lwgeom_is_empty(), lwpoint_getPoint4d_p(), lwpoint_is_empty(), lwtype_name(), POINT4D::m, LWLINE::points, ptarray_locate_point(), and LWGEOM::type.

Referenced by gserialized_distance_nd(), and ST_InterpolatePoint().

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