在使用SpatiaLite的Django开发服务器上,我正在尝试进行基本的地理查询:
Location.objects.filter(geom__within=loc.geom)
这导致Segmentation error
并且服务器死亡。 loc
是Location
模型的一个实例:
from django.contrib.gis.db import models
class Location(models.Model):
geom = models.GeometryField()
objects = models.GeoManager()
您认为可能出错?