我有以下模型。
class Location(models.Model):
name = models.CharField(max_length = 128, blank = True)
address =models.CharField(max_length = 200, blank= True)
latitude = models.DecimalField(max_digits=6, decimal_places=3)
longitude = models.DecimalField(max_digits=6, decimal_places=3)
def __unicode__(self):
return self.name
如果我当前的纬度和经度是:
current_lat = 43.648
current_long = 79.404
我做了一些研究并遇到了计算两个位置坐标之间距离的Haversine Equation 。下面是我找到的等式:
import math
def distance(origin, destination):
lat1, lon1 = origin
lat2, lon2 = destination
radius = 6371 # km
dlat = math.radians(lat2-lat1)
dlon = math.radians(lon2-lon1)
a = math.sin(dlat/2) * math.sin(dlat/2) + math.cos(math.radians(lat1)) \
* math.cos(math.radians(lat2)) * math.sin(dlon/2) * math.sin(dlon/2)
c = 2 * math.atan2(math.sqrt(a), math.sqrt(1-a))
d = radius * c
return d
我想返回 10 公里半径内的所有 Location 对象,我该如何过滤它,使其只返回 10 公里半径内的所有 Location 对象?
LocationsNearMe = Location.objects.filter(#This is where I am stuck)
无论如何我可以在过滤中实现Haversine方程,以便它只返回10公里半径内的位置对象?
我正在寻找一个非常详细的答案。感谢帮助。