initial commit

This commit is contained in:
2026-02-10 04:52:37 -05:00
commit 0476f6f8f8
65 changed files with 15368 additions and 0 deletions

23
man/get_epa_ecoregions.Rd Normal file
View File

@@ -0,0 +1,23 @@
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/functions.R
\name{get_epa_ecoregions}
\alias{get_epa_ecoregions}
\title{Download EPA Level III Ecoregions Data}
\usage{
get_epa_ecoregions(url, dest_dir = "data/epa")
}
\arguments{
\item{url}{Character string. The direct URL to the EPA Ecoregions zip file.}
\item{dest_dir}{Character string. The local directory where the data should
be saved. Defaults to "data/epa".}
}
\value{
A character string containing the full file path to the downloaded zip file.
This return value is designed to be tracked by \code{targets}.
}
\description{
Downloads the EPA Level III Ecoregions shapefile (zip format)
to a local directory. Implements a caching check to avoid re-downloading
if the file already exists.
}