Learn R Programming

geometr (version 0.2.10)

getType: Get the type of a spatial object.

Description

Get the type of a spatial object.

Usage

getType(x, ...)

# S4 method for ANY getType(x)

# S4 method for geom getType(x)

# S4 method for Spatial getType(x)

# S4 method for sf getType(x)

# S4 method for Raster getType(x)

# S4 method for matrix getType(x)

Arguments

x

the object for which to determine the type.

...

other arguments.

Value

A vector of two values of the geometry type (point/line/polygon/grid) and the specific main type/class of x.

See Also

Other getters: getCRS(), getCols(), getExtent(), getFeatures(), getGroups(), getHistory(), getLayers(), getNames(), getPoints(), getRes(), getRows(), getWindow()

Examples

Run this code
# NOT RUN {
getType(x = gtGeoms$point)

getType(x = gtSP$SpatialPolygons)

getType(x = gtSF$multiline)

getType(x = gtRasters$categorical)

getType(x = matrix(0, 3, 5))
# }

Run the code above in your browser using DataLab