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

◆ lwgeom_check_geodetic()

int lwgeom_check_geodetic ( const LWGEOM geom)

Check that coordinates of LWGEOM are all within the geodetic range (-180, -90, 180, 90)

Definition at line 2979 of file lwgeodetic.c.

2980{
2981 if ( lwgeom_is_empty(geom) )
2982 return LW_TRUE;
2983
2984 switch (geom->type)
2985 {
2986 case POINTTYPE:
2987 return lwpoint_check_geodetic((LWPOINT *)geom);
2988 case LINETYPE:
2989 return lwline_check_geodetic((LWLINE *)geom);
2990 case POLYGONTYPE:
2991 return lwpoly_check_geodetic((LWPOLY *)geom);
2992 case TRIANGLETYPE:
2993 return lwtriangle_check_geodetic((LWTRIANGLE *)geom);
2994 case MULTIPOINTTYPE:
2995 case MULTILINETYPE:
2996 case MULTIPOLYGONTYPE:
2998 case TINTYPE:
2999 case COLLECTIONTYPE:
3001 default:
3002 lwerror("lwgeom_check_geodetic: unsupported input geometry type: %d - %s",
3003 geom->type, lwtype_name(geom->type));
3004 }
3005 return LW_FALSE;
3006}
const char * lwtype_name(uint8_t type)
Return the type name string associated with a type number (e.g.
Definition lwutil.c:216
#define LW_FALSE
Definition liblwgeom.h:94
#define COLLECTIONTYPE
Definition liblwgeom.h:108
#define MULTILINETYPE
Definition liblwgeom.h:106
#define LINETYPE
Definition liblwgeom.h:103
#define MULTIPOINTTYPE
Definition liblwgeom.h:105
#define POINTTYPE
LWTYPE numbers, used internally by PostGIS.
Definition liblwgeom.h:102
#define TINTYPE
Definition liblwgeom.h:116
#define MULTIPOLYGONTYPE
Definition liblwgeom.h:107
#define POLYGONTYPE
Definition liblwgeom.h:104
#define POLYHEDRALSURFACETYPE
Definition liblwgeom.h:114
#define TRIANGLETYPE
Definition liblwgeom.h:115
#define LW_TRUE
Return types for functions with status returns.
Definition liblwgeom.h:93
static int lwline_check_geodetic(const LWLINE *line)
static int lwcollection_check_geodetic(const LWCOLLECTION *col)
static int lwpoly_check_geodetic(const LWPOLY *poly)
static int lwtriangle_check_geodetic(const LWTRIANGLE *triangle)
static int lwpoint_check_geodetic(const LWPOINT *point)
void void lwerror(const char *fmt,...) __attribute__((format(printf
Write a notice out to the error handler.
static int lwgeom_is_empty(const LWGEOM *geom)
Return true or false depending on whether a geometry is an "empty" geometry (no vertices members)
Definition lwinline.h:199
uint8_t type
Definition liblwgeom.h:462

References COLLECTIONTYPE, LINETYPE, LW_FALSE, LW_TRUE, lwcollection_check_geodetic(), lwerror(), lwgeom_is_empty(), lwline_check_geodetic(), lwpoint_check_geodetic(), lwpoly_check_geodetic(), lwtriangle_check_geodetic(), lwtype_name(), MULTILINETYPE, MULTIPOINTTYPE, MULTIPOLYGONTYPE, POINTTYPE, POLYGONTYPE, POLYHEDRALSURFACETYPE, TINTYPE, TRIANGLETYPE, LWGEOM::type, and LWPOINT::type.

Referenced by lwcollection_check_geodetic(), and test_lwgeom_check_geodetic().

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