-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add new pre-commit hook pkgdown, tidy up DESC
- Loading branch information
Showing
2 changed files
with
34 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,47 +1,31 @@ | ||
Type: Package | ||
Package: ruODK | ||
Title: An R Client for the ODK Central API | ||
Version: 1.4.9.9009 | ||
Authors@R: | ||
c(person(given = c("Florian", "W."), | ||
family = "Mayer", | ||
role = c("aut", "cre"), | ||
email = "[email protected]", | ||
comment = c(ORCID = "0000-0003-4269-4242")), | ||
person(given = "Maëlle", | ||
family = "Salmon", | ||
role = "rev", | ||
email = "[email protected]", | ||
comment = c(ORCID = "0000-0002-2815-0399")), | ||
person(given = "Karissa", | ||
family = "Whiting", | ||
role = "rev", | ||
comment = c(ORCID = "0000-0002-4683-1868")), | ||
person(given = "Jason", | ||
family = "Taylor", | ||
role = "rev"), | ||
person(given = "Marcelo", | ||
family = "Tyszler", | ||
role = "ctb", | ||
comment = c(ORCID = "0000-0002-4573-0002")), | ||
person(given = "Hélène", | ||
family = "Langet", | ||
role = "ctb", | ||
comment = c(ORCID = "0000-0002-6758-2397")), | ||
person(given = "DBCA", | ||
role = c("cph", "fnd")), | ||
person(given = "NWSFTCP", | ||
role = "fnd")) | ||
Description: Access and tidy up data from the 'ODK Central' API. | ||
'ODK Central' is a clearinghouse for digitally captured data using ODK | ||
<https://docs.getodk.org/central-intro/>. | ||
It manages user accounts and permissions, stores form definitions, and | ||
allows data collection clients like 'ODK Collect' to connect to it for form | ||
download and submission upload. The 'ODK Central' API is documented at | ||
Version: 1.4.9.9010 | ||
Authors@R:c( | ||
person(c("Florian", "W."), "Mayer", , "[email protected]", role = c("aut", "cre"), | ||
comment = c(ORCID = "0000-0003-4269-4242")), | ||
person("Maëlle", "Salmon", , "[email protected]", role = "rev", | ||
comment = c(ORCID = "0000-0002-2815-0399")), | ||
person("Karissa", "Whiting", role = "rev", | ||
comment = c(ORCID = "0000-0002-4683-1868")), | ||
person("Jason", "Taylor", role = "rev"), | ||
person("Marcelo", "Tyszler", role = "ctb", | ||
comment = c(ORCID = "0000-0002-4573-0002")), | ||
person("Hélène", "Langet", role = "ctb", | ||
comment = c(ORCID = "0000-0002-6758-2397")), | ||
person("DBCA", role = c("cph", "fnd")), | ||
person("NWSFTCP", role = "fnd") | ||
) | ||
Description: Access and tidy up data from the 'ODK Central' API. 'ODK | ||
Central' is a clearinghouse for digitally captured data using ODK | ||
<https://docs.getodk.org/central-intro/>. It manages user accounts | ||
and permissions, stores form definitions, and allows data collection | ||
clients like 'ODK Collect' to connect to it for form download and | ||
submission upload. The 'ODK Central' API is documented at | ||
<https://docs.getodk.org/central-api/>. | ||
License: GPL-3 | ||
URL: https://docs.ropensci.org/ruODK, | ||
https://github.com/ropensci/ruODK | ||
URL: https://docs.ropensci.org/ruODK, https://github.com/ropensci/ruODK | ||
BugReports: https://github.com/ropensci/ruODK/issues | ||
Depends: | ||
R (>= 4.1) | ||
|
@@ -59,8 +43,8 @@ Imports: | |
purrr (>= 1.0.1), | ||
readr (>= 2.1.3), | ||
rlang (>= 1.0.6), | ||
stringr (>= 1.5.0), | ||
semver (>= 0.2.0), | ||
stringr (>= 1.5.0), | ||
tibble (>= 3.1.8), | ||
tidyr (>= 1.3.0), | ||
xml2 (>= 1.3.3) | ||
|
@@ -71,10 +55,10 @@ Suggests: | |
here (>= 1.0.1), | ||
knitr (>= 1.42), | ||
lattice (>= 0.20-45), | ||
leafem (>= 0.2.0.9012), | ||
leaflet (>= 2.1.1), | ||
listviewer (>= 3.0.0), | ||
leafpop (>= 0.1.0), | ||
leafem (>= 0.2.0.9012), | ||
listviewer (>= 3.0.0), | ||
mapview (>= 2.11.0.9005), | ||
rmarkdown (>= 2.20), | ||
roxygen2 (>= 7.2.3), | ||
|
@@ -88,13 +72,14 @@ VignetteBuilder: | |
knitr | ||
RdMacros: | ||
lifecycle | ||
Remotes: | ||
r-spatial/leafem, | ||
r-spatial/mapview | ||
Encoding: UTF-8 | ||
Language: en-AU | ||
LazyData: true | ||
Roxygen: list(markdown = TRUE) | ||
RoxygenNote: 7.3.2 | ||
X-schema.org-applicationCategory: Data Access | ||
X-schema.org-keywords: database, open-data, opendatakit, odk, api, data, dataset | ||
Remotes: | ||
r-spatial/leafem, | ||
r-spatial/mapview | ||
Roxygen: list(markdown = TRUE) | ||
X-schema.org-keywords: database, open-data, opendatakit, odk, api, data, | ||
dataset |