我正在使用 GeoDjango 搜索一堆不同类型的位置。例如,House 和 Appartment 模型都是 Location 的子类。
使用下面的子类化查询集,我可以执行 Location.objects.all() 之类的操作并将其返回给我[<House: myhouse>, <House: yourhouse>, <Appartment: myappartment>]
,这是我的愿望。
但是,我也想确定到每个位置的距离。通常,如果没有子类化查询集,图表 2 中的代码会为我返回从给定点到每个位置的距离......[ (<Location: Location object>, Distance(m=866.092847284))]
但是,如果我尝试使用子类化查询集查找距离,则会收到错误消息,例如:
AttributeError:“房子”对象没有属性“距离”
你知道我怎样才能保留返回子类对象查询集的能力,但在子类对象上有可用的距离属性吗?非常感谢任何建议。
图表 1:
class SubclassingQuerySet(models.query.GeoQuerySet):
def __getitem__(self, k):
result = super(SubclassingQuerySet, self).__getitem__(k)
if isinstance(result, models.Model) :
return result.as_leaf_class()
else :
return result
def __iter__(self):
for item in super(SubclassingQuerySet, self).__iter__():
yield item.as_leaf_class()
class LocationManager(models.GeoManager):
def get_query_set(self):
return SubclassingQuerySet(self.model)
class Location(models.Model):
content_type = models.ForeignKey(ContentType,editable=False,null=True)
objects = LocationManager()
class House(Location):
address = models.CharField(max_length=255, blank=True, null=True)
objects = LocationManager()
class Appartment(Location):
address = models.CharField(max_length=255, blank=True, null=True)
unit = models.CharField(max_length=255, blank=True, null=True)
objects = LocationManager()
图表 2:
from django.contrib.gis.measure import D
from django.contrib.gis.geos import fromstr
ref_pnt = fromstr('POINT(-87.627778 41.881944)')
location_objs = Location.objects.filter(
point__distance_lte=(ref_pnt, D(m=1000)
)).distance(ref_pnt).order_by('distance')
[ (l, l.distance) for l in location_objs.distance(ref_pnt) ] # <--- errors out here