ykkunkels / ESIR_portal

Shiny app for the ESM Item Repository
2 stars 0 forks source link

Non-Latin characters #36

Open BenjaminKunc opened 3 months ago

BenjaminKunc commented 3 months ago

After uploading items with original wording in languages using non-Latin characters, the downloaded csv file shows these characters incorrectly.

It should already be solved in the Development branch by adding "encoding = "UTF-8"" to the read.csv command.

Now it just needs to be tested and integrated.

ykkunkels commented 3 months ago

Good points. Do you know the if the required code snippet ("encoding = 'UTF-8'") is already in the main code?

BenjaminKunc commented 3 months ago

Now it should be pushed to the server code in the development branch:

"# Read ESIR item data from URL df <- read.csv(url("https://osf.io/5ba2c/download", ), sep = ",", stringsAsFactors = FALSE, encoding="UTF-8") # Fetches the "ESIR.csv" file from OSF "