The error is because the dbf file extension is .DBF , not .DBF , so one way is to simply rename it.
And it is better to use the rgdal::readOGR to read the form file in R.
I have a form file in my /tmp folder to change it to your actual path so that it works.
require(rgdal) file.copy(from = "/tmp/LIMITE_DEPARTEMENT.DBF", to = "/tmp/LIMITE_DEPARTEMENT.dbf") file.remove("/tmp/LIMITE_DEPARTEMENT.DBF") depart <- readOGR(dsn = "/tmp", layer = "LIMITE_DEPARTEMENT") str(depart, max.level = 2) ## Formal class 'SpatialLinesDataFrame' [package "sp"] with 4 slots ## ..@ data :'data.frame': 330 obs. of 2 variables: ## ..@ lines :List of 330 ## .. .. [list output truncated] ## ..@ bbox : num [1:2, 1:2] 99226 6049647 1242375 7110524 ## .. ..- attr(*, "dimnames")=List of 2 ## ..@ proj4string:Formal class 'CRS' [package "sp"] with 1 slots
source share