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

◆ lwgeom_count_vertices()

uint32_t lwgeom_count_vertices ( const LWGEOM geom)
extern

Count the total number of vertices in any LWGEOM.

Count the total number of vertices in any LWGEOM.

TODO: Make sure the internal functions don't overflow

Definition at line 1309 of file lwgeom.c.

1310{
1311 int result = 0;
1312
1313 /* Null? Zero. */
1314 if( ! geom ) return 0;
1315
1316 LWDEBUGF(4, "lwgeom_count_vertices got type %s",
1317 lwtype_name(geom->type));
1318
1319 /* Empty? Zero. */
1320 if( lwgeom_is_empty(geom) ) return 0;
1321
1322 switch (geom->type)
1323 {
1324 case POINTTYPE:
1325 result = 1;
1326 break;
1327 case TRIANGLETYPE:
1328 case CIRCSTRINGTYPE:
1329 case LINETYPE:
1330 result = lwline_count_vertices((const LWLINE *)geom);
1331 break;
1332 case POLYGONTYPE:
1333 result = lwpoly_count_vertices((const LWPOLY *)geom);
1334 break;
1335 case COMPOUNDTYPE:
1336 case CURVEPOLYTYPE:
1337 case MULTICURVETYPE:
1338 case MULTISURFACETYPE:
1339 case MULTIPOINTTYPE:
1340 case MULTILINETYPE:
1341 case MULTIPOLYGONTYPE:
1343 case TINTYPE:
1344 case COLLECTIONTYPE:
1346 break;
1347 default:
1348 lwerror("%s: unsupported input geometry type: %s",
1349 __func__, lwtype_name(geom->type));
1350 break;
1351 }
1352 LWDEBUGF(3, "counted %d vertices", result);
1353 return result;
1354}
char result[OUT_DOUBLE_BUFFER_SIZE]
Definition cu_print.c:267
const char * lwtype_name(uint8_t type)
Return the type name string associated with a type number (e.g.
Definition lwutil.c:216
#define COLLECTIONTYPE
Definition liblwgeom.h:108
#define COMPOUNDTYPE
Definition liblwgeom.h:110
#define CURVEPOLYTYPE
Definition liblwgeom.h:111
#define MULTILINETYPE
Definition liblwgeom.h:106
#define MULTISURFACETYPE
Definition liblwgeom.h:113
#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 CIRCSTRINGTYPE
Definition liblwgeom.h:109
#define MULTICURVETYPE
Definition liblwgeom.h:112
#define TRIANGLETYPE
Definition liblwgeom.h:115
uint32_t lwline_count_vertices(const LWLINE *line)
Definition lwline.c:505
uint32_t lwpoly_count_vertices(const LWPOLY *poly)
Definition lwpoly.c:418
uint32_t lwcollection_count_vertices(const LWCOLLECTION *col)
#define LWDEBUGF(level, msg,...)
Definition lwgeom_log.h:106
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 CIRCSTRINGTYPE, COLLECTIONTYPE, COMPOUNDTYPE, CURVEPOLYTYPE, LINETYPE, lwcollection_count_vertices(), LWDEBUGF, lwerror(), lwgeom_is_empty(), lwline_count_vertices(), lwpoly_count_vertices(), lwtype_name(), MULTICURVETYPE, MULTILINETYPE, MULTIPOINTTYPE, MULTIPOLYGONTYPE, MULTISURFACETYPE, POINTTYPE, POLYGONTYPE, POLYHEDRALSURFACETYPE, result, TINTYPE, TRIANGLETYPE, LWGEOM::type, and LWLINE::type.

Referenced by _lwt_toposnap(), lwcollection_count_vertices(), lwcompound_get_lwpoint(), lwgeom_calculate_mbc(), lwgeom_needs_bbox(), LWGEOM_npoints(), LWGEOM_numpoints_linestring(), LWGEOM_pointn_linestring(), lwgeom_subdivide_recursive(), lwgeom_voronoi_diagram(), RASTER_InterpolateRaster(), test_lwcurve_linearize(), test_lwgeom_count_vertices(), test_lwpoly_construct_circle(), test_misc_count_vertices(), test_on_gser2_lwgeom_count_vertices(), test_on_gser_lwgeom_count_vertices(), test_point_count(), and wkt_parser_curvepolygon_add_ring().

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