mapview (version 2.7.0)

npts: count the number of points/vertices/nodes of sf objects

Description

count the number of points/vertices/nodes of sf objects

Usage

npts(x, by_feature = FALSE)

Arguments

x

an sf/sfc object

by_feature

count total number of vertices (FALSE) of for each feature (TRUE).

Examples

Run this code
# NOT RUN {
npts(franconia)
npts(franconia, by_feature = TRUE)
npts(sf::st_geometry(franconia[1, ])) # first polygon

npts(breweries) # is the same as
nrow(breweries)

# }

Run the code above in your browser using DataCamp Workspace