PostGIS  3.7.0dev-r@@SVN_REVISION@@

◆ ST_Distance()

Datum ST_Distance ( PG_FUNCTION_ARGS  )

Definition at line 701 of file lwgeom_functions_basic.c.

702 {
703  double mindist;
704  GSERIALIZED *geom1 = PG_GETARG_GSERIALIZED_P(0);
705  GSERIALIZED *geom2 = PG_GETARG_GSERIALIZED_P(1);
706  LWGEOM *lwgeom1 = lwgeom_from_gserialized(geom1);
707  LWGEOM *lwgeom2 = lwgeom_from_gserialized(geom2);
708  gserialized_error_if_srid_mismatch(geom1, geom2, __func__);
709 
710  mindist = lwgeom_mindistance2d(lwgeom1, lwgeom2);
711 
712  lwgeom_free(lwgeom1);
713  lwgeom_free(lwgeom2);
714 
715  PG_FREE_IF_COPY(geom1, 0);
716  PG_FREE_IF_COPY(geom2, 1);
717 
718  /* if called with empty geometries the ingoing mindistance is untouched, and makes us return NULL*/
719  if (mindist < FLT_MAX)
720  PG_RETURN_FLOAT8(mindist);
721 
722  PG_RETURN_NULL();
723 }
void gserialized_error_if_srid_mismatch(const GSERIALIZED *g1, const GSERIALIZED *g2, const char *funcname)
Definition: gserialized.c:432
LWGEOM * lwgeom_from_gserialized(const GSERIALIZED *g)
Allocate a new LWGEOM from a GSERIALIZED.
Definition: gserialized.c:268
void lwgeom_free(LWGEOM *geom)
Definition: lwgeom.c:1218
double lwgeom_mindistance2d(const LWGEOM *lw1, const LWGEOM *lw2)
Function initializing min distance calculation.
Definition: measures.c:200

References gserialized_error_if_srid_mismatch(), lwgeom_free(), lwgeom_from_gserialized(), and lwgeom_mindistance2d().

Referenced by optimistic_overlap().

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