考虑来自browser()
内的calcDistance
的此输出:
Called from: calcDistance(object = rst, xy = xy[[i]][j, ], effect.distance = effect.distance)
Browse[1]> ls.str()
effect.distance : num 236
object : Formal class 'RasterLayer' [package "raster"] with 12 slots
xy : Named num [1:2] -101.8 35.5
Browse[1]>
debugging in: xyValues(object = object, xy = xy, buffer = effect.distance)
debug: standardGeneric("xyValues")
Browse[2]> ls.str()
object : Formal class 'RasterLayer' [package "raster"] with 12 slots
xy : Named num [1:2] -101.8 35.5
功能如下:simulationRun> createDistRaster> xyValues
来自光栅包。
第一段代码显示存在三个对象:effect.distance
,object
,xy
。
在第二段中,我们通过调用debug(xyValues)进入xyValues。
在第三段中,我们可以看到effect.distance
缺失。
我的问题是:即使object
和xy
似乎被复制到xyValues
环境就好了,effect.distance
也没有。怎么能解释这个?
我的sessionInfo()
R version 2.11.1 (2010-05-31)
i386-pc-mingw32
locale:
[1] LC_COLLATE=Slovenian_Slovenia.1250 LC_CTYPE=Slovenian_Slovenia.1250
[3] LC_MONETARY=Slovenian_Slovenia.1250 LC_NUMERIC=C
[5] LC_TIME=Slovenian_Slovenia.1250
attached base packages:
[1] splines stats graphics grDevices utils datasets methods
[8] base
other attached packages:
[1] raster_1.3-11 foreach_1.3.0 codetools_0.2-2 iterators_1.0.3
[5] Hmisc_3.8-2 survival_2.35-8 spam_0.22-0 splancs_2.01-27
[9] sp_0.9-66 spatstat_1.20-2 deldir_0.0-12 mgcv_1.6-2
loaded via a namespace (and not attached):
[1] cluster_1.12.3 grid_2.11.1 lattice_0.18-8 Matrix_0.999375-39
[5] nlme_3.1-96 tools_2.11.1
答案 0 :(得分:2)
更新: 这个问题也在R邮件列表中讨论,结果证明在特定情况下解决传递的参数是一个错误/不一致。这是向R报告的。讨论可以在以下网址找到: Nabble
相当有趣的问题。当你检查
showMethods("xyValues",incl=T)
有两个重要的代码块。一个带有xy的签名向量,一个用于xy作为矩阵。由于您的对象是“RasterLayer”对象,因此您需要确保origin.point是一个矩阵。如果我们查看代码
,这实际上是违反直觉的object="Raster", xy="vector"
function (object, xy, ...)
{
if (length(xy) == 2) {
callGeneric(object, matrix(xy, ncol = 2), ...)
}
else {
stop("xy coordinates should be a two-column matrix or data.frame, or a vector of two numbers.")
}
}
所以这实际上只将xy参数转换为矩阵,并将所有其他参数传递给下一个泛型。下一个必须是这个:
object="RasterLayer", xy="matrix"
function (object, xy, ...)
{
.local <- function (object, xy, method = "simple", buffer = NULL,
fun = NULL, na.rm = TRUE)
{
if (dim(xy)[2] != 2) {
stop("xy has wrong dimensions; it should have 2 columns")
}
if (!is.null(buffer)) {
return(.xyvBuf(object, xy, buffer, fun, na.rm = na.rm))
}
if (method == "bilinear") {
return(.bilinearValue(object, xy))
}
else if (method == "simple") {
cells <- cellFromXY(object, xy)
return(.readCells(object, cells))
}
else {
stop("invalid method argument. Should be simple or bilinear.")
}
}
.local(object, xy, ...)
}
这个参数采用“缓冲区”。为什么在解析树中找不到参数的值,我不知道,但你可以尝试通过给出矩阵作为输入而不是向量来避免方法级联。
答案 1 :(得分:1)
buffer
参数通过...
参数传递。在调试模式下键入str(list(...))
。