From c8e8990f4f582ad60b00c465ffa960cfcfa09ac8 Mon Sep 17 00:00:00 2001 From: Patterson Date: Wed, 9 Oct 2024 15:43:09 -0600 Subject: [PATCH 1/9] updates to function description and parameter text --- R/editEMLfunctions.R | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/R/editEMLfunctions.R b/R/editEMLfunctions.R index 6f171e6..fd3bb63 100644 --- a/R/editEMLfunctions.R +++ b/R/editEMLfunctions.R @@ -2014,15 +2014,15 @@ set_publisher <- function(eml_object, return(eml_object) } -#' Set Intellectual Rights (and license name) +#' Set Intellectual Rights (and License) #' -#' @description set_int_rights allows the intellectualRights field in EML to be surgically replaced. +#' @description set_int_rights allows the intellectualRights and licenseName fields in EML to be surgically replaced. #' -#' @details set_int_rights requires that CUI information be listed in additionalMetadata prior to being called. The verbose `force = FALSE` option will warn the user if there is no CUI specified. `set_int_rights` checks to make sure the CUI code specified (see `set_cui_code()`) is appropriate for the license type chosen. For must public NPS dataset, the CC0 license is appropriate. +#' @details set_int_rights requires that CUI information be listed in additionalMetadata prior to being called. The verbose `force = FALSE` option will warn the user if there is no CUI specified. `set_int_rights` checks to make sure the CUI code specified (see `set_cui_code()`) is appropriate for the license type chosen. For most public NPS datasets, the CC0 license is appropriate. #' @inheritParams set_title #' -#' @param license String. Indicates the type of license to be used. The three potential options are "CC0" (CC zero), "public" and "restricted". CC0 and public can only be used if CUI is set to either PUBLIC. Restricted can only be used if CUI is set to any code that is NOT set to PUBLIC (see `set_cui_code()` for a list of codes). To view the exact text that will be inserted for each license, please see https://nationalparkservice.github.io/NPS_EML_Script/stepbystep.html#intellectual-rights +#' @param license String. Indicates the type of license to be used. The three potential options are "CC0", "public" and "restricted". CC0 and public can only be used if CUI is set to PUBLIC. Restricted can only be used if CUI is set to any code that is NOT set to PUBLIC (see `set_cui_code()` for a list of codes). To view the exact text that will be inserted for each license, please see https://nationalparkservice.github.io/NPS_EML_Script/stepbystep.html#intellectual-rights #' #' @importFrom stats complete.cases #' From 6d152904a2dbb2d394a841791cc01bc66bcd2a92 Mon Sep 17 00:00:00 2001 From: Patterson Date: Wed, 9 Oct 2024 15:49:13 -0600 Subject: [PATCH 2/9] Update restricted language --- R/editEMLfunctions.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/editEMLfunctions.R b/R/editEMLfunctions.R index fd3bb63..501834f 100644 --- a/R/editEMLfunctions.R +++ b/R/editEMLfunctions.R @@ -2045,7 +2045,7 @@ set_int_rights <- function(eml_object, #set up license text: CCzero <- 'This product is released to the "public domain" under Creative Commons CC0 1.0 No Rights Reserved (see: https://creativecommons.org/publicdomain/zero/1.0/).' pub_domain <- 'This product is released to the "public domain" under U.S. Government Works No Rights Reserved (see: http://www.usa.gov/publicdomain/label/1.0/).' - restrict <- "This product has been determined to contain Controlled Unclassified Information (CUI) by the National Park Service, and is intended for internal use only. It is not published under an open license. Unauthorized access, use, and distribution are prohibited." + restrict <- "This product has been determined to contain Controlled Unclassified Information (CUI) or to be otherwise restricted by the National Park Service, and is intended for specific purposes. It is not published under an open license. Unauthorized access, use, and distribution are prohibited." # get CUI info from additionalMetadata: cui <- eml_object$additionalMetadata From c16223f134a6d16a894b0b9ff33f79ab06aeff4a Mon Sep 17 00:00:00 2001 From: Patterson Date: Wed, 9 Oct 2024 15:54:36 -0600 Subject: [PATCH 3/9] adjusted CC0 to mirror public and restricted --- R/editEMLfunctions.R | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/R/editEMLfunctions.R b/R/editEMLfunctions.R index 501834f..59e5f72 100644 --- a/R/editEMLfunctions.R +++ b/R/editEMLfunctions.R @@ -2073,8 +2073,7 @@ set_int_rights <- function(eml_object, if(cui2 == "PUBLIC"){ if(license == "CC0"){ eml_object$dataset$intellectualRights <- CCzero - cc_zero <- "Creative Commons Zero v1.0 Universal" - eml_object$dataset$licensed$licenseName <- cc_zero + eml_object$dataset$licensed$licenseName <- "Creative Commons Zero v1.0 Universal" cat("Your license has been set to:", crayon::blue$bold("CC0")) } if(license == "public"){ From b8945ac38097ee8f5073e1fe3d8cd74b2241a186 Mon Sep 17 00:00:00 2001 From: Patterson Date: Wed, 9 Oct 2024 16:23:10 -0600 Subject: [PATCH 4/9] Fix misspelling --- R/editEMLfunctions.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/editEMLfunctions.R b/R/editEMLfunctions.R index 59e5f72..0d38ab7 100644 --- a/R/editEMLfunctions.R +++ b/R/editEMLfunctions.R @@ -2167,7 +2167,7 @@ set_int_rights <- function(eml_object, #' #' @description `set_data_urls()` inspects metadata and edits the online distribution url for each dataTable (data file) to correspond to the reference indicated by the DOI listed in the metadata. If your data files are stored on DataStore as part of the same reference as the data package, you do not need to supply a URL. If your data files will be stored to a different repository, you can supply that location. #' -#' @details `set_data_urls()` sets the online distribution URL for all dataTables (data files in a data package) to the same URL. If you do not supply a URL, your metadata must include a DOI (use `set_doi()` or `set_datastore_doi()` to add a DOI - these will automatically update your data table urls to match the new DOI). `set_data_urls()` assumes that DOIs refer to digital objects on DataStore and that the last 7 digist of the DOI correspond to the DataStore Reference ID. +#' @details `set_data_urls()` sets the online distribution URL for all dataTables (data files in a data package) to the same URL. If you do not supply a URL, your metadata must include a DOI (use `set_doi()` or `set_datastore_doi()` to add a DOI - these will automatically update your data table urls to match the new DOI). `set_data_urls()` assumes that DOIs refer to digital objects on DataStore and that the last 7 digits of the DOI correspond to the DataStore Reference ID. #' #' @inheritParams set_title #' @param url a string that identifies the online location of the data file (uniform resource locator) From 5a15a29884481b21f55b416155c083e3184b3ad8 Mon Sep 17 00:00:00 2001 From: Patterson Date: Wed, 9 Oct 2024 16:24:39 -0600 Subject: [PATCH 5/9] ORCID text updates --- R/editEMLfunctions.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/editEMLfunctions.R b/R/editEMLfunctions.R index 0d38ab7..ee4cf3e 100644 --- a/R/editEMLfunctions.R +++ b/R/editEMLfunctions.R @@ -2236,7 +2236,7 @@ set_data_urls <- function(eml_object, url = NULL, force = FALSE, NPS = TRUE){ #' Allows user to add ORCids to the creator #' -#' @description `set_creator_orcids()` allows users to add (or remove) ORCiDs to creators or edit/update existing ORCiDs associated with creators. ORCiDs are persistent digital identifiers associated with individual people and remain constant despite name changes. They can help disambiguate creators with similar names and associated all the products of one creator in one space despite variations in how the name was used (e.g. Rob Baker and Robert Baker and. Robert L. Baker but NOT any of the 15 million or so other Robert Bakers). To register an ORCiD or manage your ORCiD profile, go to [https://orcid.org/](https://orcid.org/). +#' @description `set_creator_orcids()` allows users to add (or remove) ORCiDs to creators or edit/update existing ORCiDs associated with creators. ORCiDs are persistent digital identifiers associated with individual people and remain constant despite name changes. They can help disambiguate creators with similar names and associate all the products of one creator in one space despite variations in how the name was used (e.g. Rob Baker and Robert Baker and Robert L. Baker but NOT any of the 15 million or so other Robert Bakers). To register an ORCiD or manage your ORCiD profile, go to [https://orcid.org/](https://orcid.org/). #' #' @details ORCiDs should be supplied as a list in the order in which the creators are listed. If a creator does not have an ORCiD, put NA (NO quotes around NA!) in the list in that space. Only consider individual people who are creators (and not organizations, they will automatically be skipped). ORCiDs should be supplied as a 16-digit string with hyphens after every 4 digits: xxxx-xxxx-xxxx-xxxx. Please do not include the URL prefix for your ORCiDs; this will automatically be inserted for you. #' From 2ab52012a08c8b5b2fcfdb4401f8a46c09b88cb8 Mon Sep 17 00:00:00 2001 From: Patterson Date: Wed, 9 Oct 2024 22:37:27 -0600 Subject: [PATCH 6/9] Updated set CUI code description --- R/editEMLfunctions.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/editEMLfunctions.R b/R/editEMLfunctions.R index ee4cf3e..7e3de69 100644 --- a/R/editEMLfunctions.R +++ b/R/editEMLfunctions.R @@ -424,7 +424,7 @@ set_content_units <- function(eml_object, park_units, #' Adds CUI dissemination codes to metadata #' #' @description -#' `set_cui_code()` adds Controlled Unclassified Information (CUI) dissemination codes to EML metadata. These codes determine who can or cannot have access to the data. Unless you have a specific mandate to restrict data, all data should be available to the public. if the CUI dissemination code is PUBLIC, the CUI marking should also be PUBLIC (`see set_cui_marking()`) and the license should be set to public domain (or CC0; see `set_int_rights()`). If your data contains CUI and you need to set the CUI dissemination code to anything other than PUBLIC, please be prepared to provide a legal justification in the form of the appropriate CUI marking (see `set_cui_marking()`). +#' `set_cui_code()` adds Controlled Unclassified Information (CUI) dissemination codes to EML metadata. These codes determine who can or cannot have access to the data. Unless you have a specific mandate to restrict data, all data should be available to the public. if the CUI dissemination code is PUBLIC, the CUI marking should also be PUBLIC (`see set_cui_marking()`) and the license should be set to CC0 or public domain (see `set_int_rights()`). If your data contains CUI and you need to set the CUI dissemination code to anything other than PUBLIC, please be prepared to provide a legal justification in the form of the appropriate CUI marking (see `set_cui_marking()`). #' #' @details `set_cui_code()` adds a CUI dissemination code to the tag CUI under additionalMetadata/metadata. The available choices for CUI dissemination codes at NPS are (pay attention to the spaces!): #' From 080c9c7554c2795e99618a8c5f520ac7bf253dd8 Mon Sep 17 00:00:00 2001 From: Patterson Date: Wed, 9 Oct 2024 22:53:49 -0600 Subject: [PATCH 7/9] updated set_cui description --- R/editEMLfunctions.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/editEMLfunctions.R b/R/editEMLfunctions.R index 7e3de69..327d948 100644 --- a/R/editEMLfunctions.R +++ b/R/editEMLfunctions.R @@ -542,7 +542,7 @@ set_cui_code <- function(eml_object, #' @details set_cui adds a CUI code to the tag CUI under additionalMetadata/metadata. #' #' @inheritParams set_title -#' @param cui_code a string consisting of one of 7 potential CUI codes (defaults to "PUBFUL"). Pay attention to the spaces: +#' @param cui_code a string consisting of one of 5 potential CUI codes. Pay attention to the spaces: #' FED ONLY - Contains CUI. Only federal employees should have access (similar to "internal only" in DataStore) #' FEDCON - Contains CUI. Only federal employees and federal contractors should have access (also very much like current "internal only" setting in DataStore) #' DL ONLY - Contains CUI. Should only be available to a names list of individuals (where and how to list those individuals TBD) From 6f7c5ecbdd5fd7eb0c876a0c2f173d96cc29e784 Mon Sep 17 00:00:00 2001 From: Patterson Date: Wed, 23 Oct 2024 07:18:13 -0600 Subject: [PATCH 8/9] devtools::document() --- man/set_creator_orcids.Rd | 2 +- man/set_cui.Rd | 2 +- man/set_cui_code.Rd | 2 +- man/set_data_urls.Rd | 2 +- man/set_int_rights.Rd | 8 ++++---- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/man/set_creator_orcids.Rd b/man/set_creator_orcids.Rd index fc53211..05df454 100644 --- a/man/set_creator_orcids.Rd +++ b/man/set_creator_orcids.Rd @@ -19,7 +19,7 @@ set_creator_orcids(eml_object, orcids, force = FALSE, NPS = TRUE) eml_object } \description{ -\code{set_creator_orcids()} allows users to add (or remove) ORCiDs to creators or edit/update existing ORCiDs associated with creators. ORCiDs are persistent digital identifiers associated with individual people and remain constant despite name changes. They can help disambiguate creators with similar names and associated all the products of one creator in one space despite variations in how the name was used (e.g. Rob Baker and Robert Baker and. Robert L. Baker but NOT any of the 15 million or so other Robert Bakers). To register an ORCiD or manage your ORCiD profile, go to \url{https://orcid.org/}. +\code{set_creator_orcids()} allows users to add (or remove) ORCiDs to creators or edit/update existing ORCiDs associated with creators. ORCiDs are persistent digital identifiers associated with individual people and remain constant despite name changes. They can help disambiguate creators with similar names and associate all the products of one creator in one space despite variations in how the name was used (e.g. Rob Baker and Robert Baker and Robert L. Baker but NOT any of the 15 million or so other Robert Bakers). To register an ORCiD or manage your ORCiD profile, go to \url{https://orcid.org/}. } \details{ ORCiDs should be supplied as a list in the order in which the creators are listed. If a creator does not have an ORCiD, put NA (NO quotes around NA!) in the list in that space. Only consider individual people who are creators (and not organizations, they will automatically be skipped). ORCiDs should be supplied as a 16-digit string with hyphens after every 4 digits: xxxx-xxxx-xxxx-xxxx. Please do not include the URL prefix for your ORCiDs; this will automatically be inserted for you. diff --git a/man/set_cui.Rd b/man/set_cui.Rd index 3404ddf..89f41fa 100644 --- a/man/set_cui.Rd +++ b/man/set_cui.Rd @@ -14,7 +14,7 @@ set_cui( \arguments{ \item{eml_object}{is an EML-formatted R object, either generated in R or imported (typically from an EML-formatted .xml file) using EML::read_eml(\if{html}{\out{}}, from="xml").} -\item{cui_code}{a string consisting of one of 7 potential CUI codes (defaults to "PUBFUL"). Pay attention to the spaces: +\item{cui_code}{a string consisting of one of 5 potential CUI codes. Pay attention to the spaces: FED ONLY - Contains CUI. Only federal employees should have access (similar to "internal only" in DataStore) FEDCON - Contains CUI. Only federal employees and federal contractors should have access (also very much like current "internal only" setting in DataStore) DL ONLY - Contains CUI. Should only be available to a names list of individuals (where and how to list those individuals TBD) diff --git a/man/set_cui_code.Rd b/man/set_cui_code.Rd index 12f8ef1..d3e00b6 100644 --- a/man/set_cui_code.Rd +++ b/man/set_cui_code.Rd @@ -24,7 +24,7 @@ set_cui_code( an EML-formatted R object } \description{ -\code{set_cui_code()} adds Controlled Unclassified Information (CUI) dissemination codes to EML metadata. These codes determine who can or cannot have access to the data. Unless you have a specific mandate to restrict data, all data should be available to the public. if the CUI dissemination code is PUBLIC, the CUI marking should also be PUBLIC (\verb{see set_cui_marking()}) and the license should be set to public domain (or CC0; see \code{set_int_rights()}). If your data contains CUI and you need to set the CUI dissemination code to anything other than PUBLIC, please be prepared to provide a legal justification in the form of the appropriate CUI marking (see \code{set_cui_marking()}). +\code{set_cui_code()} adds Controlled Unclassified Information (CUI) dissemination codes to EML metadata. These codes determine who can or cannot have access to the data. Unless you have a specific mandate to restrict data, all data should be available to the public. if the CUI dissemination code is PUBLIC, the CUI marking should also be PUBLIC (\verb{see set_cui_marking()}) and the license should be set to CC0 or public domain (see \code{set_int_rights()}). If your data contains CUI and you need to set the CUI dissemination code to anything other than PUBLIC, please be prepared to provide a legal justification in the form of the appropriate CUI marking (see \code{set_cui_marking()}). } \details{ \code{set_cui_code()} adds a CUI dissemination code to the tag CUI under additionalMetadata/metadata. The available choices for CUI dissemination codes at NPS are (pay attention to the spaces!): diff --git a/man/set_data_urls.Rd b/man/set_data_urls.Rd index d3fbe58..18377da 100644 --- a/man/set_data_urls.Rd +++ b/man/set_data_urls.Rd @@ -22,7 +22,7 @@ eml_object \code{set_data_urls()} inspects metadata and edits the online distribution url for each dataTable (data file) to correspond to the reference indicated by the DOI listed in the metadata. If your data files are stored on DataStore as part of the same reference as the data package, you do not need to supply a URL. If your data files will be stored to a different repository, you can supply that location. } \details{ -\code{set_data_urls()} sets the online distribution URL for all dataTables (data files in a data package) to the same URL. If you do not supply a URL, your metadata must include a DOI (use \code{set_doi()} or \code{set_datastore_doi()} to add a DOI - these will automatically update your data table urls to match the new DOI). \code{set_data_urls()} assumes that DOIs refer to digital objects on DataStore and that the last 7 digist of the DOI correspond to the DataStore Reference ID. +\code{set_data_urls()} sets the online distribution URL for all dataTables (data files in a data package) to the same URL. If you do not supply a URL, your metadata must include a DOI (use \code{set_doi()} or \code{set_datastore_doi()} to add a DOI - these will automatically update your data table urls to match the new DOI). \code{set_data_urls()} assumes that DOIs refer to digital objects on DataStore and that the last 7 digits of the DOI correspond to the DataStore Reference ID. } \examples{ \dontrun{ diff --git a/man/set_int_rights.Rd b/man/set_int_rights.Rd index 51172b3..6e07453 100644 --- a/man/set_int_rights.Rd +++ b/man/set_int_rights.Rd @@ -2,7 +2,7 @@ % Please edit documentation in R/editEMLfunctions.R \name{set_int_rights} \alias{set_int_rights} -\title{Set Intellectual Rights (and license name)} +\title{Set Intellectual Rights (and License)} \usage{ set_int_rights( eml_object, @@ -14,7 +14,7 @@ set_int_rights( \arguments{ \item{eml_object}{is an EML-formatted R object, either generated in R or imported (typically from an EML-formatted .xml file) using EML::read_eml(\if{html}{\out{}}, from="xml").} -\item{license}{String. Indicates the type of license to be used. The three potential options are "CC0" (CC zero), "public" and "restricted". CC0 and public can only be used if CUI is set to either PUBLIC. Restricted can only be used if CUI is set to any code that is NOT set to PUBLIC (see \code{set_cui_code()} for a list of codes). To view the exact text that will be inserted for each license, please see https://nationalparkservice.github.io/NPS_EML_Script/stepbystep.html#intellectual-rights} +\item{license}{String. Indicates the type of license to be used. The three potential options are "CC0", "public" and "restricted". CC0 and public can only be used if CUI is set to PUBLIC. Restricted can only be used if CUI is set to any code that is NOT set to PUBLIC (see \code{set_cui_code()} for a list of codes). To view the exact text that will be inserted for each license, please see https://nationalparkservice.github.io/NPS_EML_Script/stepbystep.html#intellectual-rights} \item{force}{logical. Defaults to false. If set to FALSE, a more interactive version of the function requesting user input and feedback. Setting force = TRUE facilitates scripting.} @@ -24,10 +24,10 @@ set_int_rights( eml_object } \description{ -set_int_rights allows the intellectualRights field in EML to be surgically replaced. +set_int_rights allows the intellectualRights and licenseName fields in EML to be surgically replaced. } \details{ -set_int_rights requires that CUI information be listed in additionalMetadata prior to being called. The verbose \code{force = FALSE} option will warn the user if there is no CUI specified. \code{set_int_rights} checks to make sure the CUI code specified (see \code{set_cui_code()}) is appropriate for the license type chosen. For must public NPS dataset, the CC0 license is appropriate. +set_int_rights requires that CUI information be listed in additionalMetadata prior to being called. The verbose \code{force = FALSE} option will warn the user if there is no CUI specified. \code{set_int_rights} checks to make sure the CUI code specified (see \code{set_cui_code()}) is appropriate for the license type chosen. For most public NPS datasets, the CC0 license is appropriate. } \examples{ \dontrun{ From 17900751a679543868eaec8b0d0459e1ed836601 Mon Sep 17 00:00:00 2001 From: Patterson Date: Wed, 23 Oct 2024 07:23:58 -0600 Subject: [PATCH 9/9] pkgdown::build_site_github_pages() --- docs/404.html | 2 +- docs/LICENSE-text.html | 2 +- docs/LICENSE.html | 2 +- docs/articles/a01_prereqs.html | 2 +- docs/articles/a02_EML_creation_script.html | 2 +- docs/articles/a03_Template_edits.html | 2 +- docs/articles/a04_Editing_fixing_eml.html | 2 +- docs/articles/a05_advanced_functionality.html | 2 +- docs/articles/index.html | 2 +- docs/authors.html | 2 +- docs/index.html | 2 +- docs/news/index.html | 2 +- docs/pkgdown.yml | 6 +++--- docs/reference/EMLeditor-package.html | 2 +- docs/reference/check_eml.html | 2 +- docs/reference/dot-get_unit_polygon.html | 2 +- docs/reference/dot-get_user_input.html | 2 +- docs/reference/dot-get_user_input3.html | 2 +- docs/reference/dot-set_for_by_nps.html | 2 +- docs/reference/dot-set_npspublisher.html | 2 +- docs/reference/dot-set_version.html | 2 +- docs/reference/get_abstract.html | 2 +- docs/reference/get_additional_info.html | 2 +- docs/reference/get_author_list.html | 2 +- docs/reference/get_begin_date.html | 2 +- docs/reference/get_citation.html | 2 +- docs/reference/get_content_units.html | 2 +- docs/reference/get_cui.html | 2 +- docs/reference/get_cui_code.html | 2 +- docs/reference/get_cui_marking.html | 2 +- docs/reference/get_doi.html | 2 +- docs/reference/get_drr_doi.html | 2 +- docs/reference/get_drr_title.html | 2 +- docs/reference/get_ds_id.html | 2 +- docs/reference/get_end_date.html | 2 +- docs/reference/get_file_info.html | 2 +- docs/reference/get_lit.html | 2 +- docs/reference/get_methods.html | 2 +- docs/reference/get_producing_units.html | 2 +- docs/reference/get_publisher.html | 2 +- docs/reference/get_title.html | 2 +- docs/reference/index.html | 4 ++-- docs/reference/remove_datastore_files.html | 2 +- docs/reference/set_abstract.html | 2 +- docs/reference/set_additional_info.html | 2 +- docs/reference/set_content_units.html | 2 +- docs/reference/set_creator_orcids.html | 6 +++--- docs/reference/set_creator_order.html | 2 +- docs/reference/set_creator_orgs.html | 2 +- docs/reference/set_cui.html | 4 ++-- docs/reference/set_cui_code.html | 6 +++--- docs/reference/set_cui_marking.html | 2 +- docs/reference/set_data_urls.html | 4 ++-- docs/reference/set_datastore_doi.html | 2 +- docs/reference/set_doi.html | 2 +- docs/reference/set_drr.html | 2 +- docs/reference/set_int_rights.html | 12 ++++++------ docs/reference/set_language.html | 2 +- docs/reference/set_lit.html | 2 +- docs/reference/set_methods.html | 2 +- docs/reference/set_missing_data.html | 2 +- docs/reference/set_new_creator.html | 2 +- docs/reference/set_producing_units.html | 2 +- docs/reference/set_project.html | 2 +- docs/reference/set_protocol.html | 2 +- docs/reference/set_publisher.html | 2 +- docs/reference/set_title.html | 2 +- docs/reference/upload_data_package.html | 2 +- docs/reference/write_readme.html | 2 +- 69 files changed, 83 insertions(+), 83 deletions(-) diff --git a/docs/404.html b/docs/404.html index 16d3807..2d9805a 100644 --- a/docs/404.html +++ b/docs/404.html @@ -112,7 +112,7 @@

Page not found (404)

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/LICENSE-text.html b/docs/LICENSE-text.html index 7b6f452..7d2b330 100644 --- a/docs/LICENSE-text.html +++ b/docs/LICENSE-text.html @@ -87,7 +87,7 @@

License

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/LICENSE.html b/docs/LICENSE.html index c9618a6..6dd5efe 100644 --- a/docs/LICENSE.html +++ b/docs/LICENSE.html @@ -118,7 +118,7 @@

Statement of Purpose -

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/articles/a01_prereqs.html b/docs/articles/a01_prereqs.html index 4b35beb..cdf771a 100644 --- a/docs/articles/a01_prereqs.html +++ b/docs/articles/a01_prereqs.html @@ -177,7 +177,7 @@

A text editor

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/articles/a02_EML_creation_script.html b/docs/articles/a02_EML_creation_script.html index cb0846d..2eeb3eb 100644 --- a/docs/articles/a02_EML_creation_script.html +++ b/docs/articles/a02_EML_creation_script.html @@ -768,7 +768,7 @@

Upload your data package

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/articles/a03_Template_edits.html b/docs/articles/a03_Template_edits.html index cc94b6a..6ac103d 100644 --- a/docs/articles/a03_Template_edits.html +++ b/docs/articles/a03_Template_edits.html @@ -576,7 +576,7 @@

additional_info

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/articles/a04_Editing_fixing_eml.html b/docs/articles/a04_Editing_fixing_eml.html index 07f1c9e..22917f1 100644 --- a/docs/articles/a04_Editing_fixing_eml.html +++ b/docs/articles/a04_Editing_fixing_eml.html @@ -299,7 +299,7 @@

Write your edits to .xml

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/articles/a05_advanced_functionality.html b/docs/articles/a05_advanced_functionality.html index 456b6a0..b5f13ce 100644 --- a/docs/articles/a05_advanced_functionality.html +++ b/docs/articles/a05_advanced_functionality.html @@ -229,7 +229,7 @@

View all functions

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/articles/index.html b/docs/articles/index.html index a6b2b0c..e2e5da8 100644 --- a/docs/articles/index.html +++ b/docs/articles/index.html @@ -92,7 +92,7 @@

All vignettes

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/authors.html b/docs/authors.html index d8073bb..068f09a 100644 --- a/docs/authors.html +++ b/docs/authors.html @@ -118,7 +118,7 @@

Citation

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/index.html b/docs/index.html index 7b96d59..d9647ad 100644 --- a/docs/index.html +++ b/docs/index.html @@ -192,7 +192,7 @@

Dev status

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/news/index.html b/docs/news/index.html index 004b14b..2a8132c 100644 --- a/docs/news/index.html +++ b/docs/news/index.html @@ -394,7 +394,7 @@

Author

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/check_eml.html b/docs/reference/check_eml.html index 9eb515c..3bdd793 100644 --- a/docs/reference/check_eml.html +++ b/docs/reference/check_eml.html @@ -110,7 +110,7 @@

Examples

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/dot-get_unit_polygon.html b/docs/reference/dot-get_unit_polygon.html index 4a6e186..29392c0 100644 --- a/docs/reference/dot-get_unit_polygon.html +++ b/docs/reference/dot-get_unit_polygon.html @@ -114,7 +114,7 @@

Examples

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/dot-get_user_input.html b/docs/reference/dot-get_user_input.html index df9f186..a5f949f 100644 --- a/docs/reference/dot-get_user_input.html +++ b/docs/reference/dot-get_user_input.html @@ -102,7 +102,7 @@

Examples

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/dot-get_user_input3.html b/docs/reference/dot-get_user_input3.html index 5a48a1f..73bc1db 100644 --- a/docs/reference/dot-get_user_input3.html +++ b/docs/reference/dot-get_user_input3.html @@ -102,7 +102,7 @@

Examples

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/dot-set_for_by_nps.html b/docs/reference/dot-set_for_by_nps.html index 1e7c28d..f487ef1 100644 --- a/docs/reference/dot-set_for_by_nps.html +++ b/docs/reference/dot-set_for_by_nps.html @@ -110,7 +110,7 @@

Examples

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/dot-set_npspublisher.html b/docs/reference/dot-set_npspublisher.html index 328369f..1990845 100644 --- a/docs/reference/dot-set_npspublisher.html +++ b/docs/reference/dot-set_npspublisher.html @@ -114,7 +114,7 @@

Examples

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/dot-set_version.html b/docs/reference/dot-set_version.html index 20a5eae..a046554 100644 --- a/docs/reference/dot-set_version.html +++ b/docs/reference/dot-set_version.html @@ -114,7 +114,7 @@

Examples

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/get_abstract.html b/docs/reference/get_abstract.html index 0020394..f059085 100644 --- a/docs/reference/get_abstract.html +++ b/docs/reference/get_abstract.html @@ -115,7 +115,7 @@

Examples

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/get_additional_info.html b/docs/reference/get_additional_info.html index b749e1c..6a24818 100644 --- a/docs/reference/get_additional_info.html +++ b/docs/reference/get_additional_info.html @@ -110,7 +110,7 @@

Examples

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/get_author_list.html b/docs/reference/get_author_list.html index 15df561..a045cbc 100644 --- a/docs/reference/get_author_list.html +++ b/docs/reference/get_author_list.html @@ -114,7 +114,7 @@

Examples

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/get_begin_date.html b/docs/reference/get_begin_date.html index 429bf5f..7fc91e1 100644 --- a/docs/reference/get_begin_date.html +++ b/docs/reference/get_begin_date.html @@ -114,7 +114,7 @@

Examples

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/get_citation.html b/docs/reference/get_citation.html index e856a8f..a3b05b2 100644 --- a/docs/reference/get_citation.html +++ b/docs/reference/get_citation.html @@ -114,7 +114,7 @@

Examples

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/get_content_units.html b/docs/reference/get_content_units.html index 97b53ec..4b405bf 100644 --- a/docs/reference/get_content_units.html +++ b/docs/reference/get_content_units.html @@ -114,7 +114,7 @@

Examples

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/get_cui.html b/docs/reference/get_cui.html index d1c22ef..3d2c337 100644 --- a/docs/reference/get_cui.html +++ b/docs/reference/get_cui.html @@ -116,7 +116,7 @@

Examples

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/get_cui_code.html b/docs/reference/get_cui_code.html index 1b95620..60a24d9 100644 --- a/docs/reference/get_cui_code.html +++ b/docs/reference/get_cui_code.html @@ -114,7 +114,7 @@

Examples

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/get_cui_marking.html b/docs/reference/get_cui_marking.html index e9b8212..86633e0 100644 --- a/docs/reference/get_cui_marking.html +++ b/docs/reference/get_cui_marking.html @@ -115,7 +115,7 @@

Examples

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/get_doi.html b/docs/reference/get_doi.html index aa17149..ea6745d 100644 --- a/docs/reference/get_doi.html +++ b/docs/reference/get_doi.html @@ -114,7 +114,7 @@

Examples

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/get_drr_doi.html b/docs/reference/get_drr_doi.html index 06f937e..c18fe5c 100644 --- a/docs/reference/get_drr_doi.html +++ b/docs/reference/get_drr_doi.html @@ -114,7 +114,7 @@

Examples

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/get_drr_title.html b/docs/reference/get_drr_title.html index 8c040df..f4441ef 100644 --- a/docs/reference/get_drr_title.html +++ b/docs/reference/get_drr_title.html @@ -114,7 +114,7 @@

Examples

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/get_ds_id.html b/docs/reference/get_ds_id.html index 11d6457..5e9b0ff 100644 --- a/docs/reference/get_ds_id.html +++ b/docs/reference/get_ds_id.html @@ -114,7 +114,7 @@

Examples

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/get_end_date.html b/docs/reference/get_end_date.html index 28bf264..d32b419 100644 --- a/docs/reference/get_end_date.html +++ b/docs/reference/get_end_date.html @@ -114,7 +114,7 @@

Examples

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/get_file_info.html b/docs/reference/get_file_info.html index ffb0105..0f5eef8 100644 --- a/docs/reference/get_file_info.html +++ b/docs/reference/get_file_info.html @@ -114,7 +114,7 @@

Examples

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/get_lit.html b/docs/reference/get_lit.html index c832f9e..df22560 100644 --- a/docs/reference/get_lit.html +++ b/docs/reference/get_lit.html @@ -114,7 +114,7 @@

Examples

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/get_methods.html b/docs/reference/get_methods.html index 8281388..688840f 100644 --- a/docs/reference/get_methods.html +++ b/docs/reference/get_methods.html @@ -112,7 +112,7 @@

Examples

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/get_producing_units.html b/docs/reference/get_producing_units.html index f485d13..6147923 100644 --- a/docs/reference/get_producing_units.html +++ b/docs/reference/get_producing_units.html @@ -110,7 +110,7 @@

Examples

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/get_publisher.html b/docs/reference/get_publisher.html index 7e22be7..c403d6b 100644 --- a/docs/reference/get_publisher.html +++ b/docs/reference/get_publisher.html @@ -110,7 +110,7 @@

Examples

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/get_title.html b/docs/reference/get_title.html index 41aebf8..4bd2af0 100644 --- a/docs/reference/get_title.html +++ b/docs/reference/get_title.html @@ -114,7 +114,7 @@

Examples

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/index.html b/docs/reference/index.html index 9272d10..662a9ee 100644 --- a/docs/reference/index.html +++ b/docs/reference/index.html @@ -239,7 +239,7 @@

All functions

set_int_rights()

-

Set Intellectual Rights (and license name)

+

Set Intellectual Rights (and License)

set_language()

@@ -301,7 +301,7 @@

All functions
-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/remove_datastore_files.html b/docs/reference/remove_datastore_files.html index bd96771..3ce4ee3 100644 --- a/docs/reference/remove_datastore_files.html +++ b/docs/reference/remove_datastore_files.html @@ -119,7 +119,7 @@

Examples

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/set_abstract.html b/docs/reference/set_abstract.html index 60c0cd0..f2178ea 100644 --- a/docs/reference/set_abstract.html +++ b/docs/reference/set_abstract.html @@ -126,7 +126,7 @@

Examples

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/set_additional_info.html b/docs/reference/set_additional_info.html index e506faf..f570eaf 100644 --- a/docs/reference/set_additional_info.html +++ b/docs/reference/set_additional_info.html @@ -128,7 +128,7 @@

Examples

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/set_content_units.html b/docs/reference/set_content_units.html index be0e4ad..b2b26e3 100644 --- a/docs/reference/set_content_units.html +++ b/docs/reference/set_content_units.html @@ -127,7 +127,7 @@

Examples

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/set_creator_orcids.html b/docs/reference/set_creator_orcids.html index 8f8bdad..7712263 100644 --- a/docs/reference/set_creator_orcids.html +++ b/docs/reference/set_creator_orcids.html @@ -1,5 +1,5 @@ -Allows user to add ORCids to the creator — set_creator_orcids • EMLeditorAllows user to add ORCids to the creator — set_creator_orcids • EMLeditor @@ -71,7 +71,7 @@

Allows user to add ORCids to the creator

-

set_creator_orcids() allows users to add (or remove) ORCiDs to creators or edit/update existing ORCiDs associated with creators. ORCiDs are persistent digital identifiers associated with individual people and remain constant despite name changes. They can help disambiguate creators with similar names and associated all the products of one creator in one space despite variations in how the name was used (e.g. Rob Baker and Robert Baker and. Robert L. Baker but NOT any of the 15 million or so other Robert Bakers). To register an ORCiD or manage your ORCiD profile, go to https://orcid.org/.

+

set_creator_orcids() allows users to add (or remove) ORCiDs to creators or edit/update existing ORCiDs associated with creators. ORCiDs are persistent digital identifiers associated with individual people and remain constant despite name changes. They can help disambiguate creators with similar names and associate all the products of one creator in one space despite variations in how the name was used (e.g. Rob Baker and Robert Baker and Robert L. Baker but NOT any of the 15 million or so other Robert Bakers). To register an ORCiD or manage your ORCiD profile, go to https://orcid.org/.

@@ -131,7 +131,7 @@

Examples

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/set_creator_order.html b/docs/reference/set_creator_order.html index 3d8cfc5..030f6af 100644 --- a/docs/reference/set_creator_order.html +++ b/docs/reference/set_creator_order.html @@ -134,7 +134,7 @@

Examples

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/set_creator_orgs.html b/docs/reference/set_creator_orgs.html index dfc7eed..f8323a7 100644 --- a/docs/reference/set_creator_orgs.html +++ b/docs/reference/set_creator_orgs.html @@ -158,7 +158,7 @@

Examples

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/set_cui.html b/docs/reference/set_cui.html index 78c03f9..5eda66e 100644 --- a/docs/reference/set_cui.html +++ b/docs/reference/set_cui.html @@ -94,7 +94,7 @@

Arguments

cui_code
-

a string consisting of one of 7 potential CUI codes (defaults to "PUBFUL"). Pay attention to the spaces: +

a string consisting of one of 5 potential CUI codes. Pay attention to the spaces: FED ONLY - Contains CUI. Only federal employees should have access (similar to "internal only" in DataStore) FEDCON - Contains CUI. Only federal employees and federal contractors should have access (also very much like current "internal only" setting in DataStore) DL ONLY - Contains CUI. Should only be available to a names list of individuals (where and how to list those individuals TBD) @@ -138,7 +138,7 @@

Examples

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/set_cui_code.html b/docs/reference/set_cui_code.html index 1647454..477f0b1 100644 --- a/docs/reference/set_cui_code.html +++ b/docs/reference/set_cui_code.html @@ -1,5 +1,5 @@ -Adds CUI dissemination codes to metadata — set_cui_code • EMLeditorAdds CUI dissemination codes to metadata — set_cui_code • EMLeditor @@ -71,7 +71,7 @@

Adds CUI dissemination codes to metadata

-

set_cui_code() adds Controlled Unclassified Information (CUI) dissemination codes to EML metadata. These codes determine who can or cannot have access to the data. Unless you have a specific mandate to restrict data, all data should be available to the public. if the CUI dissemination code is PUBLIC, the CUI marking should also be PUBLIC (see set_cui_marking()) and the license should be set to public domain (or CC0; see set_int_rights()). If your data contains CUI and you need to set the CUI dissemination code to anything other than PUBLIC, please be prepared to provide a legal justification in the form of the appropriate CUI marking (see set_cui_marking()).

+

set_cui_code() adds Controlled Unclassified Information (CUI) dissemination codes to EML metadata. These codes determine who can or cannot have access to the data. Unless you have a specific mandate to restrict data, all data should be available to the public. if the CUI dissemination code is PUBLIC, the CUI marking should also be PUBLIC (see set_cui_marking()) and the license should be set to CC0 or public domain (see set_int_rights()). If your data contains CUI and you need to set the CUI dissemination code to anything other than PUBLIC, please be prepared to provide a legal justification in the form of the appropriate CUI marking (see set_cui_marking()).

@@ -137,7 +137,7 @@

Examples

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/set_cui_marking.html b/docs/reference/set_cui_marking.html index eb7c3f5..a89b784 100644 --- a/docs/reference/set_cui_marking.html +++ b/docs/reference/set_cui_marking.html @@ -142,7 +142,7 @@

Examples

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/set_data_urls.html b/docs/reference/set_data_urls.html index db4ebac..6f4481b 100644 --- a/docs/reference/set_data_urls.html +++ b/docs/reference/set_data_urls.html @@ -104,7 +104,7 @@

Value

Details

-

set_data_urls() sets the online distribution URL for all dataTables (data files in a data package) to the same URL. If you do not supply a URL, your metadata must include a DOI (use set_doi() or set_datastore_doi() to add a DOI - these will automatically update your data table urls to match the new DOI). set_data_urls() assumes that DOIs refer to digital objects on DataStore and that the last 7 digist of the DOI correspond to the DataStore Reference ID.

+

set_data_urls() sets the online distribution URL for all dataTables (data files in a data package) to the same URL. If you do not supply a URL, your metadata must include a DOI (use set_doi() or set_datastore_doi() to add a DOI - these will automatically update your data table urls to match the new DOI). set_data_urls() assumes that DOIs refer to digital objects on DataStore and that the last 7 digits of the DOI correspond to the DataStore Reference ID.

@@ -129,7 +129,7 @@

Examples

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/set_datastore_doi.html b/docs/reference/set_datastore_doi.html index 0d115f2..51659bb 100644 --- a/docs/reference/set_datastore_doi.html +++ b/docs/reference/set_datastore_doi.html @@ -129,7 +129,7 @@

Examples

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/set_doi.html b/docs/reference/set_doi.html index 74520a8..2283c54 100644 --- a/docs/reference/set_doi.html +++ b/docs/reference/set_doi.html @@ -128,7 +128,7 @@

Examples

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/set_drr.html b/docs/reference/set_drr.html index c775cc8..6d1224a 100644 --- a/docs/reference/set_drr.html +++ b/docs/reference/set_drr.html @@ -142,7 +142,7 @@

Examples

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/set_int_rights.html b/docs/reference/set_int_rights.html index eb93347..ae086b8 100644 --- a/docs/reference/set_int_rights.html +++ b/docs/reference/set_int_rights.html @@ -1,5 +1,5 @@ -Set Intellectual Rights (and license name) — set_int_rights • EMLeditorSet Intellectual Rights (and License) — set_int_rights • EMLeditor @@ -65,13 +65,13 @@
-

set_int_rights allows the intellectualRights field in EML to be surgically replaced.

+

set_int_rights allows the intellectualRights and licenseName fields in EML to be surgically replaced.

@@ -92,7 +92,7 @@

Arguments

license
-

String. Indicates the type of license to be used. The three potential options are "CC0" (CC zero), "public" and "restricted". CC0 and public can only be used if CUI is set to either PUBLIC. Restricted can only be used if CUI is set to any code that is NOT set to PUBLIC (see set_cui_code() for a list of codes). To view the exact text that will be inserted for each license, please see https://nationalparkservice.github.io/NPS_EML_Script/stepbystep.html#intellectual-rights

+

String. Indicates the type of license to be used. The three potential options are "CC0", "public" and "restricted". CC0 and public can only be used if CUI is set to PUBLIC. Restricted can only be used if CUI is set to any code that is NOT set to PUBLIC (see set_cui_code() for a list of codes). To view the exact text that will be inserted for each license, please see https://nationalparkservice.github.io/NPS_EML_Script/stepbystep.html#intellectual-rights

force
@@ -109,7 +109,7 @@

Value

Details

-

set_int_rights requires that CUI information be listed in additionalMetadata prior to being called. The verbose force = FALSE option will warn the user if there is no CUI specified. set_int_rights checks to make sure the CUI code specified (see set_cui_code()) is appropriate for the license type chosen. For must public NPS dataset, the CC0 license is appropriate.

+

set_int_rights requires that CUI information be listed in additionalMetadata prior to being called. The verbose force = FALSE option will warn the user if there is no CUI specified. set_int_rights checks to make sure the CUI code specified (see set_cui_code()) is appropriate for the license type chosen. For most public NPS datasets, the CC0 license is appropriate.

@@ -132,7 +132,7 @@

Examples

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/set_language.html b/docs/reference/set_language.html index 86f6c2d..d0e474e 100644 --- a/docs/reference/set_language.html +++ b/docs/reference/set_language.html @@ -128,7 +128,7 @@

Examples

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/set_lit.html b/docs/reference/set_lit.html index 73ce324..2a5e216 100644 --- a/docs/reference/set_lit.html +++ b/docs/reference/set_lit.html @@ -128,7 +128,7 @@

Examples

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/set_methods.html b/docs/reference/set_methods.html index 5100f6a..b6122b1 100644 --- a/docs/reference/set_methods.html +++ b/docs/reference/set_methods.html @@ -127,7 +127,7 @@

Examples

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/set_missing_data.html b/docs/reference/set_missing_data.html index 9d2a167..a6c1ff2 100644 --- a/docs/reference/set_missing_data.html +++ b/docs/reference/set_missing_data.html @@ -181,7 +181,7 @@

Examples

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/set_new_creator.html b/docs/reference/set_new_creator.html index c1f2658..f335154 100644 --- a/docs/reference/set_new_creator.html +++ b/docs/reference/set_new_creator.html @@ -157,7 +157,7 @@

Examples

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/set_producing_units.html b/docs/reference/set_producing_units.html index 619d7bd..7148f9e 100644 --- a/docs/reference/set_producing_units.html +++ b/docs/reference/set_producing_units.html @@ -129,7 +129,7 @@

Examples

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/set_project.html b/docs/reference/set_project.html index 26399c4..2a7ca2f 100644 --- a/docs/reference/set_project.html +++ b/docs/reference/set_project.html @@ -138,7 +138,7 @@

Examples

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/set_protocol.html b/docs/reference/set_protocol.html index 1629e2c..08f02e9 100644 --- a/docs/reference/set_protocol.html +++ b/docs/reference/set_protocol.html @@ -135,7 +135,7 @@

Examples

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/set_publisher.html b/docs/reference/set_publisher.html index 1e1c288..a7866bb 100644 --- a/docs/reference/set_publisher.html +++ b/docs/reference/set_publisher.html @@ -184,7 +184,7 @@

Examples

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/set_title.html b/docs/reference/set_title.html index 2434520..4127777 100644 --- a/docs/reference/set_title.html +++ b/docs/reference/set_title.html @@ -127,7 +127,7 @@

Examples

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/upload_data_package.html b/docs/reference/upload_data_package.html index bcda87d..dfb7ab4 100644 --- a/docs/reference/upload_data_package.html +++ b/docs/reference/upload_data_package.html @@ -127,7 +127,7 @@

Examples

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/write_readme.html b/docs/reference/write_readme.html index 7f21780..92af173 100644 --- a/docs/reference/write_readme.html +++ b/docs/reference/write_readme.html @@ -118,7 +118,7 @@

Examples

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.