IIA: Interval level intensity analysis

Description Usage Arguments Details Value Examples

Description

Interval level intensity analysis

Usage

1
IIA(crosstabulation, time.points)

Arguments

crosstabulation

List of crosstabulation tables generated by multicrosstab function.

time.points

a charachter vector showing the time point of each raster layer in chronological order.

Details

Gets the list of crosstabulation tables, time points vector and returns a list of interval level metrics accompanied with relevant bar graphs.

Value

The output is a list of lists. Elements of the list include: change amount, uniform intensity of change and Uniform change all in all intervals.

Examples

1
2
3
4
5
6
7
8
raster_2005 <- raster::raster(system.file("external/RASTER_2005.RST", package="intensity.analysis"))
raster_2010 <- raster::raster(system.file("external/RASTER_2010.RST", package="intensity.analysis"))
raster_2012 <- raster::raster(system.file("external/RASTER_2012.RST", package="intensity.analysis"))
raster.layers <- list(raster_2005, raster_2010, raster_2012)
time.points <- c("2005","2010","2012")
categories <- c("Water","Trees","Impervious")
crosstabulation <- multicrosstab(raster.layers, time.points, categories)
IIA.output <- IIA(crosstabulation, time.points)

intensity.analysis documentation built on May 2, 2019, 2:51 p.m.