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

◆ lwgeom_is_closed()

int lwgeom_is_closed ( const LWGEOM geom)

Return true or false depending on whether a geometry is a linear feature that closes on itself.

Definition at line 1035 of file lwgeom.c.

1036{
1037 int type = geom->type;
1038
1039 if( lwgeom_is_empty(geom) )
1040 return LW_FALSE;
1041
1042 /* Test linear types for closure */
1043 switch (type)
1044 {
1045 case LINETYPE:
1046 return lwline_is_closed((LWLINE*)geom);
1047 case POLYGONTYPE:
1048 return lwpoly_is_closed((LWPOLY*)geom);
1049 case CIRCSTRINGTYPE:
1050 return lwcircstring_is_closed((LWCIRCSTRING*)geom);
1051 case COMPOUNDTYPE:
1052 return lwcompound_is_closed((LWCOMPOUND*)geom);
1053 case TINTYPE:
1054 return lwtin_is_closed((LWTIN*)geom);
1056 return lwpsurface_is_closed((LWPSURFACE*)geom);
1057 }
1058
1059 /* Recurse into collections and see if anything is not closed */
1060 if ( lwgeom_is_collection(geom) )
1061 {
1063 uint32_t i;
1064 int closed;
1065 for ( i = 0; i < col->ngeoms; i++ )
1066 {
1067 closed = lwgeom_is_closed(col->geoms[i]);
1068 if ( ! closed )
1069 return LW_FALSE;
1070 }
1071 return LW_TRUE;
1072 }
1073
1074 /* All non-linear non-collection types we will call closed */
1075 return LW_TRUE;
1076}
#define LW_FALSE
Definition liblwgeom.h:108
#define COMPOUNDTYPE
Definition liblwgeom.h:124
#define LINETYPE
Definition liblwgeom.h:117
#define TINTYPE
Definition liblwgeom.h:130
#define POLYGONTYPE
Definition liblwgeom.h:118
#define POLYHEDRALSURFACETYPE
Definition liblwgeom.h:128
#define CIRCSTRINGTYPE
Definition liblwgeom.h:123
#define LW_TRUE
Return types for functions with status returns.
Definition liblwgeom.h:107
int lwcircstring_is_closed(const LWCIRCSTRING *curve)
int lwline_is_closed(const LWLINE *line)
Definition lwline.c:445
int lwcompound_is_closed(const LWCOMPOUND *curve)
Definition lwcompound.c:35
int lwpsurface_is_closed(const LWPSURFACE *psurface)
Definition lwpsurface.c:99
int lwtin_is_closed(const LWTIN *tin)
Definition lwtin.c:93
int lwpoly_is_closed(const LWPOLY *poly)
Definition lwpoly.c:499
int lwgeom_is_closed(const LWGEOM *geom)
Return true or false depending on whether a geometry is a linear feature that closes on itself.
Definition lwgeom.c:1035
int lwgeom_is_collection(const LWGEOM *geom)
Determine whether a LWGEOM can contain sub-geometries or not.
Definition lwgeom.c:1079
LWCOLLECTION * lwgeom_as_lwcollection(const LWGEOM *lwgeom)
Definition lwgeom.c:215
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:193
uint32_t ngeoms
Definition liblwgeom.h:566
LWGEOM ** geoms
Definition liblwgeom.h:561
uint8_t type
Definition liblwgeom.h:448

References CIRCSTRINGTYPE, COMPOUNDTYPE, LWCOLLECTION::geoms, LINETYPE, LW_FALSE, LW_TRUE, lwcircstring_is_closed(), lwcompound_is_closed(), lwgeom_as_lwcollection(), lwgeom_is_closed(), lwgeom_is_collection(), lwgeom_is_empty(), lwline_is_closed(), lwpoly_is_closed(), lwpsurface_is_closed(), lwtin_is_closed(), LWCOLLECTION::ngeoms, POLYGONTYPE, POLYHEDRALSURFACETYPE, TINTYPE, and LWGEOM::type.

Referenced by lwgeom_dimensionality(), lwgeom_is_closed(), and LWGEOM_isclosed().

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