as.data.frame,extent_crs-method {rsat} | R Documentation |
Coerce to a Data Frame
Description
Functions to check if an object is a data frame, or coerce it if possible.
Usage
## S4 method for signature 'extent_crs'
as.data.frame(x)
## S4 method for signature 'records'
as.data.frame(x)
Arguments
x |
Any R object. |
Value
returns a data frame, normally with all row names
Examples
## Not run:
# 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)
## End(Not run)
[Package rsat version 0.1.21 Index]