作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这个问题可能是an earlier unanswered one的副本。我仍然有问题。
我正在尝试使用邮政编码shapefile并出现以下错误:
tract <- readOGR(dsn = ".", layer = "cb_2013_us_zcta510_500k")
tract<-fortify(tract, region="GEOID10")
Error: isTRUE(gpclibPermitStatus()) is not TRUE
install.packages("gpclib")
Installing package into ‘C:/Users/Nick/Documents/R/win-library/3.2’
(as ‘lib’ is unspecified)
Package which is only available in source form, and may need compilation of C/C++/Fortran: ‘gpclib’
These will not be installed
最佳答案
您可以查看ggplot2 / R / fortify-spatial.r的Hadley的master文件。根据this外部链接,我的理解是第31–34行(当前形式)用于读取类似
# Union together all polygons that make up a region
try_require(c("gpclib", "maptools"))
unioned <- unionSpatialPolygons(cp, invert(polys))
library(rgdal)
library(maptools)
if (!require(gpclib)) install.packages("gpclib", type="source")
gpclibPermit()
rgeos
应该可以解决最新安装的问题。
关于r - 错误:isTRUE(gpclibPermitStatus())不是TRUE,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30790036/
这个问题可能是an earlier unanswered one的副本。我仍然有问题。 我正在尝试使用邮政编码shapefile并出现以下错误: tract <- readOGR(dsn = ".",
我正在尝试使用我下载的空间数据 here为了在ggplot2中制作 map 。 library(rgdal) library(ggplot2) library(rgeos) df <- readOGR
我是一名优秀的程序员,十分优秀!