print: Prints the values

print,api-methodR Documentation

Prints the values

Description

prints an object and returns it invisibly (via invisible(x)).

Usage

## S4 method for signature 'api'
print(x)

## S4 method for signature 'extent_crs'
print(x)

## S4 method for signature 'records'
print(x)

## S4 method for signature 'rtoi'
print(x)

## S4 method for signature 'variables'
print(x, ...)

Arguments

x

an object to be printed..

...

additional arguments.

Value

prints rtoi metadata

Examples

## Not run: 
library(rsat)

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

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

print(navarre)

# get records
rcrds <- records(navarre)

print(rcrds)

## End(Not run)

rsat documentation built on March 18, 2022, 5:40 p.m.