Hi,
I've build up a small geodjango app. Using the admin-site to view the
records of my table gives me :
/usr/lib/libgeos_c.so: undefined symbol: GEOSGeomFromHEX_buf
my geos version is 3.0.0.RC4
my model is :
class commune(models.Model, models.GeoMixin):
depcom = models.CharField(maxlength=5, primary_key=True)
nom = models.CharField(maxlength=100)
dep = models.CharField(maxlength=3,db_index=True)
cheflieu = models.PositiveSmallIntegerField()
ct = models.CharField(maxlength=5)
ar = models.CharField(maxlength=4)
cdc = models.CharField(maxlength=1,null=True)
rang = models.CharField(maxlength=1,null=True)
depar = models.CharField(maxlength=4)
depct = models.CharField(maxlength=5)
pop1999 = models.IntegerField(null=True)
uu = models.CharField(maxlength=5,null=True)
rang_uu = models.CharField(maxlength=30,null=True)
the_geom = models.MultiPolygonField(srid=27572)
objects = models.GeoManager()
class Admin:
pass
any idea ?
Thanks
Guillaume
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---