From e9e3ded37bcd330ded251c902b94f5c297c8d713 Mon Sep 17 00:00:00 2001 From: zoometh Date: Fri, 8 Dec 2023 15:36:15 +0000 Subject: [PATCH 1/7] URL Atl --- NEWS.md | 4 ++++ R/get_c14data.R | 3 ++- R/get_neonetb.R | 30 ++++++++++++++++++++++++++++++ README.md | 3 ++- data-raw/db_info_table.csv | 1 + data-raw/variable_reference.csv | 20 +++++++++++++++++++- 6 files changed, 58 insertions(+), 3 deletions(-) create mode 100644 R/get_neonetb.R diff --git a/NEWS.md b/NEWS.md index 0b454bc..dece691 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,7 @@ +# 3.4.3 + +- added getter function for get_neonet database: `get_neonetb` + # 3.4.2 - added getter function for get_neonet database: `get_neonet` diff --git a/R/get_c14data.R b/R/get_c14data.R index cf5fc59..15655ff 100644 --- a/R/get_c14data.R +++ b/R/get_c14data.R @@ -154,7 +154,8 @@ get_all_parser_functions <- function() { "rxpand" = c14bazAAR::get_rxpand, "sard" = c14bazAAR::get_sard, "p3k14c" = c14bazAAR::get_p3k14c, - "neonet" = c14bazAAR::get_neonet + "neonet" = c14bazAAR::get_neonet, + "neonet" = c14bazAAR::get_neonetb )) } diff --git a/R/get_neonetb.R b/R/get_neonetb.R new file mode 100644 index 0000000..ec90282 --- /dev/null +++ b/R/get_neonetb.R @@ -0,0 +1,30 @@ +#' @rdname db_getter_backend +#' @export +get_neonetb <- function(db_url = get_db_url("neonetb")) { + + check_connection_to_url(db_url) + + c14dates <- data.table::fread(db_url) + + neonetb <- c14dates %>% + dplyr::transmute( + labnr = .data[["LabCode"]], + c14age = .data[["C14Age"]], + c14std = .data[["C14SD"]], + site = .data[["SiteName"]], + feature = .data[["PhaseCode"]], + period = .data[["Period"]], + material = .data[["Material"]], + species = .data[["MaterialSpecies"]], + country = .data[["Country"]], + lat = .data[["Latitude"]], + lon = .data[["Longitude"]], + shortref = .data[["bib"]], + ) %>% dplyr::mutate( + sourcedb = "neonetb", + sourcedb_version = get_db_version("neonetb") + ) %>% + as.c14_date_list() + + return(neonetb) +} diff --git a/README.md b/README.md index a393a2e..c5e4616 100644 --- a/README.md +++ b/README.md @@ -167,7 +167,8 @@ To suggest other archives to be queried you can join the discussion [here](https * [`get_c14data("katsianis")`](R/get_katsianis.R) [**katsianis**](https://rdr.ucl.ac.uk/articles/Dataset_for_An_Aegean_history_and_archaeology_written_through_radiocarbon_dates/12489137/1): An Aegean History and Archaeology Written through Radiocarbon Dates [Markos Katsianis, Andrew Bevan, Giorgos Styliaras & Yannis Maniatis](https://openarchaeologydata.metajnl.com/articles/10.5334/joad.65/) (2020). * [`get_c14data("kiteeastafrica")`](R/get_kiteeastafrica.R) [**kiteeastafrica**](https://dataverse.harvard.edu/dataset.xhtml?persistentId=doi:10.7910/DVN/NJLNRJ): Radiocarbon dates from eastern Africa in the CARD2.0 format by [Colin Courtney Mustaphi, Rob Marchant](https://www.openquaternary.com/articles/10.5334/oq.22/). * [`get_c14data("medafricarbon")`](R/get_medafricarbon.R) [**MedAfriCarbon**](https://zenodo.org/record/3689716#.XnSHp4hKiUk): The MedAfriCarbon Radiocarbon Database and [Web Application](https://theia.arch.cam.ac.uk/MedAfriCarbon/). Archaeological Dynamics in Mediterranean Africa, ca. 9600–700 BC by [Giulio Lucarini, Toby Wilkinson, Enrico R. Crema, Augusto Palombini, Andrew Bevan and Cyprian Broodbank](https://openarchaeologydata.metajnl.com/articles/10.5334/joad.60/) (2020). -* [`get_c14data("neonet")`](R/neonet.R) [**NeoNet**](https://github.com/zoometh/neonet): The NeoNet app is an online open source interactive and user-friendly R Shiny application for mapping radiocarbon dates from the Late Mesolithic / Early Neolithic transition in the European river basins of the north-central Mediterranean by [Thomas Huet, Niccolò Mazzucco, Miriam Cubas Morera, Juan Gibaja, F. Xavier Oms, António Faustino Carvalho, Ana Catarina Basilio, Elías López-Romero](https://openarchaeologydata.metajnl.com/articles/10.5334/joad.87). +* [`get_c14data("neonet")`](R/neonet.R) [**NeoNet**](https://github.com/zoometh/neonet): NeoNet Med. Radiocarbon Dates for the Late Mesolithic/Early Neolithic Transition in the North Central-Western Mediterranean Basin by [Thomas Huet, Miriam Cubas, Juan F. Gibaja, F. Xavier Oms, Niccolò Mazzucco](https://openarchaeologydata.metajnl.com/articles/10.5334/joad.87). +* [`get_c14data("neonetb")`](R/neonetb.R) [**NeoNet**](https://github.com/zoometh/neonet): NeoNet Atlantic. Radiocarbon Dates for the Late Mesolithic/Early Neolithic Transition in the Southern European Atlantic Coast by [Thomas Huet, Ana Catarina Basílio, António Faustino Carvalho, Miriam Cubas, Juan F. Gibaja, Elías López-Romero, F. Xavier Oms, Niccolò Mazzucco](). * [`get_c14data("nerd")`](R/get_nerd.R) [**NERD**](https://github.com/apalmisano82/NERD): Near East Radiocarbon Dates Alessio Palmisano, Andrew Bevan, Dan Lawrence & Stephen Shennan (2021). * [`get_c14data("pacea")`](R/get_pacea.R) [**pacea**](http://www.paleoanthro.org/media/journal/content/PA20110001_S01.zip): PACEA Geo-Referenced Radiocarbon Database for the late Middle Paleolithic, Upper Paleolithic, and initial Holocene in Europe by [Francesco D'Errico, William E. Banks, Marian Vanhaeren, Véronique Laroulandie and Mathieu Langlais](http://www.paleoanthro.org/media/journal/content/PA20110001.pdf) (2011). * [`get_c14data("palmisano")`](R/get_palmisano.R) [**palmisano**](https://dx.doi.org/10.14324/000.ds.1575442): Regional Demographic Trends and Settlement Patterns in Central Italy: Archaeological Sites and Radiocarbon Dates by [Alessio Palmisano, Andrew Bevan and Stephen Shennan](https://openarchaeologydata.metajnl.com/articles/10.5334/joad.43/) (2018). diff --git a/data-raw/db_info_table.csv b/data-raw/db_info_table.csv index 80b8ec6..69fcaee 100644 --- a/data-raw/db_info_table.csv +++ b/data-raw/db_info_table.csv @@ -29,3 +29,4 @@ aida,today,1,https://raw.githubusercontent.com/apalmisano82/AIDA/main/dates.csv sard,2021-03-01,1,https://raw.githubusercontent.com/emmaloftus/Southern-African-Radiocarbon-Database/main/SARD_Mar2021_14C.csv p3k14c,2021-08-03,1,https://raw.githubusercontent.com/people3k/p3k14c/1.0.0/inst/p3k14c_scrubbed_fuzzed.csv neonet,2023-07-15,1,http://mappaproject.arch.unipi.it/mod/files/140_140_id00140_doc_elencoc14.tsv +neonetb,2023-12-08,1,https://digitallib.unipi.it/fedora/objects/mag:2627/datastreams/MM54ff3698c0ea78b77469ce6462c2ca36/content diff --git a/data-raw/variable_reference.csv b/data-raw/variable_reference.csv index 6f9b03c..d8ff204 100644 --- a/data-raw/variable_reference.csv +++ b/data-raw/variable_reference.csv @@ -628,4 +628,22 @@ region,neonet, shortref,neonet,bib site,neonet,Site Name sitetype,neonet, -species,neonet,Material Species \ No newline at end of file +species,neonet,Material Species +c13val,neonetb, +c14age,neonetb,C14Age +c14std,neonetb,C14SD +comment,neonetb, +country,neonetb,Country +culture,neonetb, +feature,neonetb,Phase Code +labnr,neonetb,Lab Code +lat,neonetb,Latitude +lon,neonetb,Longitude +material,neonetb,Material +method,neonetb, +period,neonetb,Period +region,neonetb, +shortref,neonetb,bib +site,neonetb,Site Name +sitetype,neonetb, +species,neonetb,Material Species \ No newline at end of file From d4ae639b2c87143ecb38f8eeccbee53a126f6f5f Mon Sep 17 00:00:00 2001 From: zoometh Date: Fri, 8 Dec 2023 16:06:09 +0000 Subject: [PATCH 2/7] URL Atl --- README.md | 4 ++-- data-raw/db_info_table.csv | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index c5e4616..873a941 100644 --- a/README.md +++ b/README.md @@ -167,8 +167,8 @@ To suggest other archives to be queried you can join the discussion [here](https * [`get_c14data("katsianis")`](R/get_katsianis.R) [**katsianis**](https://rdr.ucl.ac.uk/articles/Dataset_for_An_Aegean_history_and_archaeology_written_through_radiocarbon_dates/12489137/1): An Aegean History and Archaeology Written through Radiocarbon Dates [Markos Katsianis, Andrew Bevan, Giorgos Styliaras & Yannis Maniatis](https://openarchaeologydata.metajnl.com/articles/10.5334/joad.65/) (2020). * [`get_c14data("kiteeastafrica")`](R/get_kiteeastafrica.R) [**kiteeastafrica**](https://dataverse.harvard.edu/dataset.xhtml?persistentId=doi:10.7910/DVN/NJLNRJ): Radiocarbon dates from eastern Africa in the CARD2.0 format by [Colin Courtney Mustaphi, Rob Marchant](https://www.openquaternary.com/articles/10.5334/oq.22/). * [`get_c14data("medafricarbon")`](R/get_medafricarbon.R) [**MedAfriCarbon**](https://zenodo.org/record/3689716#.XnSHp4hKiUk): The MedAfriCarbon Radiocarbon Database and [Web Application](https://theia.arch.cam.ac.uk/MedAfriCarbon/). Archaeological Dynamics in Mediterranean Africa, ca. 9600–700 BC by [Giulio Lucarini, Toby Wilkinson, Enrico R. Crema, Augusto Palombini, Andrew Bevan and Cyprian Broodbank](https://openarchaeologydata.metajnl.com/articles/10.5334/joad.60/) (2020). -* [`get_c14data("neonet")`](R/neonet.R) [**NeoNet**](https://github.com/zoometh/neonet): NeoNet Med. Radiocarbon Dates for the Late Mesolithic/Early Neolithic Transition in the North Central-Western Mediterranean Basin by [Thomas Huet, Miriam Cubas, Juan F. Gibaja, F. Xavier Oms, Niccolò Mazzucco](https://openarchaeologydata.metajnl.com/articles/10.5334/joad.87). -* [`get_c14data("neonetb")`](R/neonetb.R) [**NeoNet**](https://github.com/zoometh/neonet): NeoNet Atlantic. Radiocarbon Dates for the Late Mesolithic/Early Neolithic Transition in the Southern European Atlantic Coast by [Thomas Huet, Ana Catarina Basílio, António Faustino Carvalho, Miriam Cubas, Juan F. Gibaja, Elías López-Romero, F. Xavier Oms, Niccolò Mazzucco](). +* [`get_c14data("neonet")`](R/neonet.R) [**neonet**](https://github.com/zoometh/neonet): NeoNet Med. Radiocarbon Dates for the Late Mesolithic/Early Neolithic Transition in the North Central-Western Mediterranean Basin by [Thomas Huet, Miriam Cubas, Juan F. Gibaja, F. Xavier Oms, Niccolò Mazzucco](https://openarchaeologydata.metajnl.com/articles/10.5334/joad.87). +* [`get_c14data("neonetb")`](R/neonetb.R) [**neonetb**](https://github.com/zoometh/neonet): NeoNet Atlantic. Radiocarbon Dates for the Late Mesolithic/Early Neolithic Transition in the Southern European Atlantic Coast by [Thomas Huet, Ana Catarina Basílio, António Faustino Carvalho, Miriam Cubas, Juan F. Gibaja, Elías López-Romero, F. Xavier Oms, Niccolò Mazzucco](). * [`get_c14data("nerd")`](R/get_nerd.R) [**NERD**](https://github.com/apalmisano82/NERD): Near East Radiocarbon Dates Alessio Palmisano, Andrew Bevan, Dan Lawrence & Stephen Shennan (2021). * [`get_c14data("pacea")`](R/get_pacea.R) [**pacea**](http://www.paleoanthro.org/media/journal/content/PA20110001_S01.zip): PACEA Geo-Referenced Radiocarbon Database for the late Middle Paleolithic, Upper Paleolithic, and initial Holocene in Europe by [Francesco D'Errico, William E. Banks, Marian Vanhaeren, Véronique Laroulandie and Mathieu Langlais](http://www.paleoanthro.org/media/journal/content/PA20110001.pdf) (2011). * [`get_c14data("palmisano")`](R/get_palmisano.R) [**palmisano**](https://dx.doi.org/10.14324/000.ds.1575442): Regional Demographic Trends and Settlement Patterns in Central Italy: Archaeological Sites and Radiocarbon Dates by [Alessio Palmisano, Andrew Bevan and Stephen Shennan](https://openarchaeologydata.metajnl.com/articles/10.5334/joad.43/) (2018). diff --git a/data-raw/db_info_table.csv b/data-raw/db_info_table.csv index 69fcaee..7b9195b 100644 --- a/data-raw/db_info_table.csv +++ b/data-raw/db_info_table.csv @@ -28,5 +28,5 @@ caribbean,2021-05-21,1,https://raw.githubusercontent.com/philriris/caribbean-14C aida,today,1,https://raw.githubusercontent.com/apalmisano82/AIDA/main/dates.csv sard,2021-03-01,1,https://raw.githubusercontent.com/emmaloftus/Southern-African-Radiocarbon-Database/main/SARD_Mar2021_14C.csv p3k14c,2021-08-03,1,https://raw.githubusercontent.com/people3k/p3k14c/1.0.0/inst/p3k14c_scrubbed_fuzzed.csv -neonet,2023-07-15,1,http://mappaproject.arch.unipi.it/mod/files/140_140_id00140_doc_elencoc14.tsv +neonet,2023-07-15,1,https://digitallib.unipi.it/fedora/objects/mag:2814/datastreams/MMb714bbfacf4af2ce1fd7025e3789a99b/content neonetb,2023-12-08,1,https://digitallib.unipi.it/fedora/objects/mag:2627/datastreams/MM54ff3698c0ea78b77469ce6462c2ca36/content From a56bebae440b4b6009b21f7bdf96c0c551521d57 Mon Sep 17 00:00:00 2001 From: zoometh Date: Fri, 8 Dec 2023 16:15:31 +0000 Subject: [PATCH 3/7] URL Atl --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a233b63..12427e0 100644 --- a/README.md +++ b/README.md @@ -167,7 +167,8 @@ To suggest other archives to be queried you can join the discussion [here](https * [`get_c14data("katsianis")`](R/get_katsianis.R) [**katsianis**](https://rdr.ucl.ac.uk/articles/Dataset_for_An_Aegean_history_and_archaeology_written_through_radiocarbon_dates/12489137/1): An Aegean History and Archaeology Written through Radiocarbon Dates [Markos Katsianis, Andrew Bevan, Giorgos Styliaras & Yannis Maniatis](https://openarchaeologydata.metajnl.com/articles/10.5334/joad.65/) (2020). * [`get_c14data("kiteeastafrica")`](R/get_kiteeastafrica.R) [**kiteeastafrica**](https://dataverse.harvard.edu/dataset.xhtml?persistentId=doi:10.7910/DVN/NJLNRJ): Radiocarbon dates from eastern Africa in the CARD2.0 format by [Colin Courtney Mustaphi, Rob Marchant](https://www.openquaternary.com/articles/10.5334/oq.22/). * [`get_c14data("medafricarbon")`](R/get_medafricarbon.R) [**MedAfriCarbon**](https://zenodo.org/record/3689716#.XnSHp4hKiUk): The MedAfriCarbon Radiocarbon Database and [Web Application](https://theia.arch.cam.ac.uk/MedAfriCarbon/). Archaeological Dynamics in Mediterranean Africa, ca. 9600–700 BC by [Giulio Lucarini, Toby Wilkinson, Enrico R. Crema, Augusto Palombini, Andrew Bevan and Cyprian Broodbank](https://openarchaeologydata.metajnl.com/articles/10.5334/joad.60/) (2020). -* [`get_c14data("neonet")`](R/neonet.R) [**NeoNet**](https://github.com/zoometh/neonet): The NeoNet app is an online open source interactive and user-friendly R Shiny application for mapping radiocarbon dates from the Late Mesolithic / Early Neolithic transition in the European river basins of the north-central Mediterranean by [Thomas Huet, Niccolò Mazzucco, Miriam Cubas Morera, Juan Gibaja, F. Xavier Oms, António Faustino Carvalho, Ana Catarina Basilio, Elías López-Romero](https://openarchaeologydata.metajnl.com/articles/10.5334/joad.87). +* [`get_c14data("neonet")`](R/neonet.R) [**neonet**](https://github.com/zoometh/neonet): NeoNet Med. Radiocarbon Dates for the Late Mesolithic/Early Neolithic Transition in the North Central-Western Mediterranean Basin by [Thomas Huet, Miriam Cubas, Juan F. Gibaja, F. Xavier Oms, Niccolò Mazzucco](https://openarchaeologydata.metajnl.com/articles/10.5334/joad.87). +* [`get_c14data("neonetb")`](R/neonetb.R) [**neonetb**](https://github.com/zoometh/neonet): NeoNet Atlantic. Radiocarbon Dates for the Late Mesolithic/Early Neolithic Transition in the Southern European Atlantic Coast by [Thomas Huet, Ana Catarina Basílio, António Faustino Carvalho, Miriam Cubas, Juan F. Gibaja, Elías López-Romero, F. Xavier Oms, Niccolò Mazzucco](). * [`get_c14data("nerd")`](R/get_nerd.R) [**NERD**](https://github.com/apalmisano82/NERD): Near East Radiocarbon Dates Alessio Palmisano, Andrew Bevan, Dan Lawrence & Stephen Shennan (2021). * [`get_c14data("pacea")`](R/get_pacea.R) [**pacea**](http://www.paleoanthro.org/media/journal/content/PA20110001_S01.zip): PACEA Geo-Referenced Radiocarbon Database for the late Middle Paleolithic, Upper Paleolithic, and initial Holocene in Europe by [Francesco D'Errico, William E. Banks, Marian Vanhaeren, Véronique Laroulandie and Mathieu Langlais](http://www.paleoanthro.org/media/journal/content/PA20110001.pdf) (2011). * [`get_c14data("palmisano")`](R/get_palmisano.R) [**palmisano**](https://dx.doi.org/10.14324/000.ds.1575442): Regional Demographic Trends and Settlement Patterns in Central Italy: Archaeological Sites and Radiocarbon Dates by [Alessio Palmisano, Andrew Bevan and Stephen Shennan](https://openarchaeologydata.metajnl.com/articles/10.5334/joad.43/) (2018). From ea1aff5154d1528827eaafdb8014b7986fd501b6 Mon Sep 17 00:00:00 2001 From: zoometh Date: Fri, 8 Dec 2023 16:29:58 +0000 Subject: [PATCH 4/7] URL Atl --- data-raw/variable_reference.csv | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/data-raw/variable_reference.csv b/data-raw/variable_reference.csv index 415f598..c6dcf51 100644 --- a/data-raw/variable_reference.csv +++ b/data-raw/variable_reference.csv @@ -601,4 +601,22 @@ region,neonet, shortref,neonet,bib site,neonet,Site Name sitetype,neonet, -species,neonet,Material Species \ No newline at end of file +species,neonet,Material Species +c13val,neonetb, +c14age,neonetb,C14Age +c14std,neonetb,C14SD +comment,neonetb, +country,neonetb,Country +culture,neonetb, +feature,neonetb,Phase Code +labnr,neonetb,Lab Code +lat,neonetb,Latitude +lon,neonetb,Longitude +material,neonetb,Material +method,neonetb, +period,neonetb,Period +region,neonetb, +shortref,neonetb,bib +site,neonetb,Site Name +sitetype,neonetb, +species,neonetb,Material Species \ No newline at end of file From ade31d5c945007d6130e44548cd1cfca642af19e Mon Sep 17 00:00:00 2001 From: zoometh Date: Fri, 8 Dec 2023 16:30:56 +0000 Subject: [PATCH 5/7] URL Atl --- data-raw/db_info_table.csv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data-raw/db_info_table.csv b/data-raw/db_info_table.csv index acc1744..8dc138a 100644 --- a/data-raw/db_info_table.csv +++ b/data-raw/db_info_table.csv @@ -27,5 +27,5 @@ caribbean,2021-05-21,1,https://raw.githubusercontent.com/philriris/caribbean-14C aida,today,1,https://raw.githubusercontent.com/apalmisano82/AIDA/main/dates.csv sard,2021-03-01,1,https://raw.githubusercontent.com/emmaloftus/Southern-African-Radiocarbon-Database/main/SARD_Mar2021_14C.csv p3k14c,2021-08-03,1,https://raw.githubusercontent.com/people3k/p3k14c/1.0.0/inst/p3k14c_scrubbed_fuzzed.csv -neonet,2023-07-15,1,https://digitallib.unipi.it/fedora/objects/mag:2814/datastreams/MMb714bbfacf4af2ce1fd7025e3789a99b/content +neonet,2023-12-08,2,https://digitallib.unipi.it/fedora/objects/mag:2814/datastreams/MMb714bbfacf4af2ce1fd7025e3789a99b/content neonetb,2023-12-08,1,https://digitallib.unipi.it/fedora/objects/mag:2627/datastreams/MM54ff3698c0ea78b77469ce6462c2ca36/content From 3d86bcc709a80681d5d60a93e32b5c1b3dc62278 Mon Sep 17 00:00:00 2001 From: zoometh Date: Fri, 8 Dec 2023 16:54:53 +0000 Subject: [PATCH 6/7] URL Atl --- NEWS.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/NEWS.md b/NEWS.md index 0b454bc..27aa2cf 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,10 @@ +# 4.0.0 + +- deprecated `get_context` - this database is not available any more online +- slightly reorganized the raw data storage to make it more clear which information is still relevant +- defined some NA strings for `get_neonet` +- reformatted the database list in the README; it now includes the database version available through c14bazAAR + # 3.4.2 - added getter function for get_neonet database: `get_neonet` From 434180be75afcbe985ead8e3b1a3ff588a02fb5c Mon Sep 17 00:00:00 2001 From: zoometh Date: Fri, 8 Dec 2023 17:02:35 +0000 Subject: [PATCH 7/7] README --- README.md | 62 +++++++++++++++++++++++++++++++------------------------ 1 file changed, 35 insertions(+), 27 deletions(-) diff --git a/README.md b/README.md index 12427e0..afa36b3 100644 --- a/README.md +++ b/README.md @@ -150,33 +150,41 @@ rcarbon::calibrate(x = x$c14age, error = x$c14std) To suggest other archives to be queried you can join the discussion [here](https://github.com/ropensci/c14bazAAR/issues/2). -* [`get_c14data("14cpalaeolithic")`](R/get_14cpalaeolithic.R) [**14cpalaeolithic**](https://ees.kuleuven.be/geography/projects/14c-palaeolithic): Radiocarbon Palaeolithic Europe Database V29, February 2022. -* [`get_c14data("14sea")`](R/get_14sea.R) [**14sea**](http://www.14sea.org/) 14C database for Southeast Europe and Anatolia (10,000–3000 calBC). -* [`get_c14data("adrac")`](R/get_adrac.R) [**adrac**](https://github.com/dirkseidensticker/aDRAC): Archives des datations radiocarbone d'Afrique centrale by Dirk Seidensticker. -* [`get_c14data("agrichange")`](R/get_agrichange.R) [**agrichange**](https://zenodo.org/record/4541470): Radiocarbon dates associated to Neolithic contexts (ca. 5900 – 2000 cal BC) from the northwestern Mediterranean Arch to the High Rhine area by [Héctor Martínez-Grau, Berta Morell-Rovira & Ferran Antolín](https://openarchaeologydata.metajnl.com/articles/10.5334/joad.72/) (2021). -* [`get_c14data("aida")`](R/get_aida.R) [**AIDA**](https://github.com/apalmisano82/AIDA): Archive of Italian radiocarbon DAtes Alessio Palmisano, Andrew Bevan, Alex Kabelindde, Neil Roberts & Stephen Shennan (2021). -* [`get_c14data("austarch")`](R/get_austarch.R) [**austarch**](https://archaeologydataservice.ac.uk/archives/view/austarch_na_2014/): A Database of 14C and Luminescence Ages from Archaeological Sites in Australia by [Alan N. Williams, Sean Ulm, Mike Smith, Jill Reid](https://intarch.ac.uk/journal/issue36/6/williams.html). -* [`get_c14data("bda")`](R/get_bda.R) [**BDA**](https://nakala.fr/10.34847/nkl.dde9fnm8): Base de Données Archéologiques by Thomas Perrin (1994). -* [`get_c14data("calpal")`](R/get_calpal.R) [**calpal**](https://uni-koeln.academia.edu/BernhardWeninger/CalPal): Radiocarbon Database of the CalPal software package by Bernhard Weninger. See [nevrome/CalPal-Database](https://github.com/nevrome/CalPal-Database) for an interface. -* [`get_c14data("caribbean")`](R/get_caribbean.R) [**caribbean**](https://github.com/philriris/caribbean-14C/): A compilation of 2147 anthropogenic radiocarbon (14C) dates for the Caribbean region from 504 sites across 57 islands by Phil Riris (2021). -* [`get_c14data("context")`](R/get_context.R) [**context**](http://context-database.uni-koeln.de/): Collection of radiocarbon dates from sites in the Near East and neighboring regions (20.000 - 5.000 calBC) by Utz Böhner and Daniel Schyle. -* [`get_c14data("eubar")`](R/get_eubar.R) [**eubar**](https://telearchaeology.org/eubar-c14-database/): A database of 14C measurements for the European Bronze Age by [Gacomo Capuzzo](https://telearchaeology.org/EUBAR/). -* [`get_c14data("euroevol")`](R/get_euroevol.R) [**euroevol**](https://discovery.ucl.ac.uk/1469811/): Cultural Evolution of Neolithic Europe Dataset by [Katie Manning, Sue Colledge, Enrico Crema, Stephen Shennan and Adrian Timpson](https://openarchaeologydata.metajnl.com/articles/10.5334/joad.40/). -* [`get_c14data("irdd")`](R/get_irdd.R) [**irdd**](https://sites.google.com/site/chapplearchaeology/irish-radiocarbon-dendrochronological-dates): [Robert M Chapple](https://doi.org/10.5281/zenodo.3367518)'s Catalogue of Radiocarbon Determinations & Dendrochronology Dates is a free-to-download resource for Irish archaeology. -* [`get_c14data("jomon")`](R/get_jomon.R) [**jomon**](https://github.com/ercrema/jomonPhasesAndPopulation): A multi-proxy inference of Jōmon population dynamics using bayesian phase models, residential data, and summed probability distribution of 14C dates [Enrico R. Crema and Ken'ichi Kobayashi](https://www.sciencedirect.com/science/article/pii/S0305440320300583) (2020). -* [`get_c14data("katsianis")`](R/get_katsianis.R) [**katsianis**](https://rdr.ucl.ac.uk/articles/Dataset_for_An_Aegean_history_and_archaeology_written_through_radiocarbon_dates/12489137/1): An Aegean History and Archaeology Written through Radiocarbon Dates [Markos Katsianis, Andrew Bevan, Giorgos Styliaras & Yannis Maniatis](https://openarchaeologydata.metajnl.com/articles/10.5334/joad.65/) (2020). -* [`get_c14data("kiteeastafrica")`](R/get_kiteeastafrica.R) [**kiteeastafrica**](https://dataverse.harvard.edu/dataset.xhtml?persistentId=doi:10.7910/DVN/NJLNRJ): Radiocarbon dates from eastern Africa in the CARD2.0 format by [Colin Courtney Mustaphi, Rob Marchant](https://www.openquaternary.com/articles/10.5334/oq.22/). -* [`get_c14data("medafricarbon")`](R/get_medafricarbon.R) [**MedAfriCarbon**](https://zenodo.org/record/3689716#.XnSHp4hKiUk): The MedAfriCarbon Radiocarbon Database and [Web Application](https://theia.arch.cam.ac.uk/MedAfriCarbon/). Archaeological Dynamics in Mediterranean Africa, ca. 9600–700 BC by [Giulio Lucarini, Toby Wilkinson, Enrico R. Crema, Augusto Palombini, Andrew Bevan and Cyprian Broodbank](https://openarchaeologydata.metajnl.com/articles/10.5334/joad.60/) (2020). -* [`get_c14data("neonet")`](R/neonet.R) [**neonet**](https://github.com/zoometh/neonet): NeoNet Med. Radiocarbon Dates for the Late Mesolithic/Early Neolithic Transition in the North Central-Western Mediterranean Basin by [Thomas Huet, Miriam Cubas, Juan F. Gibaja, F. Xavier Oms, Niccolò Mazzucco](https://openarchaeologydata.metajnl.com/articles/10.5334/joad.87). -* [`get_c14data("neonetb")`](R/neonetb.R) [**neonetb**](https://github.com/zoometh/neonet): NeoNet Atlantic. Radiocarbon Dates for the Late Mesolithic/Early Neolithic Transition in the Southern European Atlantic Coast by [Thomas Huet, Ana Catarina Basílio, António Faustino Carvalho, Miriam Cubas, Juan F. Gibaja, Elías López-Romero, F. Xavier Oms, Niccolò Mazzucco](). -* [`get_c14data("nerd")`](R/get_nerd.R) [**NERD**](https://github.com/apalmisano82/NERD): Near East Radiocarbon Dates Alessio Palmisano, Andrew Bevan, Dan Lawrence & Stephen Shennan (2021). -* [`get_c14data("pacea")`](R/get_pacea.R) [**pacea**](http://www.paleoanthro.org/media/journal/content/PA20110001_S01.zip): PACEA Geo-Referenced Radiocarbon Database for the late Middle Paleolithic, Upper Paleolithic, and initial Holocene in Europe by [Francesco D'Errico, William E. Banks, Marian Vanhaeren, Véronique Laroulandie and Mathieu Langlais](http://www.paleoanthro.org/media/journal/content/PA20110001.pdf) (2011). -* [`get_c14data("palmisano")`](R/get_palmisano.R) [**palmisano**](https://dx.doi.org/10.14324/000.ds.1575442): Regional Demographic Trends and Settlement Patterns in Central Italy: Archaeological Sites and Radiocarbon Dates by [Alessio Palmisano, Andrew Bevan and Stephen Shennan](https://openarchaeologydata.metajnl.com/articles/10.5334/joad.43/) (2018). -* [`get_c14data("p3k14c")`](R/get_p3k14c.R) [**p3k14c**](https://github.com/people3k): p3k14c: A synthetic global database of archaeological radiocarbon dates by [Darcy Bird, Lux Miranda, Marc Vander Linden, Robinson, Erick, R. Kyle Bocinsky, Chris Nicholson, José M. Capriles, Judson Byrd Finley, Eugenia M. Gayo, Adolfo Gil, Jade d’Alpoim Guedes, Julie A. Hoggarth, Andrea Kay, Emma Loftus, Umberto Lombardo, Madeline Mackie, Alessio Palmisano, Steinar Solheim, Robert L. Kelly, and Jacob Freeman](https://doi.org/10.1038/s41597-022-01118-7) (2022). c14bazAAR only features the ["scrubbed and fuzzed" dataset](https://core.tdar.org/dataset/459172/p3k14c-scrubbed) as included in the [p3k14c package](https://github.com/people3k/p3k14c). -* [`get_c14data("radon")`](R/get_radon.R) [**radon**](https://radon.ufg.uni-kiel.de/): Central European and Scandinavian database of 14C dates for the Neolithic and Early Bronze Age by [Dirk Raetzel-Fabian, Martin Furholt, Martin Hinz, Johannes Müller, Christoph Rinne, Karl-Göran Sjögren und Hans-Peter Wotzka](https://www.jna.uni-kiel.de/index.php/jna/article/view/65). -* [`get_c14data("radonb")`](R/get_radonb.R) [**radonb**](https://radon-b.ufg.uni-kiel.de/): Database for European 14C dates for the Bronze and Early Iron Age by Jutta Kneisel, Martin Hinz, Christoph Rinne. -* [`get_c14data("rxpand")`](R/get_rxpand.R) [**rxpand**](https://github.com/jgregoriods/rxpand): Radiocarbon dates for the spread of farming and ceramics in tropical South America by Jonas Gregorio de Souza. -* [`get_c14data("sard")`](R/get_sard.R) [**sard**](https://github.com/emmaloftus/Southern-African-Radiocarbon-Database): Southern-African-Radiocarbon-Database by [Emma Loftus, Peter J. Mitchell & Christopher Bronk Ramsey](https://www.cambridge.org/core/journals/antiquity/article/abs/an-archaeological-radiocarbon-database-for-southern-africa/26FE99E995C4507015704D552CB0C196). +| Database | Description | +|----------|-------------| +| [**14cpalaeolithic**](https://ees.kuleuven.be/geography/projects/14c-palaeolithic)
2022-02-01 (V29)
[`get_c14data("14cpalaeolithic")`](R/get_14cpalaeolithic.R) | Radiocarbon Palaeolithic Europe Database. | +| [**14sea**](http://www.14sea.org/)
2017-01-29
[`get_c14data("14sea")`](R/get_14sea.R) | 14C database for Southeast Europe and Anatolia (10,000–3000 calBC). | +| [**adrac**](https://github.com/dirkseidensticker/aDRAC)
latest
[`get_c14data("adrac")`](R/get_adrac.R) | Archives des datations radiocarbone d'Afrique centrale by Dirk Seidensticker. | +| [**agrichange**](https://zenodo.org/record/4541470)
2021-05-21
[`get_c14data("agrichange")`](R/get_agrichange.R) | Radiocarbon dates associated to Neolithic contexts (ca. 5900 – 2000 cal BC) from the northwestern Mediterranean Arch to the High Rhine area by [Héctor Martínez-Grau, Berta Morell-Rovira & Ferran Antolín](https://openarchaeologydata.metajnl.com/articles/10.5334/joad.72/) (2021). | +| [**AIDA**](https://github.com/apalmisano82/AIDA)
latest
[`get_c14data("aida")`](R/get_aida.R) | Archive of Italian radiocarbon DAtes Alessio Palmisano, Andrew Bevan, Alex Kabelindde, Neil Roberts & Stephen Shennan (2021). | +| [**austarch**](https://archaeologydataservice.ac.uk/archives/view/austarch_na_2014/)
2013-11-28
[`get_c14data("austarch")`](R/get_austarch.R) | A Database of 14C and Luminescence Ages from Archaeological Sites in Australia by [Alan N. Williams, Sean Ulm, Mike Smith, Jill Reid](https://intarch.ac.uk/journal/issue36/6/williams.html). | +| [**BDA**](https://nakala.fr/10.34847/nkl.dde9fnm8)
2020-03-29
[`get_c14data("bda")`](R/get_bda.R) | Base de Données Archéologiques by Thomas Perrin (1994). | +| [**calpal**](https://uni-koeln.academia.edu/BernhardWeninger/CalPal)
2020-08-20
[`get_c14data("calpal")`](R/get_calpal.R) | Radiocarbon Database of the CalPal software package by Bernhard Weninger. See [nevrome/CalPal-Database](https://github.com/nevrome/CalPal-Database) for an interface. | +| [**caribbean**](https://github.com/philriris/caribbean-14C/)
2021-05-21
[`get_c14data("caribbean")`](R/get_caribbean.R) | A compilation of 2147 anthropogenic radiocarbon (14C) dates for the Caribbean region from 504 sites across 57 islands by Phil Riris (2021). | +| [**eubar**](https://telearchaeology.org/eubar-c14-database/)
2017-10-02
[`get_c14data("eubar")`](R/get_eubar.R) | A database of 14C measurements for the European Bronze Age by [Gacomo Capuzzo](https://telearchaeology.org/EUBAR/). | +| [**euroevol**](https://discovery.ucl.ac.uk/1469811/)
2015-07-09
[`get_c14data("euroevol")`](R/get_euroevol.R) | Cultural Evolution of Neolithic Europe Dataset by [Katie Manning, Sue Colledge, Enrico Crema, Stephen Shennan and Adrian Timpson](https://openarchaeologydata.metajnl.com/articles/10.5334/joad.40/). | +| [**irdd**](https://sites.google.com/site/chapplearchaeology/irish-radiocarbon-dendrochronological-dates)
2018-08-13
[`get_c14data("irdd")`](R/get_irdd.R) | [Robert M Chapple](https://doi.org/10.5281/zenodo.3367518)'s Catalogue of Radiocarbon Determinations & Dendrochronology Dates is a free-to-download resource for Irish archaeology. | +| [**jomon**](https://github.com/ercrema/jomonPhasesAndPopulation)
latest
[`get_c14data("jomon")`](R/get_jomon.R) | A multi-proxy inference of Jōmon population dynamics using bayesian phase models, residential data, and summed probability distribution of 14C dates [Enrico R. Crema and Ken'ichi Kobayashi](https://www.sciencedirect.com/science/article/pii/S0305440320300583) (2020). | +| [**katsianis**](https://rdr.ucl.ac.uk/articles/Dataset_for_An_Aegean_history_and_archaeology_written_through_radiocarbon_dates/12489137/1)
2020-08-20
[`get_c14data("katsianis")`](R/get_katsianis.R) | An Aegean History and Archaeology Written through Radiocarbon Dates [Markos Katsianis, Andrew Bevan, Giorgos Styliaras & Yannis Maniatis](https://openarchaeologydata.metajnl.com/articles/10.5334/joad.65/) (2020). | +| [**kiteeastafrica**](https://dataverse.harvard.edu/dataset.xhtml?persistentId=doi:10.7910/DVN/NJLNRJ)
2016-04-28
[`get_c14data("kiteeastafrica")`](R/get_kiteeastafrica.R) | Radiocarbon dates from eastern Africa in the CARD2.0 format by [Colin Courtney Mustaphi, Rob Marchant](https://www.openquaternary.com/articles/10.5334/oq.22/). | +| [**MedAfriCarbon**](https://zenodo.org/record/3689716#.XnSHp4hKiUk)
2020-03-20
[`get_c14data("medafricarbon")`](R/get_medafricarbon.R) | The MedAfriCarbon Radiocarbon Database and [Web Application](https://theia.arch.cam.ac.uk/MedAfriCarbon/). Archaeological Dynamics in Mediterranean Africa, ca. 9600–700 BC by [Giulio Lucarini, Toby Wilkinson, Enrico R. Crema, Augusto Palombini, Andrew Bevan and Cyprian Broodbank](https://openarchaeologydata.metajnl.com/articles/10.5334/joad.60/) (2020). | +| [**MesoRAD**](https://github.com/eehh-stanford/price2020)
2020-09-01 (V1.1)
[`get_c14data("mesorad")`](R/get_mesorad.R) | Data for End-to-end Bayesian analysis of 14C dates reveals new insights into lowland Maya demography by [Michael Holton Price, José M. Capriles, Julie A. Hoggarth, Kyle Bocinsky, Claire E. Ebert, James Holland Jones](https://doi.org/10.1101/2020.07.02.185256). | +| [**neonet**](https://github.com/zoometh/neonet)
2023-12-08 (V2)
[`get_c14data("neonet")`](R/neonet.R) | NeoNet Med. Radiocarbon Dates for the Late Mesolithic/Early Neolithic Transition in the North Central-Western Mediterranean Basin by [Thomas Huet, Miriam Cubas, Juan F. Gibaja, F. Xavier Oms, Niccolò Mazzucco](https://openarchaeologydata.metajnl.com/articles/10.5334/joad.87). | +| [**neonetb**](https://github.com/zoometh/neonet)
2023-12-08 (V1)
[`get_c14data("neonetb")`](R/neonetb.R) | NeoNet Atlantic. Radiocarbon Dates for the Late Mesolithic/Early Neolithic Transition in the Southern European Atlantic Coast by [Thomas Huet, Ana Catarina Basílio, António Faustino Carvalho, Miriam Cubas, Juan F. Gibaja, Elías López-Romero, F. Xavier Oms, Niccolò Mazzucco](). | +| [**NERD**](https://github.com/apalmisano82/NERD)
latest
[`get_c14data("nerd")`](R/get_nerd.R) | Near East Radiocarbon Dates Alessio Palmisano, Andrew Bevan, Dan Lawrence & Stephen Shennan (2021). | +| [**pacea**](http://www.paleoanthro.org/media/journal/content/PA20110001_S01.zip)
2020-01-22
[`get_c14data("pacea")`](R/get_pacea.R) | PACEA Geo-Referenced Radiocarbon Database for the late Middle Paleolithic, Upper Paleolithic, and initial Holocene in Europe by [Francesco D'Errico, William E. Banks, Marian Vanhaeren, Véronique Laroulandie and Mathieu Langlais](http://www.paleoanthro.org/media/journal/content/PA20110001.pdf) (2011).. | +| [**palmisano**](https://dx.doi.org/10.14324/000.ds.1575442)
2017-09-23
[`get_c14data("palmisano")`](R/get_palmisano.R) | Regional Demographic Trends and Settlement Patterns in Central Italy: Archaeological Sites and Radiocarbon Dates by [Alessio Palmisano, Andrew Bevan and Stephen Shennan](https://openarchaeologydata.metajnl.com/articles/10.5334/joad.43/) (2018). | +| [**p3k14c**](https://github.com/people3k)
2021-08-03 (1.0.0)
[`get_c14data("p3k14c")`](R/get_p3k14c.R) | p3k14c: A synthetic global database of archaeological radiocarbon dates by [Darcy Bird, Lux Miranda, Marc Vander Linden, Robinson, Erick, R. Kyle Bocinsky, Chris Nicholson, José M. Capriles, Judson Byrd Finley, Eugenia M. Gayo, Adolfo Gil, Jade d’Alpoim Guedes, Julie A. Hoggarth, Andrea Kay, Emma Loftus, Umberto Lombardo, Madeline Mackie, Alessio Palmisano, Steinar Solheim, Robert L. Kelly, and Jacob Freeman](https://doi.org/10.1038/s41597-022-01118-7) (2022). c14bazAAR only features the ["scrubbed and fuzzed" dataset](https://core.tdar.org/dataset/459172/p3k14c-scrubbed) as included in the [p3k14c package](https://github.com/people3k/p3k14c). | +| [**radon**](https://radon.ufg.uni-kiel.de/)
latest
[`get_c14data("radon")`](R/get_radon.R) | Central European and Scandinavian database of 14C dates for the Neolithic and Early Bronze Age by [Dirk Raetzel-Fabian, Martin Furholt, Martin Hinz, Johannes Müller, Christoph Rinne, Karl-Göran Sjögren und Hans-Peter Wotzka](https://www.jna.uni-kiel.de/index.php/jna/article/view/65). | +| [**radonb**](https://radon-b.ufg.uni-kiel.de/)
latest
[`get_c14data("radonb")`](R/get_radonb.R) | Database for European 14C dates for the Bronze and Early Iron Age by Jutta Kneisel, Martin Hinz, Christoph Rinne. | +| [**rxpand**](https://github.com/jgregoriods/rxpand)
2020-10-20
[`get_c14data("rxpand")`](R/get_rxpand.R) | Radiocarbon dates for the spread of farming and ceramics in tropical South America by Jonas Gregorio de Souza. | +| [**sard**](https://github.com/emmaloftus/Southern-African-Radiocarbon-Database)
2021-03-01
[`get_c14data("sard")`](R/get_sard.R) | Southern-African-Radiocarbon-Database by [Emma Loftus, Peter J. Mitchell & Christopher Bronk Ramsey](https://www.cambridge.org/core/journals/antiquity/article/abs/an-archaeological-radiocarbon-database-for-southern-africa/26FE99E995C4507015704D552CB0C196). | + +#### Deprecated databases + +These databases have been removed from c14bazAAR, because they are not openly online available any more: + +* [**context**](http://context-database.uni-koeln.de/): Collection of radiocarbon dates from sites in the Near East and neighboring regions (20.000 - 5.000 calBC) by Utz Böhner and Daniel Schyle. ### Contributing