Skip to content

Commit

Permalink
fixed an encoding issue #146
Browse files Browse the repository at this point in the history
  • Loading branch information
nevrome committed Aug 29, 2021
1 parent 6f62b82 commit 3bf7b06
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 8 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: c14bazAAR
Title: Download and Prepare C14 Dates from Different Source Databases
Description: Query different C14 date databases and apply basic data cleaning, merging and calibration steps. Currently available databases: 14cpalaeolithic, 14sea, adrac, agrichange, austarch, bda, calpal, caribbean, context, eubar, euroevol, irdd, jomon, katsianis, kiteeastafrica, medafricarbon, mesorad, nerd, pacea, palmisano, radon, radonb, rxpand.
Version: 2.4.1
Version: 2.4.2
Authors@R:
c(person(given = "Clemens",
family = "Schmid",
Expand Down
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 2.4.2

- fixed an encoding issue in `get_pacea`

# 2.4.1

- some tiny fixes
Expand Down
2 changes: 1 addition & 1 deletion R/get_pacea.R
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ get_pacea <- function(db_url = get_db_url("pacea")) {
db_raw <- data.table::fread(
db_path,
sep = "\t",
encoding = "UTF-8",
encoding = "Latin-1",
skip = 1,
colClasses = "character",
showProgress = FALSE
Expand Down
11 changes: 5 additions & 6 deletions codemeta.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,18 @@
],
"@type": "SoftwareSourceCode",
"identifier": "c14bazAAR",
"description": "Query different C14 date databases and apply basic data cleaning, merging and calibration steps. Currently available databases: 14cpalaeolithic, 14sea, adrac, austarch, bda, calpal, context, eubar, euroevol, irdd, jomon, katsianis, kiteeastafrica, medafricarbon, mesorad, nerd, pacea, palmisano, radon, radonb, rxpand.",
"description": "Query different C14 date databases and apply basic data cleaning, merging and calibration steps. Currently available databases: 14cpalaeolithic, 14sea, adrac, agrichange, austarch, bda, calpal, caribbean, context, eubar, euroevol, irdd, jomon, katsianis, kiteeastafrica, medafricarbon, mesorad, nerd, pacea, palmisano, radon, radonb, rxpand.",
"name": "c14bazAAR: Download and Prepare C14 Dates from Different Source Databases",
"codeRepository": "https://github.com/ropensci/c14bazAAR",
"issueTracker": "https://github.com/ropensci/c14bazAAR/issues",
"license": "https://spdx.org/licenses/GPL-2.0",
"version": "2.3.0",
"version": "2.4.2",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "R",
"url": "https://r-project.org"
},
"runtimePlatform": "R version 4.1.0 (2021-05-18)",
"runtimePlatform": "R version 4.1.1 (2021-08-10)",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
Expand Down Expand Up @@ -462,9 +462,8 @@
}
],
"releaseNotes": "https://github.com/ropensci/c14bazAAR/blob/master/NEWS.md",
"readme": "https://github.com/ropensci/c14bazAAR/blob/master/README.md",
"fileSize": "1433.21KB",
"contIntegration": ["https://travis-ci.org/ropensci/c14bazAAR", "https://codecov.io/github/ropensci/c14bazAAR?branch=master"],
"fileSize": "1078.152KB",
"contIntegration": ["https://github.com/ropensci/c14bazAAR/actions/workflows/check-release.yaml", "https://codecov.io/github/ropensci/c14bazAAR?branch=master"],
"keywords": [
"radiocarbon-dates",
"archaeology",
Expand Down

0 comments on commit 3bf7b06

Please sign in to comment.