PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ lwcollection_check_geodetic()

static int lwcollection_check_geodetic ( const LWCOLLECTION col)
static

Definition at line 3102 of file lwgeodetic.c.

References LWCOLLECTION::geoms, LW_FALSE, LW_TRUE, lwgeom_check_geodetic(), and LWCOLLECTION::ngeoms.

Referenced by lwgeom_check_geodetic().

3103 {
3104  int i = 0;
3105  assert(col);
3106 
3107  for ( i = 0; i < col->ngeoms; i++ )
3108  {
3109  if ( lwgeom_check_geodetic(col->geoms[i]) == LW_FALSE )
3110  return LW_FALSE;
3111  }
3112  return LW_TRUE;
3113 }
#define LW_FALSE
Definition: liblwgeom.h:77
#define LW_TRUE
Return types for functions with status returns.
Definition: liblwgeom.h:76
LWGEOM ** geoms
Definition: liblwgeom.h:509
int lwgeom_check_geodetic(const LWGEOM *geom)
Check that coordinates of LWGEOM are all within the geodetic range (-180, -90, 180, 90)
Definition: lwgeodetic.c:3115
Here is the call graph for this function:
Here is the caller graph for this function: