strat.repair: Remove instantaneous deposits and add thickness in hiatuses

View source: R/strat.repair.R

strat.repairR Documentation

Remove instantaneous deposits and add thickness in hiatuses

Description

Remove instantaneous deposits, or 'fills', (e.g. turbidites) and add thickness estimated to be lost, or gaps' (i.e. hiatuses).

Usage

strat.repair(
  dt,
  gap = list(),
  fill = list(),
  clean = F,
  left.side = T,
  left.norm = T
)

Arguments

dt

depth or time

gap

list

fill

list

clean

whether to set the points in fills as NA

left.side

l

left.norm

l

Examples

dt <- as.list(tie.points.example[,2:6])

gap  <- list()
fill <- list()

gap$Charce    <- data.frame(dt = c(370,400), span = c(50,10))
gap$El.Porton <- data.frame(dt = -400, span = 30)

fill$Charce     <- data.frame(l = 63, r = 65)
fill$El.Porton  <- data.frame(l = c(-530), r = c(-630))
fill$Frielingen <- data.frame(l = 20, r = 30)

strat.repair(dt, gap, fill)


StratigrapheR documentation built on July 9, 2023, 6:02 p.m.