Learn R Programming

move (version 1.0)

summary: A summary of a DBBMM or DBBMMStack, Move or MoveStack object

Description

Summarizes the information of the raster from a DBBMM or DBBMMStack, or the data from a Move or MoveStack object

Usage

## S3 method for class '.UD':
summary(object)
  ## S3 method for class '.UDStack':
summary(object)
  ## S3 method for class '.MoveTrackSingle':
summary(object)
  ## S3 method for class '.MoveTrackStack':
summary(object)

Arguments

object
a DBBMM/DBBMMStack, Move/MoveStack object

Details

Returns the projection, extent, and maximum and minimum values of the raster stored within the DBBMM or DBBMMStack object. If the object is a Move or MoveStack object the functions distance, time, speed, and angle is called and a list with the summarized values is returned.

Examples

Run this code
load(system.file("extdata", "move.RData", package="move"), .GlobalEnv)
  stack <- moveStack(list(leroy,leroy))
  
  summary(leroy) # summary of angle measures of a Move object
  summary(stack) # summary of angle measures of a MoveStack object
  summary(leroydbbmm) # summary of a DBBMM object
  summary(dbbmmstack) # summary of a DBBMMStack object

Run the code above in your browser using DataLab