knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  fig.path = "man/figures/README-",
  out.width = "100%"
)

rintchron: R interface to IntChron

Project Status: WIP – Initial development is in progress, but there has not yet been a stable, usable release suitable for the public. CRAN status R-CMD-check

rintchron provides an R interface to IntChron, an indexing service and exchange format for radiocarbon dates and other chronological data (Bronk Ramsey et al. 2019). It includes a user friendly interface for querying databases indexed by IntChron, as well as lower level functions for interacting directly with the IntChron API.

For an introduction to querying IntChron's databases see the basic usage vignette. For advanced users, low level functions for interacting with the IntChron API directly are described in the IntChron API vignette.

Installation

rintchron has not yet been released on CRAN. You can install the development version from GitHub using the remotes package:

# install.package("remotes")
remotes::install_github("joeroe/rintchron")

Usage

Use intchron() to query databases indexed by IntChron. You can refine the query by database (use intchron_hosts() to see what's available) and optionally by country and site. For example, to download records from Jordan in the ORAU and NERC Radiocarbon Facility databases:

library("rintchron")

# List available databases
intchron_hosts()

# Query IntChron
intchron(c("oxa", "nrcf"), countries = "Jordan")


joeroe/rintchron documentation built on July 30, 2023, 11:18 p.m.