GeographicLib: 地理计算库、地理坐标系转换
1、官网:
https://geographiclib.sourceforge.io/C++/doc/index.html
2、Git
https://github.com/geographiclib/geographiclib
3、Python版本安装方法
pip3 install geographiclib
4、Python应用举例
from geographiclib.geodesic import Geodesic
import math
geod = Geodesic.WGS84 # define the WGS84 ellipsoid
评论已关闭