summary_landscape: Summarize 'landscape' class objects

View source: R/summary_landscape.R

summary_landscapeR Documentation

Summarize 'landscape' class objects

Description

This function summarizes a landscape class object.

Usage

summary_landscape(object)

Arguments

object

Object of class landscape

Details

This function can be used to retrieve basic information on the objects of class 'landscape'.

Value

Returns a data frame with the following information on a landscape class object:

landscape area (hectares)

Landscape mosaic area, in hectares

number of patches

Number of patches in the landscape

mean patch area (hectares)

Mean patch area, in hectares

SD patch area

SD of the patch area

mean distance amongst patches (meters)

Mean inter-patch distance, in meters

minimum distance amongst patches (meters)

Minimum inter-patch distance, in meters

Note

The minimum distance between patches is different from that given in the object of class 'landscape', in the slot 'minimum.distance'. This is because this output is computed from the landscape structure and the one in the 'landscape' object was the parameter used to built the landscape. The minimum inter-patch distance given as a parameter in the function rland.graph will consider distance between patch centroids. The minimum inter-patch distance returned here considers the edge-to-edge distance, so this might be smaller that the parameter of rland.graph. In order to see the difference between centroid-to-centroid and edge-to-edge inter-patch distance compute both using the matrix.graph function (methods are 'centr_distance' and 'euc_distance', respectively).

Author(s)

Frederico Mestre and Fernando Canovas

See Also

rland.graph, landscape, matrix.graph

Examples


data(rland)

summary_landscape(object=rland)

#                                            Value
#landscape area (hectares)                 100.000
#number of patches                          60.000
#mean patch area (hectares)                  0.061
#SD patch area                               0.041
#mean distance amongst patches (meters)    528.345
#minimum distance amongst patches (meters)  51.780


MetaLandSim documentation built on Jan. 13, 2023, 1:11 a.m.