Skip to contents

Functions to check if an object is a data frame, or coerce it if possible.

Usage

# S4 method for extent_crs
as.data.frame(x)

# S4 method for records
as.data.frame(x)

Arguments

x

Any R object.

Value

returns a data frame, normally with all row names

Examples

if (FALSE) {
# load example rtoi
file.copy(from=system.file("ex/Navarre",package="rsat"),
         to=tempdir(),
         recursive = TRUE)

navarre <- read_rtoi(file.path(tempdir(),"Navarre"))

# get the records
rcds <- records(navarre)
# coerce the records to rtoi
df <- as.data.frame(rcds)
# print the dataframe
print(df)
}