我正在尝试进行数据库查询,该查询为我提供了 20 个按距离排序的最近用户(最接近的用户)我正在执行以下操作
distance_mi = 100
origin = GEOSGeometry('SRID=4326;'+ 'POINT('+ str(user_profile.current_location.x)+' '+str(user_profile.current_location.y)+')')
close_users = UserProfile.objects.exclude(user = user).filter(current_location__distance_lte=(origin, D(mi=distance_mi))).distance(origin).order_by('-distance')[:20]
但这会返回 3 个用户(这是正确的),但第一个用户在 0 英里之外,第二个在 8 英里之外,第三个在 0 英里之外,因为我将 8 英里用户排除在最后。
我不确定我在这方面做错了什么。
此外,UserProfile
具有以下型号
class UserProfile(models.Model):
# This field is required.
user = models.OneToOneField(User)
# Other fields here
current_location = models.PointField(null = True)
seller_current_location = models.PointField(null = True)
objects = models.GeoManager()
def __unicode__(self):
return u'%s' % (self.user.get_full_name())