我必须开发一个应用程序,要求我找出一个地方的纬度和经度。我是通过python完成的,但是我的应用程序要求我对我通过C ++做的其余数据应用一些algortihm。所以对于这两个功能的链接,我使用python API for C但是它没有用。
这是纬度和经度的python代码
test.py
#!/usr/bin/env python
from pygeocoder import Geocoder
def myfunc(str)
results = Geocoder.geocode(str)
return (results[0].coordinates)
这里结果[0] .coordinates包含两个值,我必须在我的C ++程序中使用纬度和经度。
所以请帮忙。