在R中上载US块组形状文件时出错

时间:2017-04-26 15:28:28

标签: r shapefile

我无法在R中上传US块组形状文件。文件名是“shape_file.shp”

它显示以下错误:

Error in getinfo.shape(filen) : Error opening SHP file
In addition: Warning message:
use rgdal::readOGR or sf::st_read

Error in ogrInfo(dsn = dsn, layer = layer, encoding = encoding, use_iconv = use_iconv,  : 
  Cannot open layer

请帮我解决这个问题。

1 个答案:

答案 0 :(得分:0)

require(rgdal)
your_object<- readOGR('path to file', 'the specific layer')

我使用此函数的大部分时间'the specific layer'是文件的实际名称,减去.shp

我希望这会有所帮助