diff --git a/NAMESPACE b/NAMESPACE index b686655..7dcf096 100644 --- a/NAMESPACE +++ b/NAMESPACE @@ -5,6 +5,7 @@ export(bootstrap_means) export(clumped_calib_boot) export(d18Osw_calc) export(filter_outliers) +export(supported_equations) export(temp_calc) export(temp_d18Osw_calc) importFrom(stats,coef) diff --git a/R/equation_supported.R b/R/equation_supported.R index bdde936..f418917 100644 --- a/R/equation_supported.R +++ b/R/equation_supported.R @@ -82,6 +82,7 @@ equation_supported <- function(equation) { #' Bemis, B. E., Spero, H. J., Bijma, J., & Lea, D. W. (1998). Reevaluation of the oxygen isotopic composition of planktonic foraminifera: Experimental results and revised paleotemperature equations. _Paleoceanography_, _13(2)_, 150–160. https://doi.org/10.1029/98PA00070 #' #' Marchitto, T. M., Curry, W. B., Lynch-Stieglitz, J., Bryan, S. P., Cobb, K. M., & Lund, D. C. (2014). Improved oxygen isotope temperature calibrations for cosmopolitan benthic foraminifera. _Geochimica et Cosmochimica Acta_, _130_, 1–11. https://doi.org/10.1016/j.gca.2013.12.034 +#' @export supported_equations <- function() { c( "Shackleton1974", diff --git a/man/supported_equations.Rd b/man/supported_equations.Rd new file mode 100644 index 0000000..65c0387 --- /dev/null +++ b/man/supported_equations.Rd @@ -0,0 +1,25 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/equation_supported.R +\name{supported_equations} +\alias{supported_equations} +\title{Supported d18Osw, d18Occ, temperature relationship equations.} +\usage{ +supported_equations() +} +\description{ +Defaults to Kim & O'neil 1997 as modified by Bemis et al., 1998. +} +\examples{ +supported_equations() +} +\references{ +Shackleton, N. J. (1974). Attainment of isotopic equilibrium between ocean water and the benthic foraminifera genus \emph{Uvigerina}: Isotopic changes in the ocean during the last glacial. \emph{Colloques Internationaux Du CNRS}, \emph{219}, 203–209. + +Erez, J., & Luz, B. (1983). Experimental paleotemperature equation for planktonic foraminifera. \emph{Geochimica et Cosmochimica Acta}, \emph{47(6)}, 1025–1031. https://doi.org/10.1016/0016-7037(83)90232-6 + +Kim, S.-T., & O’Neil, J. R. (1997). Equilibrium and nonequilibrium oxygen isotope effects in synthetic carbonates. \emph{Geochimica et Cosmochimica Acta}, \emph{61(16)}, 3461–3475. https://doi.org/10.1016/S0016-7037(97)00169-5 + +Bemis, B. E., Spero, H. J., Bijma, J., & Lea, D. W. (1998). Reevaluation of the oxygen isotopic composition of planktonic foraminifera: Experimental results and revised paleotemperature equations. \emph{Paleoceanography}, \emph{13(2)}, 150–160. https://doi.org/10.1029/98PA00070 + +Marchitto, T. M., Curry, W. B., Lynch-Stieglitz, J., Bryan, S. P., Cobb, K. M., & Lund, D. C. (2014). Improved oxygen isotope temperature calibrations for cosmopolitan benthic foraminifera. \emph{Geochimica et Cosmochimica Acta}, \emph{130}, 1–11. https://doi.org/10.1016/j.gca.2013.12.034 +}