Skip to contents

Creates a landscape with dense vegetation cover using random distribution. This is a specialized wrapper around create_landscape_random with high vegetation proportions.

Usage

create_landscape_dense(veg_prop = 0.9, width = 100, height = 100)

Arguments

veg_prop

Numeric. Proportion of cells with vegetation (0-1). Default: 0.9.

width

Integer. Width of landscape in cells. Default: 100.

height

Integer. Height of landscape in cells. Default: 100.

Value

A landscape object with pattern "dense" containing

data

SpatRaster with binary values (0 = bare ground, 1 = vegetation)

pattern

Character string "dense"

params

List of all input parameters used to generate the landscape

Examples

# Create default dense landscape (90% vegetation)
dense <- create_landscape_dense()

# Create very dense landscape
very_dense <- create_landscape_dense(veg_prop = 0.95)