我有一个有趣的项目。
所以我有一个WEB API,它接收两个参数,经度和纬度,并且响应真或假是真实的,在中心(纬度,长度)和无线电X(比如10英里)的圆圈中有一些资源。
如果它的响应为真,我必须再次调用它,直到它响应为假。
如果它的反应是假的我不必再打电话
当我弄错时,我必须改变(纬度,长度),所以我在不同于前一个区域的其他区域搜索那些资源,直到我覆盖一个国家的所有领土。 我想用python自动化它以覆盖例如所有美国领土。我该怎么办?
我想从圣地亚哥(美国左下角)开始,一直到西雅图或类似的东西。但是,我怎么知道美国领土的分界线(纬度和经度)。
我不知道我是否确实正确地解释了我想做什么。如果没有,请告诉我,我会做得更好。
谢谢
答案 0 :(得分:3)
您可以使用geopy
第三方模块上提供的vincenty距离功能。您必须使用pypi
从pip install geopy
安装地理位置。
以下是您将如何编写代码的示例:
from geopy.distance import vincenty
this_country = (latitude, longitude)
radius = 10 # 10 miles
while radius >= 0:
other_country_within_circle_found = False
# other_countries is a list of tuples which are lat & long
# positions of other country eg. (-12.3456, 78.91011)
for other_country in other_countries:
# note: other_country = (latitude, longitude)
if other_country == this_country:
continue # skip if other country is the same as this country.
distance = vincenty(this_country, other_country).miles
if distance <= radius:
other_country_within_circle_found = True
break
if not other_country_within_circle_found:
# the circle of this radius, have no other countries inside it.
break
radius -= 1 # reduce the circle radius by 1 mile.
有关详细信息,请参阅geopy文档:https://geopy.readthedocs.org/en/1.10.0/#module-geopy.distance