Learn R Programming

landsepi (version 1.5.1)

plot_allocation: Plotting allocation of croptypes in a landscape

Description

Plots croptype allocation in the landscape at a given year of the simulation

Usage

plot_allocation(
  landscape,
  year,
  croptype_names = c(),
  title = "",
  subtitle = "",
  filename = "landscape.png"
)

Value

a png file.

Arguments

landscape

a SpatialPolygonsDataFrame

year

year to be plotted

croptype_names

croptype names (for legend)

title

title of the graphic

subtitle

subtitle of the graphic

filename

name of the .png file to be generated

See Also

plotland

Examples

Run this code
if (FALSE) {
landscape <- landscapeTEST1
croptypes <- data.frame(sample.int(3, length(landscape), replace = TRUE))
allocation <- SpatialPolygonsDataFrame(landscape, croptypes, match.ID = TRUE)
plot_allocation(allocation, 1,
  title = "Simulated landscape", subtitle = "Year 1",
  filename = paste(getwd(), "/landscape.png", sep = "")
)
}

Run the code above in your browser using DataLab