-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Includes: * Established code as a standalone package * Align variables (column names) with Darwin Core, Dublin Core, and the Ecological Trait-data Standard * Allowing more metadata to be associated with individual trait measurements instead of traits or the dataset (e.g. life stage, replicates, entity type) * Rework context, so that multiple context properties can be read in * Reworked identifiers, including 5 separate context property identifiers and location id * Add source_id, such that individual rows of data can be attributed to a specific source * Merge different date fields into `collection_date` * Work from two separate vocabulary workshops merged in (`Seed Traits` & `Whole Plant and Leaf Vegetative Traits`). Also some work realigning traits related to fire response. * Rename other traits to have more consistent naming * Added entity_type, reflecting the entity being measured * Added scraped data from online floras for 7 traits related to plant growth form. For `plant_growth_form` and `woodiness` manually gap-filled from the taxonomic literature to have complete data coverage * Reworked how taxonomic names are processed, such that submitted taxon names are now aligning to the most specific taxon name possible, with separate columns for `family`; `genus`; `binomial`; `trinomial`, filled in as appropriate. * New taxonomic updates added, based on updated algorithms that do a much better job of capturing phrase names and submitted taxon names that include notes. In addition, algorithms automatically identify names that can only be aligned to genus. * Removed taxon matching code from austraits.build (to become part of a separate package) * Add database metadata into the build process
- Loading branch information
Showing
678 changed files
with
306,739 additions
and
122,884 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
This file was deleted.
Oops, something went wrong.
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
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,76 +1,63 @@ | ||
Type: Compendium | ||
Type: Package | ||
Package: austraits.build | ||
Title: Raw data and code used to build the AusTraits compilation | ||
Version: 3.0.2 | ||
Title: Package used to build an AusTraits data resource | ||
Version: 0.9.0 | ||
Maintainer: Daniel Falster <[email protected]> | ||
Authors@R: c( | ||
person(given = "Daniel", family = "Falster", role = c("cre", "aut"), email = "[email protected]", comment = c(ORCID = "0000-0002-9814-092X")), | ||
person(given = "Elizabeth", family = "Wenk", role = c("cur", "aut"), comment = c(ORCID = "0000-0001-5640-5910")), | ||
person(given = "Rachael", family = "Gallagher", role = c("aut", "cur"), comment = c(ORCID = "0000-0002-4680-8115")), | ||
person(given = "Elizabeth", family = "Wenk", role = c("cur", "aut")), | ||
person(given = "Ian", family = "Wright", role = c("aut")), | ||
person(given = "Sam", family = "Andrew", role = c("aut")), | ||
person(given = "Gary", family = "Truong", role = c("ctb")), | ||
person(given = "Caitlin", family = "Baxter", role = c("aut")), | ||
person(given = "Stuart", family = "Allen", role = c("ctb")), | ||
person(given = "James", family = "Lawson", role = c("ctb")), | ||
person("ARDC", role = c("fnd")), | ||
person("ARC", role = c("fnd")) | ||
) | ||
Description: AusTraits is an open-source platform for | ||
ongoing compilation and distribution of data on the traits of Australian | ||
plant species. Data have been assembled from diverse sources, describing | ||
more than 300 plant traits and over 25k taxa. This repository contains all | ||
the information needed to build the resource from different sources, i.e. | ||
harmonise the different datasets into a common structure, | ||
with common variable names, units and structure. Also included are the functions | ||
we use to help with adding new studies. For mroe information on the project | ||
https://austraits.org | ||
Description: This package enbales harmonising of data from diverse sources. The code was originally built to support AusTraits, an open-source compilation of data on the traits of Australian plant species. For more information on AusTraits go to https://austraits.org. | ||
BugReports: https://github.com/traitecoevo/austraits.build/issues | ||
URL: http://traitecoevo.github.io/austraits.build/ | ||
License: BSD2 + file LICENSE | ||
Depends: | ||
R (>= 3.6.1), | ||
License: BSD_2_clause + file LICENCE | ||
Depends: | ||
R (>= 3.6.0), | ||
base, | ||
stringr, | ||
tidyr, | ||
dplyr, | ||
readr, | ||
purrr, | ||
lubridate, | ||
testthat | ||
readr, | ||
stringr, | ||
tidyr | ||
Imports: | ||
magrittr, | ||
crayon, | ||
RefManageR, | ||
rmarkdown, | ||
knitr, | ||
remake, | ||
desc, | ||
git2r, | ||
yaml, | ||
storr, | ||
kableExtra, | ||
rprojroot, | ||
forcats, | ||
ggplot2, | ||
ggbeeswarm, | ||
gridExtra, | ||
leaflet, | ||
scales, | ||
testthat | ||
magrittr, | ||
purrr, | ||
RefManageR, | ||
remake, | ||
rlang, | ||
rmarkdown, | ||
stringi, | ||
styler, | ||
testthat, | ||
tibble, | ||
whisker, | ||
yaml | ||
Suggests: | ||
austraits, | ||
leaflet, | ||
ggbeeswarm, | ||
bibtex, | ||
knitr, | ||
bench, | ||
devtools, | ||
pkgdown, | ||
whisker, | ||
markdown, | ||
googledrive, | ||
rprojroot, | ||
pkgdown, | ||
rcrossref, | ||
zip, | ||
bench | ||
covr | ||
Remotes: | ||
traitecoevo/austraits@develop, | ||
richfitz/remake | ||
Encoding: UTF-8 | ||
LazyData: true | ||
VignetteBuilder: knitr | ||
RoxygenNote: 7.1.1 | ||
RoxygenNote: 7.2.1 | ||
Config/testthat/edition: 3 |
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,4 +1,4 @@ | ||
FROM rocker/verse:3.6.1 | ||
FROM rocker/verse:4.1.2 | ||
LABEL maintainer="Daniel Falster" | ||
LABEL email="[email protected]" | ||
|
||
|
@@ -38,7 +38,7 @@ COPY ./DESCRIPTION ${HOME} | |
|
||
RUN chown -R ${NB_USER} ${HOME} | ||
|
||
RUN R --quiet -e "options(repos = list(CRAN = 'http://mran.revolutionanalytics.com/snapshot/2020-01-01/')); devtools::install_deps(upgrade = 'never')" | ||
RUN R --quiet -e "options(repos = list(CRAN = 'http://mran.revolutionanalytics.com/snapshot/2022-05-01/')); devtools::install_deps(upgrade = 'never')" | ||
|
||
RUN echo "options(remake.verbose.noop=FALSE)" >> /usr/local/lib/R/etc/Rprofile.site | ||
|
Oops, something went wrong.