PostGIS  3.0.6dev-r@@SVN_REVISION@@

◆ ST_DistanceCPA()

Datum ST_DistanceCPA ( PG_FUNCTION_ARGS  )

Definition at line 85 of file lwgeom_functions_temporal.c.

86 {
87  GSERIALIZED *gs0 = PG_GETARG_GSERIALIZED_P(0);
88  GSERIALIZED *gs1 = PG_GETARG_GSERIALIZED_P(1);
89  /* All checks already performed by liblwgeom, not worth checking again */
92  double mindist;
93  double m = lwgeom_tcpa(g0, g1, &mindist);
94  lwgeom_free(g0);
95  lwgeom_free(g1);
96  PG_FREE_IF_COPY(gs0, 0);
97  PG_FREE_IF_COPY(gs1, 1);
98  if ( m < 0 ) PG_RETURN_NULL();
99  PG_RETURN_FLOAT8(mindist);
100 }
LWGEOM * lwgeom_from_gserialized(const GSERIALIZED *g)
Allocate a new LWGEOM from a GSERIALIZED.
Definition: gserialized.c:239
void lwgeom_free(LWGEOM *geom)
Definition: lwgeom.c:1138
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: