This function creates a new AttributeSpace
object.
AttributeSpace(planning.unit.points, demand.points, species)
PlanningUnitPoints()
for planning
unit in the space.
DemandPoints()
object for the space.
integer
species identifier to indicate which species the
space is associated with.
A new AttributeSpace
object.
# \dontrun{
space <- AttributeSpace(
PlanningUnitPoints(
matrix(rnorm(100), ncol = 2),
seq_len(50)
),
DemandPoints(
matrix(rnorm(100), ncol = 2),
runif(50)
),
species = 1L
)
# }