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()
何が間違っていると思いますか?