PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ LWGEOM_maxdistance2d_linestring()

Datum LWGEOM_maxdistance2d_linestring ( PG_FUNCTION_ARGS  )

Definition at line 793 of file lwgeom_functions_basic.c.

References error_if_srid_mismatch(), LWGEOM_closestpoint3d(), lwgeom_from_gserialized(), lwgeom_maxdistance2d(), PG_FUNCTION_INFO_V1(), and LWGEOM::srid.

Referenced by LWGEOM_dfullywithin().

794 {
795  double maxdist;
796  GSERIALIZED *geom1 = PG_GETARG_GSERIALIZED_P(0);
797  GSERIALIZED *geom2 = PG_GETARG_GSERIALIZED_P(1);
798  LWGEOM *lwgeom1 = lwgeom_from_gserialized(geom1);
799  LWGEOM *lwgeom2 = lwgeom_from_gserialized(geom2);
800 
801  error_if_srid_mismatch(lwgeom1->srid, lwgeom2->srid);
802 
803  maxdist = lwgeom_maxdistance2d(lwgeom1, lwgeom2);
804 
805  PG_FREE_IF_COPY(geom1, 0);
806  PG_FREE_IF_COPY(geom2, 1);
807 
808  /*if called with empty geometries the ingoing mindistance is untouched, and makes us return NULL*/
809  if (maxdist>-1)
810  PG_RETURN_FLOAT8(maxdist);
811 
812  PG_RETURN_NULL();
813 }
LWGEOM * lwgeom_from_gserialized(const GSERIALIZED *g)
Allocate a new LWGEOM from a GSERIALIZED.
void error_if_srid_mismatch(int srid1, int srid2)
Definition: lwutil.c:371
int32_t srid
Definition: liblwgeom.h:399
double lwgeom_maxdistance2d(const LWGEOM *lw1, const LWGEOM *lw2)
Function initialazing max distance calculation.
Definition: measures.c:169
Here is the call graph for this function:
Here is the caller graph for this function: