tripTransform(trip)
tripTransform()所属R语言包:trip
Reproject trip objects.
重投影之旅对象。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Projection transformation based on CRS strings in rgdal
投影变换的基础上CRS在rgdal字符串
用法----------Usage----------
tripTransform(x, crs, ...)
参数----------Arguments----------
参数:x
trip object with projection metadata
投影之旅对象元数据
参数:crs
CRS object, or PROJ.4 string accepted by CRS
CRS对象,或PROJ.4串接受CRS
参数:...
Further arguments to spTransform
进一步的论据spTransform
值----------Value----------
trip object, with spatial coordinates reprojected
行程对象,空间坐标重投影
注意----------Note----------
this is basically a cheat as I don't want to Depends on rgdal for trip, but cannot figure out the proper way to define things such that Suggests is enough for spTransform methods on trips
这基本上是一个骗子,因为我不想取决于rgdal跳闸,但不能找出正确的方式来定义的东西,这表明就够了贸易有关的知识产权spTransform方法
(作者)----------Author(s)----------
Michael D. Sumner
参见----------See Also----------
spTransform
spTransform
实例----------Examples----------
d <- data.frame(x = 1:10, y = rnorm(10), tms = Sys.time() + 1:10, id = gl(2, 5))
coordinates(d) <- ~x+y
tr <- trip(d, c("tms", "id"))
proj4string(tr) <- CRS("+proj=laea +lon_0=146")
tripTransform(tr, "+proj=longlat")
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|