diff --git a/NAMESPACE b/NAMESPACE index 33e0412d..e3fd5377 100644 --- a/NAMESPACE +++ b/NAMESPACE @@ -6,6 +6,7 @@ export("deployments<-") export("media<-") export("observations<-") export(check_camtrapdp) +export(contributors) export(deployments) export(events) export(example_dataset) diff --git a/man/contributors.Rd b/man/contributors.Rd new file mode 100644 index 00000000..7fcd0273 --- /dev/null +++ b/man/contributors.Rd @@ -0,0 +1,32 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/contributors.R +\name{contributors} +\alias{contributors} +\title{Get contributors and build a data frame} +\usage{ +contributors(x) +} +\arguments{ +\item{x}{Camera Trap Data Package object, as returned by \code{\link[=read_camtrapdp]{read_camtrapdp()}}.} +} +\value{ +A data frame with the contributors. +} +\description{ +Gets the \code{x$contributors} property in a Camera Trap Data Package object and +builds a data frame with the contributors. +} +\examples{ +x <- example_dataset() +contributors(x) +} +\seealso{ +Other accessor functions: +\code{\link{deployments}()}, +\code{\link{events}()}, +\code{\link{locations}()}, +\code{\link{media}()}, +\code{\link{observations}()}, +\code{\link{taxa}()} +} +\concept{accessor functions} diff --git a/man/deployments.Rd b/man/deployments.Rd index 281ed9de..60b3d1b8 100644 --- a/man/deployments.Rd +++ b/man/deployments.Rd @@ -38,6 +38,7 @@ deployments(x) <- head(deployments(x), 1) } \seealso{ Other accessor functions: +\code{\link{contributors}()}, \code{\link{events}()}, \code{\link{locations}()}, \code{\link{media}()}, diff --git a/man/events.Rd b/man/events.Rd index ee2245a6..6f13116b 100644 --- a/man/events.Rd +++ b/man/events.Rd @@ -30,6 +30,7 @@ events(x) } \seealso{ Other accessor functions: +\code{\link{contributors}()}, \code{\link{deployments}()}, \code{\link{locations}()}, \code{\link{media}()}, diff --git a/man/locations.Rd b/man/locations.Rd index 20f4835a..0607c9c0 100644 --- a/man/locations.Rd +++ b/man/locations.Rd @@ -30,6 +30,7 @@ locations(x) } \seealso{ Other accessor functions: +\code{\link{contributors}()}, \code{\link{deployments}()}, \code{\link{events}()}, \code{\link{media}()}, diff --git a/man/media.Rd b/man/media.Rd index 5da31be5..b72953c4 100644 --- a/man/media.Rd +++ b/man/media.Rd @@ -36,6 +36,7 @@ media(x) <- head(media(x), 1) } \seealso{ Other accessor functions: +\code{\link{contributors}()}, \code{\link{deployments}()}, \code{\link{events}()}, \code{\link{locations}()}, diff --git a/man/observations.Rd b/man/observations.Rd index eb969eed..d61e4035 100644 --- a/man/observations.Rd +++ b/man/observations.Rd @@ -38,6 +38,7 @@ observations(x) <- head(observations(x), 1) } \seealso{ Other accessor functions: +\code{\link{contributors}()}, \code{\link{deployments}()}, \code{\link{events}()}, \code{\link{locations}()}, diff --git a/man/taxa.Rd b/man/taxa.Rd index c0f2e1b1..9e8bbdd8 100644 --- a/man/taxa.Rd +++ b/man/taxa.Rd @@ -26,6 +26,7 @@ taxa(x) } \seealso{ Other accessor functions: +\code{\link{contributors}()}, \code{\link{deployments}()}, \code{\link{events}()}, \code{\link{locations}()},