View source: R/keyword-set-element.R
create_keyword_set | R Documentation |
Takes in keywords and associated keyword thesaurus and creates a keyword set according to EML standards.
create_keyword_set(keyword_metadata)
keyword_metadata |
A dataframe containing |
The keyword list that can be appended to a dataset or project list.
In order to promote consistency, please search the following resources for keywords:
LTER - Long Term Ecological Research.
AGROVOC - A controlled vocabulary covering all areas of interest of the Food and Agriculture Organization (FAO) of the United Nations, including food, nutrition, agriculture, fisheries, forestry, environment.
U.S. Board on Geographic Names - USGS place names dictionary.
keyword_metadata <- dplyr::tibble(keyword = c("CVPIA", "dog", "shark", "cat"),
keywordThesaurus = c(NA, "pet", "ocean", "pet"))
create_keyword_set(keyword_metadata)
keyword_metadata <- dplyr::tibble(keyword = c("CVPIA", "dog", "shark", "cat"),
keywordThesaurus = c(NA, NA, NA, NA))
create_keyword_set(keyword_metadata)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.