GreatDist(RSEIS)
GreatDist()所属R语言包:RSEIS
Distance Along Great Circle Arc
沿大圆弧的距离
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Distance Along Great Circle Arc in degrees, kilometers
距离沿大圆弧度,公里
用法----------Usage----------
GreatDist(LON1, LAT1, LON2, LAT2, EARTHRAD= 6371)
参数----------Arguments----------
参数:LON1
Longitude, point1
经度,点1
参数:LAT1
Latitude, point1
纬度,点1
参数:LON2
Longitude, point2
经度,点2
参数:LAT2
Latitude, point2
纬度,POINT2
参数:EARTHRAD
optional earth radius, default = 6371
可选的地球半径,默认值= 6371
值----------Value----------
LIST:
LIST:
参数:drad
distance in radians
以弧度为单位的距离
参数:ddeg
distance in degrees
距离以度
参数:dkm
distance in kilometers
距离(公里)
(作者)----------Author(s)----------
Jonathan M. Lees <jonathan.lees@unc.edu>
实例----------Examples----------
########## get distance between London, England and Santiago, Chile[#########伦敦,英国和智利圣地亚哥之间的距离]
london = c(51.53333, -0.08333333)
santiago = c(-33.46667, -70.75)
GreatDist(london[2], london[1], santiago[2], santiago[1])
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|