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

◆ lwgeom_count_vertices()

uint32_t lwgeom_count_vertices ( const LWGEOM geom)

Count points in an LWGEOM.

Count the total number of vertices in any LWGEOM.

TODO: Make sure the internal functions don't overflow

Definition at line 1337 of file lwgeom.c.

1338{
1339 int result = 0;
1340
1341 /* Null? Zero. */
1342 if( ! geom ) return 0;
1343
1344 LWDEBUGF(4, "lwgeom_count_vertices got type %s",
1345 lwtype_name(geom->type));
1346
1347 /* Empty? Zero. */
1348 if( lwgeom_is_empty(geom) ) return 0;
1349
1350 switch (geom->type)
1351 {
1352 case POINTTYPE:
1353 result = 1;
1354 break;
1355 case TRIANGLETYPE:
1356 case CIRCSTRINGTYPE:
1357 case LINETYPE:
1358 result = lwline_count_vertices((const LWLINE *)geom);
1359 break;
1360 case POLYGONTYPE:
1361 result = lwpoly_count_vertices((const LWPOLY *)geom);
1362 break;
1363 case COMPOUNDTYPE:
1364 case CURVEPOLYTYPE:
1365 case MULTICURVETYPE:
1366 case MULTISURFACETYPE:
1367 case MULTIPOINTTYPE:
1368 case MULTILINETYPE:
1369 case MULTIPOLYGONTYPE:
1371 case TINTYPE:
1372 case COLLECTIONTYPE:
1374 break;
1375 default:
1376 lwerror("%s: unsupported input geometry type: %s",
1377 __func__, lwtype_name(geom->type));
1378 break;
1379 }
1380 LWDEBUGF(3, "counted %d vertices", result);
1381 return result;
1382}
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:515
uint32_t lwpoly_count_vertices(const LWPOLY *poly)
Definition lwpoly.c:417
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: