Functions to check if an object is a data frame, or coerce it if possible.
Usage
# S4 method for class 'extent_crs'
as.data.frame(x)
# S4 method for class 'records'
as.data.frame(x)
Examples
if (FALSE) { # \dontrun{
# 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)
} # }