terra (version 1.7-71)

geomtype: Geometry type of a SpatVector

Description

Get the geometry type (points, lines, or polygons) of a SpatVector. See datatype for the data types of the fields (attributes, variables) of a SpatVector.

Usage

# S4 method for SpatVector
geomtype(x)

# S4 method for SpatVector is.points(x)

# S4 method for SpatVector is.lines(x)

# S4 method for SpatVector is.polygons(x)

Value

character

Arguments

x

SpatVector

Examples

Run this code
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