作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用ubuntu 18.04,以下代码生成错误
library(sf)
library(tmap)
library(dplyr)
library(raster)
#sudo apt install libproj-dev
#devtools::install_github("robinlovelace/geocompr")
library(spDataLarge)
if(!file.exists("e.tif"))
download.file("https://github.com/geocompr/geocompkg/releases/download/0.1/e.tif",
"e.tif")
elev = raster("e.tif")
urban = spData::urban_agglomerations %>%
filter(year == 2030) %>%
dplyr::select(population_millions)
summary(urban)
tm_shape(elev) +
tm_raster(breaks = c(-10000, 0, 10, 50, 100, 10000)) +
tm_shape(urban) +
tm_dots(size = "population_millions", scale = 0.5)
Error in CPL_transform(x, crs, aoi, pipeline, reverse) :
OGRCreateCoordinateTransformation() returned NULL: PROJ available?
In addition: Warning message:
In CPL_transform(x, crs, aoi, pipeline, reverse) :
GDAL Error 1: No PROJ.4 translation for source SRS, coordinate transformation initialization has failed.
sudo apt-get install proj-bin
proj-bin is already the newest version (5.2.0-1~bionic0).
最佳答案
感谢sf
的开发人员,我现在知道了解决方案(和问题):
See the github issue here。
回顾:
st_transform
,则无法正确读取投影信息(至少在Ubuntu 18附带的版本中-也是我遇到这个问题的地方)。 st_crs(data) <- 4326 # or whatever projection your data is in
st_crs(data$areacolumn) <- 4326
关于r - CPL_transform(x,crs,aoi,管道,反向)中的错误: OGRCreateCoordinateTransformation() returned NULL: PROJ available?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61286108/
我正在使用ubuntu 18.04,以下代码生成错误 library(sf) library(tmap) library(dplyr) library(raster) #sudo apt instal
我是一名优秀的程序员,十分优秀!