在Ubuntu上使用GeoDjango和SpatiaLite时出错

时间:2011-05-19 08:19:02

标签: python django geodjango spatialite

我正在尝试让GeoDjango在Ubuntu 11.04上运行SpatiaLite,即使设置很少,我也会遇到一个奇怪的错误。使用地理位置保存模型实例可以正常工作,但是再次加载它会失败并显示exception

Error encountered checking Geometry returned from GEOS C function "GEOSWKBReader_read_r".

我的settings.py

的相关部分
DATABASES = {
    'default': {
    'ENGINE': 'django.contrib.gis.db.backends.spatialite',
        'NAME': '/tmp/test.db',
    }
}

INSTALLED_APPS = (
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.sites',
    'django.contrib.messages',
    'django.contrib.admin',
    'django.contrib.gis',
    'testapp',
)

testapp.models

from django.contrib.gis.db import models

class TestModel(models.Model):
    name = models.CharField(max_length=10)
    location = models.PointField()

testapp.admin

from django.contrib.gis import admin

from testapp.models import TestModel

admin.site.register(TestModel, admin.OSMGeoAdmin)

/ edit:同样精确的代码在PostgreSQL / postgis上没有问题

1 个答案:

答案 0 :(得分:5)

好的,我自己发现了问题:我忘了使用models.GeoManager作为默认管理器。这解决了我的问题:

class TestModel(models.Model):
    name = models.CharField(max_length=10)
    location = models.PointField()

    objects = models.GeoManager()