plotGridTransformation(vec2dtransf)
plotGridTransformation()所属R语言包:vec2dtransf
Plot grid transformation
图电网改造
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Plots a grid transformed to visualize the effects of the
图解一个网格转化为可视化的效果的
用法----------Usage----------
plotGridTransformation(object, bbox, numberOfPoints)
参数----------Arguments----------
参数:object
Object of the class SimilarityTransformation or AffineTransformation
对象之类的SimilarityTransformation的或AffineTransformation
参数:bbox
An SP bbox object, i.e. a 2x2 matrix with coordinates
SP bbox的对象,即一个2x2的矩阵坐标
参数:numberOfPoints
Number of points to represent the grid, perfect squares are recommended.
的点的数量来表示网格,完美的正方形建议。
Details
详细信息----------Details----------
The grid is made out of points over the extent defined by bbox. If numberOfPoints has not an integer square root the grid will contain less points.
网格点范围内的BBOX。 ,如果numberOfPoints还没有一个整数平方根电网将包含较少的点。
The grid is transformed using the transformation parameters and displayed over the source grid to see the effects of the transformation.
网格转化使用的变换参数,并显示在源网格看到效果的变换。
The source grid is drawn in red whereas the transformed one is green.
源网格为红色,而转化为绿色。
This code is based on "Case Study: Fixing Bad TIGER Line data with R and PostGIS" (See References).
此代码是基于“案例研究:固定TIGER线差与R和PostGIS的数据”(请参阅参考资料)。
(作者)----------Author(s)----------
German Carrillo
参考文献----------References----------
with R and PostGIS. <URL: http://casoilresource.lawr.ucdavis.edu/drupal/node/433>
参见----------See Also----------
applyTransformation
applyTransformation
实例----------Examples----------
# From the sp examples:[从SP例子:]
x <- c(1,1,1,2,2,2,3,3,3)
y <- c(1,2,3,1,2,3,1,2,3)
xy <- cbind(x,y)
S <- SpatialPoints(xy)
st=SimilarityTransformation(parameters=c(1,0,0.2,-0.2))
plotGridTransformation(st, bbox(S), 25)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|