APCalign
uses the Australian
Plant Census (APC) and Australian
Plant Name Index to align and update Australian plant taxon name
strings. ‘APCalign’ also supplies information about the established
status (native/introduced) of plant taxa across different
states/territories. It’s useful for updating species list and
intersecting them with the APC consensus understanding of established
status (native/introduced).
From CRAN:
install.packages("APCalign")
OR for the github version:
install.packages("remotes")
::install_github("traitecoevo/APCalign") remotes
Generating a look-up table can be done with just one function:
library(APCalign)
create_taxonomic_update_lookup(
taxa = c(
"Banksia integrifolia",
"Acacia longifolia",
"Commersonia rosea"
)
)#> ================================================================================================================================================================
#> # A tibble: 3 × 12
#> original_name aligned_name accepted_name suggested_name genus taxon_rank
#> <chr> <chr> <chr> <chr> <chr> <chr>
#> 1 Banksia integrifol… Banksia int… Banksia inte… Banksia integ… Bank… species
#> 2 Acacia longifolia Acacia long… Acacia longi… Acacia longif… Acac… species
#> 3 Commersonia rosea Commersonia… Androcalva r… Androcalva ro… Andr… species
#> # ℹ 6 more variables: taxonomic_dataset <chr>, taxonomic_status <chr>,
#> # scientific_name <chr>, aligned_reason <chr>, update_reason <chr>,
#> # number_of_collapsed_taxa <dbl>
if you’re going to use APCalign more than once, it will save you time to load the taxonomic resources into memory first:
<- load_taxonomic_resources()
tax_resources #> ================================================================================================================================================================
create_taxonomic_update_lookup(
taxa = c(
"Banksia integrifolia",
"Acacia longifolia",
"Commersonia rosea",
"not a species"
),resources = tax_resources
)#> # A tibble: 4 × 12
#> original_name aligned_name accepted_name suggested_name genus taxon_rank
#> <chr> <chr> <chr> <chr> <chr> <chr>
#> 1 Banksia integrifol… Banksia int… Banksia inte… Banksia integ… Bank… species
#> 2 Acacia longifolia Acacia long… Acacia longi… Acacia longif… Acac… species
#> 3 Commersonia rosea Commersonia… Androcalva r… Androcalva ro… Andr… species
#> 4 not a species <NA> <NA> <NA> <NA> <NA>
#> # ℹ 6 more variables: taxonomic_dataset <chr>, taxonomic_status <chr>,
#> # scientific_name <chr>, aligned_reason <chr>, update_reason <chr>,
#> # number_of_collapsed_taxa <dbl>
Checking for a list of species to see if they are classified as Australian natives:
native_anywhere_in_australia(c("Eucalyptus globulus","Pinus radiata"), resources = tax_resources)
#> # A tibble: 2 × 2
#> species native_anywhere_in_aus
#> <chr> <chr>
#> 1 Eucalyptus globulus native
#> 2 Pinus radiata introduced
Getting a family lookup table for genera from the specified taxonomy:
get_apc_genus_family_lookup(c("Eucalyptus",
"Pinus",
"Actinotus",
"Banksia",
"Acacia",
"Triodia"),
resources = tax_resources)
#> # A tibble: 6 × 2
#> genus family
#> <chr> <chr>
#> 1 Eucalyptus Myrtaceae
#> 2 Pinus Pinaceae
#> 3 Actinotus Apiaceae
#> 4 Banksia Proteaceae
#> 5 Acacia Fabaceae
#> 6 Triodia Poaceae
We also developed a shiny application for non-R users to update and align their taxonomic names. You can find the application here: https://unsw.shinyapps.io/APCalign-app
Highly recommend looking at our Getting
Started vignette to learn about how to use APCalign
.
You can also learn more about our taxa
matching algorithm.
Did you come across an unexpected taxon name change? Elusive error you can’t debug - submit an issue and we will try our best to help.
We welcome any comments and contributions to the package, start by submit an issue and we can take it from there!