character vector, the name of a single soil series, case-insensitive.
only.major
logical, should only return siblings that are major components
component.data
logical, should component data for siblings (and optionally cousins) be returned?
cousins
logical, should siblings-of-siblings (cousins) be returned?
Value
sib
data.frame containing siblings, major component flag, and number of co-occurrences
sib.data
data.frame containing sibling component data
cousins
data.frame containing cousins, major component flag, and number of co-occurrences
cousin.data
data.frame containing cousin component data
Details
The siblings of any given soil series are defined as those soil series (major and minor component) that share a parent map unit with the named series (as a major component). Cousins are siblings of siblings. Data are sourced from SoilWeb which maintains a copy of the current SSURGO snapshot.
# NOT RUN {# basic usagex <- siblings('zook')
x$sib
# restrict to siblings that are major components# e.g. the most likely siblingsx <- siblings('zook', only.major = TRUE)
x$sib
# }