I am reading a shp file in R but it contains Greek letters which I can not read
library(rgdal)
shpFile <- readOGR(dsn = getwd() , layer = "FileName")
shpFile$names
Gives as a result the following
# [1] \xc2\xe1\xf3\xe9\xeb\xdf\xf3\xe7\xf2 \xd3\xef\xf6\xdf\xe1\xf2
I tried to change the Locate and reopen with encoding UTF-8, which works pretty fine if you have excel files, but it didn't work.
I also tried:
shpFile <- readOGR(dsn = getwd() , layer = "FileName", encoding = "UTF-8")
Thank you for any hints or points in the right direction you can give!