PostGIS 3.7.0dev-r@@SVN_REVISION@@
Loading...
Searching...
No Matches

◆ LWGEOM_maxdistance2d_linestring()

Datum LWGEOM_maxdistance2d_linestring ( PG_FUNCTION_ARGS  )

Definition at line 766 of file lwgeom_functions_basic.c.

767{
768 double maxdist;
769 GSERIALIZED *geom1 = PG_GETARG_GSERIALIZED_P(0);
770 GSERIALIZED *geom2 = PG_GETARG_GSERIALIZED_P(1);
771 LWGEOM *lwgeom1 = lwgeom_from_gserialized(geom1);
772 LWGEOM *lwgeom2 = lwgeom_from_gserialized(geom2);
773 gserialized_error_if_srid_mismatch(geom1, geom2, __func__);
774
775 maxdist = lwgeom_maxdistance2d(lwgeom1, lwgeom2);
776
777 PG_FREE_IF_COPY(geom1, 0);
778 PG_FREE_IF_COPY(geom2, 1);
779
780 /*if called with empty geometries the ingoing mindistance is untouched, and makes us return NULL*/
781 if (maxdist > -1)
782 PG_RETURN_FLOAT8(maxdist);
783
784 PG_RETURN_NULL();
785}
void gserialized_error_if_srid_mismatch(const GSERIALIZED *g1, const GSERIALIZED *g2, const char *funcname)
LWGEOM * lwgeom_from_gserialized(const GSERIALIZED *g)
Allocate a new LWGEOM from a GSERIALIZED.
double lwgeom_maxdistance2d(const LWGEOM *lw1, const LWGEOM *lw2)
Function initializing max distance calculation.
Definition measures.c:180

References gserialized_error_if_srid_mismatch(), lwgeom_from_gserialized(), and lwgeom_maxdistance2d().

Here is the call graph for this function: