trackDistance(trip)
trackDistance()所属R语言包:trip
Determine distance along a track
确定沿轨道的距离
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Calculate the distance between subsequent 2-D coordinates using Euclidean or Great Circle distance (WGS84 ellipsoid) methods.
计算随后的2-D坐标采用欧氏或大圆距离(WGS84椭球)方法之间的距离。
用法----------Usage----------
trackDistance(x1, y1, x2, y2, longlat = TRUE)
参数----------Arguments----------
参数:x1
matrix of 2-columns, with x/y coordinates OR a vector of x start coordinates
2列的矩阵,X / Y坐标或向量坐标x启动
参数:x2
vector of x end coordinates, if x1 is not a matrix
矢量坐标的X端,如果x1是不是矩阵
参数:y1
vector of y start coordinates, if x1 is not a matrix
矢量y的开始坐标,如果x1是不是矩阵
参数:y2
vector of y end coordinates, if x1 is not a matrix
矢量的Y端坐标,如果x1是不是矩阵
参数:longlat
if FALSE, Euclidean distance, if TRUE Great Circle distance
如果为FALSE,欧氏距离,如果真正的大圆距离
Details
详细信息----------Details----------
trackDistance calls source code identical to sp's spDistN when longlat is TRUE.
trackDistance调用相同的源代码,SP的spDistN longlat是TRUE。
This originally used spDistsN1 but now implements the sp gcdist source directly in R.
这原本是用来spDistsN1但现在实现了的SP gcdist源直接R.
值----------Value----------
Vector of distances between coordinates.
向量的坐标之间的距离。
参考文献----------References----------
Original source taken from sp package.
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|