Nothing
#' List available locally cached NHD layers per state
#'
#' @export
#' @param state character state abbreviation
#' @importFrom sf st_layers
#' @return A character vector of NHD layers for the specified state
#'
#' @examples \dontrun{
#' nhd_list(state = "DC")
#' }
nhd_list <- function(state) {
sf::st_layers(gdb_path(state))
}
#' List available locally cached NHDplus layers per state
#'
#' @export
#' @param vpu numeric vector processing unit
#' @param component character component name
#' @param file_ext character choice of "shp" for spatial data and
#' "dbf" for non-spatial. optional
#' @param ... arguments passed to list.files. optional.
#' @return A character vector of NHD layers for the specified vpu
#'
#' @examples \dontrun{
#' nhd_plus_list(vpu = 4)
#' nhd_plus_list(vpu = 4, full.names = TRUE)
#'
#' nhd_plus_list(vpu = 1, component = "NHDPlusAttributes")
#' nhd_plus_list(vpu = "National", component = "V1_To_V2_Crosswalk")
#' }
nhd_plus_list <- function(vpu, component = "NHDSnapshot", file_ext = NA, ...) {
candidate_dirs <- list.dirs(file.path(nhd_path(), "NHDPlus"),
full.names = TRUE, recursive = FALSE)
if (vpu == "National") {
target_dir <- candidate_dirs[grep(vpu, candidate_dirs)]
} else {
target_dir <- candidate_dirs[grep(
paste0(zero_pad(vpu, 1)), candidate_dirs)]
target_dir <- target_dir[grep(component, target_dir)]
}
res <- list.files(target_dir, pattern = "dbf|DBF|shp", ...)
if (length(grep(file_ext, res)) == 0 | is.na(file_ext)) {
res
} else {
res[grep(paste0(file_ext, "$"), res)]
}
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.