powered by
Get the geometry type (points, lines, or polygons) of a SpatVector or the data types of the fields (attributes, variables) of a SpatVector.
# S4 method for SpatVector geomtype(x)# S4 method for SpatVector datatype(x)# S4 method for SpatVector is.points(x)# S4 method for SpatVector is.lines(x)# S4 method for SpatVector is.polygons(x)# S4 method for SpatRaster datatype(x, bylyr=TRUE)
# S4 method for SpatVector datatype(x)
# S4 method for SpatVector is.points(x)
# S4 method for SpatVector is.lines(x)
# S4 method for SpatVector is.polygons(x)
# S4 method for SpatRaster datatype(x, bylyr=TRUE)
character
SpatVector or SpatRaster
logical. If TRUE a value is returned for each layer. Otherwise, a value is returned for each data source (such as a file)
TRUE
f <- system.file("ex/lux.shp", package="terra") v <- vect(f) geomtype(v) is.polygons(v) is.lines(v) is.points(v) names(v) datatype(v)
Run the code above in your browser using DataLab