bboxToPoly(sampSurf)
bboxToPoly()所属R语言包:sampSurf
Function to Convert a Valid "bbox" to a
函数来转换一个有效的“BBOX”的
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This converts a valid bbox, or object with a bbox specification in the sampSurf package, if available, into a spatial polygon object of class
这将有效的BBOX,或到空间多边形对象的类对象bbox规范sampSurf包,如果有的话,
用法----------Usage----------
bboxToPoly(object, ...)
参数----------Arguments----------
参数:object
Some object with a valid bbox slot from one of the classes in sampSurf, or a valid bbox matrix.
一些有效的bbox sampSurf,或有效的BBOX矩阵中的类从一个插槽的对象。
参数:...
Black hole for everything else.
黑洞的一切。
Details
详细信息----------Details----------
One can plot the result of this function to quickly get an idea of the overall spatial extent of an object. In many cases the result from this object is the same as that returned by perimeter, but not always; e.g., see the example below.
我们可以画出这个函数的结果,快速地获得一个想法的整体空间范围内的对象。在许多情况下,从该对象的结果是返回perimeter,但并不总是相同的,例如,看下面的例子。
值----------Value----------
A "SpatialPolygons" object that can be plotted directly.
A“SpatialPolygons”对象,可以直接绘制。
(作者)----------Author(s)----------
Jeffrey H. Gove
实例----------Examples----------
cp = circularPlot(10, center=c(x=20,y=20))
cp.perim = perimeter(cp)
plot(cp.perim, axes=TRUE, lty='dashed') #the perimeter of the plot[周边的图]
plot(bboxToPoly(cp.perim), add=TRUE, border='blue') #the bounding box[边界框]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|