假设我有一个照片模型。在照片模型中,我的照片模型中有经度和纬度字段。
class Photo(models.Model):
photographer = models.ForeignKey(Photographer, related_name = 'shot_owner')
title = models.CharField(max_length=140, blank=True)
description = models.CharField(max_length, blank=True)
longitude = models.DecimalField(max_digits=16, decimal_places = 14, null=True, blank=True)
latitude = models.DecimalField(max_digits=16, decimal_places = 14, null=True, blank=True)
我使用 Django Tastypie 作为我的休息框架。假设用户决定他们希望查看 10 公里半径内的所有照片。怎么能做到这一点?下面是我的资源:
class PhotosNearMe(ModelResource):
photographer = fields.ForeignKey(PhotographerResource, 'photographer', full=True)
class Meta:
queryset = Photo.objects.all()
resource_name = 'photos-near-me'
fields = ['id', 'title', 'description', 'latitude','longitude','photographer']
authentication = BasicAuthentication()
authorization = DjangoAuthorization()
serializer = Serializer(formats=['json'])
include_resource_uri = False
filtering = {
'photographer' : ALL_WITH_RELATIONS,
}
def get_object_list(self, request):
return super(PhotosNearMe, self).get_object_list(request).filter(....)
这是我遇到麻烦的地方。正如我之前提到的,用户将能够向我发送他们的坐标,我可以保存它们。就像是:
lati = bundle.obj.latitude
longi = bundle.obj.longitude
稍后我可以使用 lat 和 long 过滤数据库中 10 公里半径内的所有图像。问题是,怎么做?我想按某种范围过滤吗?
编辑**
我发现了一些我可能会使用的东西,在给定坐标的某个范围内查找项目
无论如何我可以实现这个吗?