PostGIS  3.7.0dev-r@@SVN_REVISION@@

◆ lwcollection_check_geodetic()

static int lwcollection_check_geodetic ( const LWCOLLECTION col)
static

Definition at line 2966 of file lwgeodetic.c.

2967 {
2968  uint32_t i = 0;
2969  assert(col);
2970 
2971  for ( i = 0; i < col->ngeoms; i++ )
2972  {
2973  if ( lwgeom_check_geodetic(col->geoms[i]) == LW_FALSE )
2974  return LW_FALSE;
2975  }
2976  return LW_TRUE;
2977 }
#define LW_FALSE
Definition: liblwgeom.h:94
#define LW_TRUE
Return types for functions with status returns.
Definition: liblwgeom.h:93
int lwgeom_check_geodetic(const LWGEOM *geom)
Check that coordinates of LWGEOM are all within the geodetic range (-180, -90, 180,...
Definition: lwgeodetic.c:2979
uint32_t ngeoms
Definition: liblwgeom.h:580
LWGEOM ** geoms
Definition: liblwgeom.h:575

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

Referenced by lwgeom_check_geodetic().

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