I could load shp file in r:
setwd("something")
shp = readOGR(dsn = ".", layer = "shp_name")
Now, I want to convert that to a normal dataframe. What should I do?
I could load shp file in r:
setwd("something")
shp = readOGR(dsn = ".", layer = "shp_name")
Now, I want to convert that to a normal dataframe. What should I do?
I found the answer. It's just works like in general:
You don’t always have to complicate things...