Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am having problems with geographic queries with GeoDjango running on SpatiaLite on my development environment.

from django.contrib.gis.db import models

class Test(models.Model):
    poly = models.PolygonField()
    point = models.PointField()
    geom = models.GeometryField()
    objects = models.GeoManager()

Testing via shell:

>>> from geotest.models import Test
>>> from django.contrib.gis.geos import GEOSGeometry
>>> 
>>> point = GEOSGeometry("POINT(0 0)")
>>> point
<Point object at 0x105743490>
>>> poly = GEOSGeometry("POLYGON((0 0, 0 1, 1 1, 1 0, 0 0))")
>>> poly
<Polygon object at 0x105743370>
>>> 

With these definitions, lets try some basic geographic queries. First contains:

>>> Test.objects.filter(point__within=poly)
Assertion failed: (0), function appendGeometryTaggedText, file WKTWriter.cpp, line 228.
Abort trap

And the django shell dies. And with within:

>>> Test.objects.filter(poly__contains=point)
GEOS_ERROR: Geometry must be a Point or LineString
Traceback (most recent call last):
...
GEOSException: Error encountered checking Coordinate Sequence returned from GEOS C function "GEOSGeom_getCoordSeq_r".
>>> 

Other combinations also cause a variety of exceptions. I must be missing something obvious as these are very basic. Any ideas?

share|improve this question

1 Answer

Your requests seem to be correct.

Have you checked that you met all the requirements?

https://docs.djangoproject.com/en/1.4/ref/contrib/gis/install/#spatial-database

Have you properly initialized your spatialite database?

https://docs.djangoproject.com/en/dev/ref/contrib/gis/install/spatialite/#creating-a-spatial-database-for-spatialite

share|improve this answer
thanks for the reply. i dropped the existing database and started with a new one from scratch but i am getting the exact same errors :( – omat Oct 28 '12 at 8:18

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.