View source: R/flagOverlappingHz.R
flagOverlappingHz | R Documentation |
Flag perfectly overlapping horizons within a SoilProfileCollection
flagOverlappingHz(x)
x |
a |
Horizons with NA
depths can be flagged as overlapping. Consider finding these horizons with checkHzDepthLogic(byhz=TRUE)
and removing or fixing them.
logical vector with length (and order) matching the horizons of x
D.E. Beaudette, A.G. Brown
checkHzDepthLogic()
fillHzGaps()
# two overlapping horizons
z <- data.frame(
id = 'SPC',
top = c(0, 25, 25, 50, 75, 100, 100),
bottom = c(25, 50, 50, 75, 100, 125, 125)
)
# init SPC
depths(z) <- id ~ top + bottom
# flag perfectly overlapping horizons
z$.overlapFlag <- flagOverlappingHz(z)
# thematic sketches
plotSPC(z, color = '.overlapFlag', hz.depths = TRUE,
depth.axis = FALSE, cex.names = 0.85)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.