Skip to contents

Display the object, by printing, plotting or whatever suits its class. This function exists to be specialized by methods. The default method calls showDefault.

Usage

# S4 method for extent_crs
show(object)

# S4 method for records
show(object)

# S4 method for rtoi
show(object)

# S4 method for variables
show(object)

Arguments

object

Any R object

Value

show returns an invisible NULL.

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"))

## The method will now be used for automatic printing of navarre
navarre

## get records
rcds <- records(navarre)

rcds
}