species_codings | R Documentation |
Data of all supported species codings in the package
ForestElementsR
. Currently supported codings are
The master species coding is the original species coding
used by the package ForestElementsR. It contains each species from
the species_master_table
and no species groups. This
coding corresponds directly to the species_master_table
.
Its species_id's (see below) are the master table's columns
genus
and species
combined into one character string,
separated by an underscore.
The tum_wwk_short species coding is one of two codings in use at the Chair of Forest Growth and Yield Science. It defines only a small set of single species explicitly (the most important ones in Central Europe), while all other species are attributed to a few large container groups.
The tum_wwk_long species coding is one of two codings in use at the Chair of Forest Growth and Yield Science. It defines a larger set of single species than the tum_wwk_short coding. In its original version, this coding contains several species groups, but most of these groups are ambiguous as they include species which also have a single coding. These ambiguous groups were not included in this package.
The bavrn_state species coding is the species coding used by the Bavarian State Forest Service.
The bavrn_state_short is a coding that combines the species of bavrn_state into groups. These groups are typically used by the Bavarian State Forest Service in aggregated evaluations.
The ger_nfi_2012 species coding is the species coding used by the German National Forest Inventory of 2012 \insertCitebwi3_methods_2017ForestElementsR
species_codings
A tibble containing the supported species codings together with the coding tables (which are tibbles themselves). Its columns are:
name of the coding
tibble describing the species coding with the columns
the species code (character)
the scientific species name (for species groups english terms are used)
English species names
German species names
# Get specific coding tables out of the data 'species_codings'
fe_species_get_coding_table("master")
fe_species_get_coding_table("tum_wwk_short")
fe_species_get_coding_table("tum_wwk_long")
fe_species_get_coding_table("bavrn_state")
fe_species_get_coding_table("bavrn_state_short")
fe_species_get_coding_table("ger_nfi_2012")
# Check number of species behind each code in a given coding
fe_species_get_coding_table("tum_wwk_short") |>
dplyr::group_by(species_id) |>
dplyr::summarise(n = dplyr::n()) |>
dplyr::arrange(as.numeric(species_id)) # just for the look of it
fe_species_get_coding_table("bavrn_state_short") |>
dplyr::group_by(species_id) |>
dplyr::summarise(n = dplyr::n()) |>
dplyr::arrange(as.numeric(species_id)) # just for the look of it
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.