bboxCheck(sampSurf)
bboxCheck()所属R语言包:sampSurf
Function to Check Spatial Bounding Boxes
函数来检查空间包围盒
译者:生物统计家园网 机器人LoveR
描述----------Description----------
A bbox is not a formal class, but is used often enough in package sampSurf that a little routine to check for a valid one is useful. It could have been made a class, but it was not in the more basic sp and raster packages, and so was not introduced here.
Abbox是不是一个正式的类,但经常使用足够的包sampSurf,一个小程序来检查一个有效的,是很有用的。它可以被一类,但它是在更基本的sp和raster包,所以这里不作介绍。
用法----------Usage----------
bboxCheck(bbox)
参数----------Arguments----------
参数:bbox
A matrix to be checked.
矩阵进行检查。
Details
详细信息----------Details----------
A valid bbox matrix is 2x2, all numeric, and has row names c('x','y') and column names c('min','max') in package sampSurf. A check is also made for minima-maxima extents in the correct sense.
有效的bbox的矩阵是2x2,所有的数字,和有行名c('x','y')和列名c('min','max')的包sampSurf。进行检查,也取得了极小极大值在正确的意识程度。
值----------Value----------
The function returns true if the matrix passes all the checks, otherwise it stops with an error.
该函数返回TRUE,如果矩阵通过了所有的检查,否则就停止了一个错误。
(作者)----------Author(s)----------
Jeffrey H. Gove
参见----------See Also----------
bbox
bbox
实例----------Examples----------
tract = Tract(c(x=20,y=20), cellSize=0.5)
bb = bbox(tract)
bboxCheck(bb)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|