Skip to content

Commit

Permalink
CRAN Release 0.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
brownag committed Aug 5, 2021
1 parent b8eacba commit 37f2431
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,5 @@
^LICENSE\.md$
^CRAN-RELEASE$
^cran-comments\.md$
^doc$
^Meta$
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,5 @@
.RData
.Ruserdata
inst/doc
/doc/
/Meta/
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Title: A System of Soil Classification for Making and Interpreting Soil Surveys
Description: Taxonomic dictionaries, formative element lists, and functions related to the maintenance, development and application of U.S. Soil Taxonomy.
Data and functionality are based on official U.S. Department of Agriculture sources including the latest edition of the Keys to Soil Taxonomy. Descriptions and metadata are obtained from the National Soil Information System or Soil Survey Geographic databases. Other sources are referenced in the data documentation.
Provides tools for understanding and interacting with concepts in the U.S. Soil Taxonomic System. Most of the current utilities are for working with taxonomic concepts at the "higher" taxonomic levels: Order, Suborder, Great Group, and Subgroup.
Version: 0.1.3.9001
Version: 0.1.4
Authors@R: c(person(given="Dylan", family="Beaudette", role = c("aut"), email = "dylan.beaudette@usda.gov"), person(given="Andrew", family="Brown", email="andrew.g.brown@usda.gov", role = c("aut", "cre")))
Maintainer: Andrew Brown <andrew.g.brown@usda.gov>
Depends: R (>= 3.5)
Expand Down
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SoilTaxonomy 0.1.3.9001 (2021-05-03)
# SoilTaxonomy 0.1.4 (2021-08-05)
* Update `ST_formative_elements` / `explainST()` with subgroup-level descriptions for missing taxa

# SoilTaxonomy 0.1.3 (2021-05-02)
Expand Down
4 changes: 3 additions & 1 deletion vignettes/Family-level_Taxonomy.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,10 @@ data("ST_family_classes")
head(ST_family_classes)
```

Here we determine the family-level classes for a single taxonomic family and match them to the class descriptions stored in `ST_family_classes`.

```{r}
afamily_classes <- parse_family("fine-loamy, mixed, semiactive, mesic ultic haploxeralfs")$classes_split[[1]]
class_descriptions <- subset(ST_family_classes, classname %in% afamily_classes)
class_descriptions[match(afamily_classes, class_descriptions$classname),]
```
```

0 comments on commit 37f2431

Please sign in to comment.