PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ ST_ClosestPointOfApproach()

Datum ST_ClosestPointOfApproach ( PG_FUNCTION_ARGS  )

Definition at line 49 of file lwgeom_functions_temporal.c.

50 {
51  GSERIALIZED *gs0 = PG_GETARG_GSERIALIZED_P(0);
52  GSERIALIZED *gs1 = PG_GETARG_GSERIALIZED_P(1);
53  /* All checks already performed by liblwgeom, not worth checking again */
56  double m = lwgeom_tcpa(g0, g1, NULL);
57  lwgeom_free(g0);
58  lwgeom_free(g1);
59  PG_FREE_IF_COPY(gs0, 0);
60  PG_FREE_IF_COPY(gs1, 1);
61  if ( m < 0 ) PG_RETURN_NULL();
62  PG_RETURN_FLOAT8(m);
63 }
LWGEOM * lwgeom_from_gserialized(const GSERIALIZED *g)
Allocate a new LWGEOM from a GSERIALIZED.
void lwgeom_free(LWGEOM *geom)
Definition: lwgeom.c:1144
double lwgeom_tcpa(const LWGEOM *g1, const LWGEOM *g2, double *mindist)
Find the time of closest point of approach.

References lwgeom_free(), lwgeom_from_gserialized(), and lwgeom_tcpa().

Here is the call graph for this function: