destination(SDMTools)
destination()所属R语言包:SDMTools
Vincenty Direct Calculation of a Destination
Vincenty直接计算的目标
译者:生物统计家园网 机器人LoveR
描述----------Description----------
destination estimates the destination latitude and longitude given a starting latitude and longitude, a bearing and distance. <br> <br> For general information on Vincenty's formula, see e.g., http://en.wikipedia.org/wiki/Vincenty's_formulae. It states: <br> Vincenty's formulae are two related iterative methods used in geodesy to calculate the distance between two points on the surface of an spheroid, developed by Thaddeus Vincenty in 1975. They are based on the assumption that the figure of the Earth is an oblate spheroid, and hence are more accurate than methods such as great-circle distance which assume a spherical Earth. <br> <br> Note: this method assumes a locations are lat & lon given in WGS 84.
destination估计起始纬度和经度,轴承和距离的目的地的纬度和经度。参考<BR>的一般信息Vincenty的公式,见例如,http://en.wikipedia.org/wiki/Vincenty“s_formulae。它指出:参考Vincenty的公式是两个相关的迭代方法用于大地测量,计算,1975由赛迪斯 - Vincenty开发中的球体表面上两点之间的距离。它们是基于地球的数字是一个扁球体的假设,因此,更准确的方法相比,如大圆距离假设球形地球。 <br> <br>注意:此方法假定一个位置在WGS 84的纬度和经度。
用法----------Usage----------
destination(lat, lon, bearing, distance)
参数----------Arguments----------
参数:lat
a single value or vector of values representing latitude in decimal degrees from -90 to 90 degrees.
一个单一的值或矢量的值,从-90度到90度以十进制度表示纬度。
参数:lon
a single value or vector of values representing longitude in decimal degrees from -180 to 180 degrees.
一个单一的值或矢量的值表示十进制度从-180到180度经度。
参数:bearing
a single value or vector of values representing the bearings (directions) of interest ranging from 0 to 360 degrees.
一个单一的值或矢量的值表示范围从0到360度的轴承(方向)的利益。
参数:distance
a single value or vector of values representing the distances in metres to the destination.
一个单一的值或矢量的值,表示到目的地的距离,以米。
Details
详细信息----------Details----------
Typical useages are:<br>
典型的useages是:参考
a single start location, bearing and distance to give a single output location<br> –output would be a single destination location
一个起始位置,轴承和距离一个单一的输出位置<BR>的,输出将是一个单一的目标位置
a single start location with one or more bearings or distances to give multiple output locations<br> –output would be a destination locations for each combination of bearings and distances
一个单一的起始位置与一个或多个轴承或距离,得到多个输出位置<br>物理化学学报输出将是一个目标位置的每一种组合的轴承和距离
multiple start locations with a single bearing or distance<br> –output would be a destination locations representing the bearing and distance from each of the start locations
多个开始位置与一个单一的轴承或距离<br>物理化学学报输出将是一个代表的每一个的开始位置的方位和距离的目标位置
multiple start locations with multiple bearings or distances<br> –output would be a destination locations representing the combinations of bearings and distances from each of the start locations<br> – NOTE that the bearing and distance vectors must be of the same length of the input lat and long.
与多个轴承的多个开始位置或距离<br>物理化学学报输出将是一个目的地位置代表轴承和距离的组合,从每一个的开始位置<br>物理化学学报 - 注意轴承和距离向量必须是相同的长度输入纬度和术语的。
See examples for all possible usages.
所有可能的用法的例子。
值----------Value----------
Returns a data.frame with:
返回一个数据框:
参数:lon1
the original longitude
原来的经度
参数:lat1
the original latitude
原来的纬度
参数:bearing
the bearing used
所使用的轴承
参数:distance
the distance used
距离
参数:lon2
the destination longitude
目的地经度
参数:lat2
the destination latitude
目的地纬度
(作者)----------Author(s)----------
Jeremy VanDerWal <a href="mailto:jjvanderwal@gmail.com">jjvanderwal@gmail.com</a>
源----------Source----------
The source code here was modified from http://www.movable-type.co.uk/scripts/latlong-vincenty-direct.html.<br> <br> Destinations were validated against Geoscience Australia calculations (http://www.ga.gov.au/geodesy/datums/vincenty_direct.jsp).
这里的源代码进行了修改从http://www.movable-type.co.uk/scripts/latlong-vincenty-direct.html。<BR> <BR>目的地进行了验证对澳大利亚地球科学计算上(http://www .ga.gov.au /大地测量/基准/ vincenty_direct.jsp)。
参考文献----------References----------
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|