gather_species_inventory | R Documentation |
Given species inventory data create a tall format data frame usable by other terradactyl functions.
gather_species_inventory_terradat(
dsn = NULL,
tblSpecRichDetail = NULL,
tblSpecRichHeader = NULL
)
species_count(species_inventory_tall, ...)
tall_species(species_inventory_detail)
gather_species_inventory_lmf(dsn = NULL, file_type = "gdb", PLANTCENSUS = NULL)
gather_species_inventory(
dsn = NULL,
source,
tblSpecRichDetail = NULL,
tblSpecRichHeader = NULL,
PLANTCENSUS = NULL,
file_type = "gdb",
autoQC = TRUE
)
dsn |
Character string. The full filepath and filename (including file extension) of the geodatabase containing the table of interest. This field is unnecessary if you supply either both of tblSpecRichDetail and tblSpecRichHeader (AIM/DIMA/TerrADat) or PLANTCENSUS (LMF/NRI). |
tblSpecRichDetail |
Dataframe of the data structure tblSpecRichDetail from the DIMA database with the addition of PrimaryKey and DBKey fields. Use with tblSpecRichHeader when data source is AIM, DIMA, or TerrADat; alternately provide dsn. |
tblSpecRichHeader |
Dataframe of the data structure tblSpecRichHeader from the DIMA database with the addition of PrimaryKey and DBKey fields. Use with tblSpecRichDetail when data source is AIM, DIMA, or TerrADat; alternately provide dsn. |
PLANTCENSUS |
Dataframe of the data structure PLANTCENSUS from LMF/NRI database with the addition of PrimaryKey and DBKey fields. Use when data source is LMF or NRI; alternately provide dsn. |
source |
Character string. The data source format,
|
A tall data frame containing species inventory data.
Other <gather>:
gather_all()
,
gather_gap()
,
gather_height()
,
gather_lpi()
,
gather_plot_characterization()
,
gather_rangeland_health()
,
gather_soil_horizon()
,
gather_soil_stability()
gather_species_inventory(dsn = "Path/To/AIM_Geodatabase.gdb",
source = "AIM")
gather_species_inventory(dsn = "Path/To/LMF_Geodatabase.gdb",
source = "LMF")
aim_specrichdetail <- read.csv("Path/To/tblSpecRichDetail.csv")
aim_specrichheader <- read.csv("Path/To/tblSpecRichHeader.csv")
gather_species_inventory(source = "AIM",
tblSpecRichDetail = aim_specrichdetail,
tblSpecRichHeader = aim_specrichheader)
lmf_census <- read.csv("Path/To/PLANTCENSUS.csv")
gather_species_inventory(source = "LMF",
PLANTCENSUS = lmf_census)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.