PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ LWGEOM_maxdistance3d()

Datum LWGEOM_maxdistance3d ( PG_FUNCTION_ARGS  )

Definition at line 1008 of file lwgeom_functions_basic.c.

References error_if_srid_mismatch(), lwgeom_from_gserialized(), LWGEOM_longitude_shift(), lwgeom_maxdistance3d(), PG_FUNCTION_INFO_V1(), and LWGEOM::srid.

Referenced by LWGEOM_dfullywithin3d().

1009 {
1010  double maxdist;
1011  GSERIALIZED *geom1 = PG_GETARG_GSERIALIZED_P(0);
1012  GSERIALIZED *geom2 = PG_GETARG_GSERIALIZED_P(1);
1013  LWGEOM *lwgeom1 = lwgeom_from_gserialized(geom1);
1014  LWGEOM *lwgeom2 = lwgeom_from_gserialized(geom2);
1015 
1016  error_if_srid_mismatch(lwgeom1->srid, lwgeom2->srid);
1017 
1018  maxdist = lwgeom_maxdistance3d(lwgeom1, lwgeom2);
1019 
1020  PG_FREE_IF_COPY(geom1, 0);
1021  PG_FREE_IF_COPY(geom2, 1);
1022 
1023  /*if called with empty geometries the ingoing mindistance is untouched, and makes us return NULL*/
1024  if (maxdist>-1)
1025  PG_RETURN_FLOAT8(maxdist);
1026 
1027  PG_RETURN_NULL();
1028 }
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_maxdistance3d(const LWGEOM *lw1, const LWGEOM *lw2)
Function initializing 3d max distance calculation.
Definition: measures3d.c:314
Here is the call graph for this function:
Here is the caller graph for this function: