7 GRIIS mapping
In this chapter we export the unified information to an Excel template that can be used by the Global Register of Introduced and Invasive Species (GRIIS).
7.1 Read Darwin Core data
dwc_taxon <- read_csv(here("data", "processed", "taxon.csv"))
dwc_distribution <- read_csv(here("data", "processed", "distribution.csv"))
dwc_speciesprofile <- read_csv(here("data", "processed", "speciesprofile.csv"))
Select only national distributions
7.2 GRIIS format
7.2.1 Pre-processing
- Check if the taxon core, distribution extension and species profile extension contain only one row per
taxonID
.
## [1] TRUE
## [1] TRUE
## [1] TRUE
- Join the 3 files into one dataframe
griis
.
7.3 Post-processing
Only keep the GRIIS columns.
Drop the
griis_
prefix.Sort on
scientificName
(the default for GRIIS lists).Preview data:
- Save to Excel.