tp_to_adm: Construct age-depth model from tie points

View source: R/tp_to_adm.R

tp_to_admR Documentation

Construct age-depth model from tie points

Description

Turns tie points into an adm object that represents an age-depth model

Usage

tp_to_adm(t, h, T_unit = NULL, L_unit = NULL)

Arguments

t

Vector, tie points in time

h

Vector, tie points in height

T_unit

character, time unit

L_unit

character, length unit

Details

by default, intervals with no sediment accumulation are marked as destructive. tp_to_adm does not check whether the inputs define a valid age-depth model. For this, use is_adm

Value

object of class adm

See Also

is_adm() to check validity of adm objects, get_T_tp() and get_L_tp() to extract time and height/length tie points

Examples


my_adm = tp_to_adm(t = 1:4, h = c(1,2,2,3), T_unit = "kyr", L_unit = "m")
plot(my_adm)
# see vignette("admtools") for other examples

 


admtools documentation built on Oct. 4, 2024, 1:09 a.m.