我广泛使用 R 包 rgdal 和 rgeos(目前使用 R v3.2.2)。最近,在我的 ubuntu 机器(ubuntu v15.10)上,当我加载 rgdal 包时,我看到以下内容:
> library(rgdal)
Loading required package: sp
rgdal: version: 1.0-7, (SVN revision 559)
Geospatial Data Abstraction Library extensions to R successfully loaded
Loaded GDAL runtime: GDAL 1.11.1, released 2014/09/24
Path to GDAL shared files: /usr/local/share/gdal
Loaded PROJ.4 runtime: Rel. 4.9.1, 04 March 2015, [PJ_VERSION: 491]
Path to PROJ.4 shared files: (autodetected)
WARNING: no proj_defs.dat in PROJ.4 shared files
Linking to sp version: 1.2-1
我在最近的 r-sig-geo 帖子中看到这是一个已知问题,并且已经发布了 rgdal 包的更新来解决这个问题。然而,尽管重新安装了 rgdal 包,重新安装了 gdal 和 proj4 并使用以下内容:
sudo apt-get update && sudo apt-get install libgdal-dev libproj-dev
我看不出有什么区别。当我使用这些包的功能时,这个问题会产生数百条警告消息。
相比之下,在我的 Mac 上,如果我加载 rgdal 包,我会看到
> library(rgdal)
Loading required package: sp
rgdal: version: 1.0-7, (SVN revision 559)
Geospatial Data Abstraction Library extensions to R successfully loaded
Loaded GDAL runtime: GDAL 1.11.3, released 2015/09/16
Path to GDAL shared files: /usr/local/Cellar/gdal/1.11.3/share/gdal
Loaded PROJ.4 runtime: Rel. 4.9.2, 08 September 2015, [PJ_VERSION: 491]
Path to PROJ.4 shared files: (autodetected)
Linking to sp version: 1.2-0
因此,显然 gdal 和 proj.4 的更新并没有出现在我的 linux 机器上。
有人知道如何获取更新吗?
谢谢!