R/import_shapefile.R

Defines functions import_shapefile

Documented in import_shapefile

#' Title
#'
#' @param path
#'
#' @return
#' @export
#'
#' @examples
import_shapefile <- function(path) {
  shp <- sf::st_read(path)
  shp <- sf::st_transform(shp, 4326)
}
benjamincrary/NLDAS documentation built on Aug. 28, 2020, 3:33 a.m.