autokrige和proj4string

时间:2012-08-29 21:52:43

标签: r spatial-interpolation automap

我正在使用autokrige包中的R函数automap,但是我遇到了错误,我不知道如何解决它。你有任何提示吗?

谢谢!

sp.poidf <- SpatialPointsDataFrame(sp.poi,thresh.df)
proj4string(sp.poidf) <- CRS("+proj=longlat +datum=WGS84")
pro.df=spTransform(sp.poidf, CRS("+proj=merc +zone=32s +datum=WGS84"))
sp.new <- SpatialPoints(new.poi)
proj4string(sp.new) <- CRS("+proj=longlat +datum=WGS84")
pro.new <- spTransform(sp.new, CRS("+proj=merc +zone=32s +datum=WGS84"))
mykri <- autoKrige(mythresh~1,pro.df,newdata=pro.new)

Error in function (classes, fdef, mtable)  : 
unable to find an inherited method for function "proj4string", for signature "NULL"

1 个答案:

答案 0 :(得分:5)

以下代码重现了您的问题:

require(automap)
require(rgdal)
loadMeuse()

proj4string(meuse) = CRS("+init=epsg:28992")
proj4string(meuse.grid) = CRS("+init=epsg:28992")
meuse = spTransform(meuse, CRS("+proj=merc +zone=32s +datum=WGS84"))
# Note that meuse.grid no longer is a grid due to the reprojection
meuse.grid = spTransform(meuse.grid, CRS("+proj=merc +zone=32s +datum=WGS84"))

kr = autoKrige(zinc~1, meuse, newdata = meuse.grid)
Error in function (classes, fdef, mtable)  : 
  unable to find an inherited method for function "proj4string", for signature "NULL"

问题是您使用newdata =,而您应该使用new_data =(请注意下划线)。以下代码运行正常:

kr = autoKrige(zinc~1, meuse, new_data = meuse.grid)

autoKrige的文档显示了这一点,但krige(来自gstat)使用newdata,因此我理解这种混淆。

出现问题的是newdata =无法识别autoKrige,并将其放入参数列表的...部分。当autoKrige调用krige时,new_data提供的autoKrigenewdata提供的...之间存在冲突。为了防止其他用户得到相当模糊的错误消息,我添加了一个检查自动化。错误的代码现在导致异常:

> kr = autoKrige(zinc~1, meuse, newdata = meuse.grid)
Error in autoKrige(zinc ~ 1, meuse, newdata = meuse.grid) : 
  The argument name for the prediction object is not 'newdata', but 'new_data'.