def DirectLine(self, lat1, lon1, azi1, s12,
caps = GeodesicCapability.STANDARD |
GeodesicCapability.DISTANCE_IN):
"""Define a GeodesicLine object in terms of the direct geodesic
problem specified in terms of spherical arc length
:param lat1: latitude of the first point in degrees
:param lon1: longitude of the first point in degrees
:param azi1: azimuth at the first point in degrees
:param s12: the distance from the first point to the second in
meters
:param caps: the :ref:`capabilities <outmask>`
:return: a :class:`~geographiclib.geodesicline.GeodesicLine`
This function sets point 3 of the GeodesicLine to correspond to
point 2 of the direct geodesic problem. The default value of *caps*
is STANDARD | DISTANCE_IN, allowing direct geodesic problem to be
solved.
"""
return self._GenDirectLine(lat1, lon1, azi1, False, s12, caps)
geodesic.py 文件源码
python
阅读 21
收藏 0
点赞 0
评论 0
评论列表
文章目录