Welcome to TERN Knowledge Base

Vegetation Cover data: 'single_cover_value' function

The 'single_cover_value' function in the 'auplotsR' package calculates Vegetation Cover Values for particular Growth Form Types and/or Height Thresholds per Site from Raw AusPlots Vegetation Point Intercept data. The 'growth_form_table' function can also be used to calculate Cover Values for all Vegetation Growth Form Types; however, 'single_cover_value' can perform these computations for:

  • Particular vegetation growth form types (i.e. for individual growth forms or any combination of growth form types)
  • Vegetation higher that a specified height threshold
  • Vegetation with any combination of growth form types and minimum height


Specifically 'single_cover_value' takes the following inputs via its arguments:

  • 'veg.PI': Raw Vegetation Point Intercept data from AusPlots. A veg.PI data frame generated by the 'get_ausplots' function (see above).
  • 'in_canopy_sky': Method used to calculate Cover. A logical value that indicates whether to use in ‘canopy sky hits’ (i.e. calculate ‘opaque canopy cover’) or ‘projected foliage cover’. The default value, ‘FALSE’, calculates ‘projected foliage cover’. To calculate ‘opaque canopy cover’ the argument must be set to ‘TRUE’.
  • 'by.growth_form': Whether to calculate Cover for a Subset by Growth Form type. A logical value that indicates whether to subset by growth form type. The default, ‘TRUE’, calculates cover for the growth form types specified in the argument ‘my.growth_forms’ (see next). If set to ‘FALSE’, cover calculations are conducted only for the vegetation sub-set by a provided Minimum Height Threshold.
  • 'my.growth_forms': Growth Form Types used to Subset Data used for the Cover Calculations. A character vector specifying the growth form types to subset the data used for the cover calculations. Any combination of growth form types can be used. The default, ‘c("Tree/Palm", "Tree Mallee")’, is set to represent trees. It applies only when ‘by.growth_form=TRUE’; otherwise, this argument is ignored and only height sub-setting is applied.
  • 'min.height': Minimum Height Threshold used to Subset Data used for the Cover Calculations. A numeric value indicating the minimum height (in metres) of the vegetation to be included in the subset of the data used for the cover calculations. A height must be always provided. The default, ‘5’, is set up for a cover of trees. It can be set to ‘0’ to ignore height and thus include any plant hit. If set to a ‘negative number’, it will return nonsensical output.


The 'single_cover_value' function returns a data frame with two columns. The data frame rows correspond to unique sites, while the two columns correspond to the unique site and the percentage cover for the requested subset of vegetation (e.g. “Tree/Palm” higher than '5' metres).

When 'by.growth_form = FALSE' and 'min.height = 0', the output is nearly the same as the green cover fraction returned by the 'fractional_cover' function (see above). The values can differ because ‘fractional_cover’ applies a ‘height rule’ in which the highest intercept at a given point is taken, whereas ‘single_cover_value’ finds any green cover. For example, when dead trees overhang green understorey the values returned by both functions can differ. For general cover purposes, using ‘fractional_cover’ is recommended. ‘single_cover_value’ is best suited to calculate cover subset by height and growth form.


EXAMPLES

Examples of the use of the 'single_cover_value' function to compute Cover Values for particular Vegetation Growth Form Types and/or Height Thresholds per Site are presented below. Examples of how to manipulate, display, and use the data generated by the 'single_cover_value' function can be found in TERN’s DSDP ‘ECOSYSTEM SURVEILLANCE (AusPlots) TUTORIAL: UNDERSTANDING AND USING THE ‘ausplotsR’ PACKAGE AND AusPlots DATA’ Tutorial. Cover values (for particular vegetation growth form types and/or height thersholds) are computed for the full set of vegetation point intersect data currently available at AusPlots. The list of data frames containing information for all currently available AusPlots sites (i.e. the 'AP.data' list) was previously created using the `get_ausplots` function (see the 'Obtaining AusPlots data: 'get_ausplots' function' Step-by-Step Guidewe use the list created in Example 4). The resulting 'Vegetation Cover (by Growth Form Type and/or Height)' data frames can be enriched with additional information as seen in the 'Manipulating AusPlots data II: Merging data frames' Step-by-Step GuideThe examples presented below cover different scenarios for sub-setting the input vegetation point intercept data frame prior to the calculation of the required vegetation cover values. Specifically, we explore how compute cover values: (1) sub-setting only by Height, (2) sub-setting only by Taxonomy, and (3) sub-setting by both Height and Taxonomy. We Combine the outputs of a single type (i.e. Height or Growth Form) into a Single Data Frame.



Example 1: Vegetation Cover data, sub-setting only by Height


Vegetation Cover of any Growth Form Type higher than 0 meters


Vegetation Cover of any Growth Form Type higher than 2 meters


Combine Height Results (> 0m, > 2m, and 0 to 2m) in a Sigle Data Frame



Example 2: Vegetation Cover data, sub-setting only by Taxonomy


Trees ("Tree/Palm" + "Tree Mallee", which is the default)


Grasses ("Hummock grass" + "Tussock grass")


Combine Growth Form Types Results (Trees & Grasses) in a Sigle Data Frame



Example 3: Vegetation Cover data, sub-setting by both Height and Taxonomy


Trees ("Tree/Palm" + "Tree Mallee", the default) higher than 5 meters

Provide your feedback about the experience with Knowledge base