I have been trying to install GeoDjango for the first time following the instructions on: http://code.djangoproject.com/wiki/GeoDjangoInstall The install seems to go fine, but I get an error when running the test_gdal.run() test that is testing the closing of a polygon object (output included at end of message)
Here is my setup: --------------------------------- Ubuntu 7.10 GDAL - package libgdal1-1.4.0, version 1.4.1-6build1 (installed by synaptic) PostgreSQL 8.3 (installed by synaptic) PostGIS 1.2.1 (built with GEOS="3.0.0-CAPI-1.4.1" PROJ="Rel. 4.5.0, 22, Oct 2006") My PythonPath contains /usr/lib/ogdi which is where libgdal.so is located. In [7]: sys.path Out[7]: ['', '/home/terickson/eclipse_workspace/django_gis_test/django_gis_test', '/usr/lib/python25.zip', '/usr/lib/python2.5', '/usr/lib/python2.5/plat-linux2', '/usr/lib/python2.5/lib-tk', '/usr/lib/python2.5/lib-dynload', '/usr/local/lib/python2.5/site-packages', '/usr/lib/python2.5/site-packages', '/usr/lib/python2.5/site-packages/Numeric', '/usr/lib/python2.5/site-packages/PIL', '/home/terickson/eclipse_workspace/django_gis', '/usr/lib/ogdi', '/usr/lib/python2.5/site-packages/gst-0.10', '/var/lib/python-support/python2.5', '/usr/lib/python2.5/site-packages/gtk-2.0', '/var/lib/python-support/python2.5/gtk-2.0', '/var/lib/python-support/python2.5/IPython/Extensions', '/home/terickson/.ipython'] Any thoughts on what is causing the test to fail? - Tyler ------------------------------------------------------------------------ [EMAIL PROTECTED]:~/eclipse_workspace/django_gis_test/ django_gis_test$ python manage.py shell Python 2.5.1 (r251:54863, Mar 7 2008, 04:10:12) Type "copyright", "credits" or "license" for more information. IPython 0.8.1 -- An enhanced Interactive Python. ? -> Introduction to IPython's features. %magic -> Information about IPython's 'magic' % functions. help -> Python's own help system. object? -> Details about 'object'. ?object also works, ?? prints more. In [1]: from django.contrib.gis.gdal import HAS_GDAL In [2]: print HAS_GDAL True In [3]: from django.contrib.gis.tests import test_gdal In [4]: test_gdal.run() ....................... BEGIN - expecting IllegalArgumentException; safe to ignore. ERROR 1: IllegalArgumentException: points must form a closed linestring END - expecting IllegalArgumentException; safe to ignore. E..................... ====================================================================== ERROR: Testing closing Polygon objects. ---------------------------------------------------------------------- Traceback (most recent call last): File "/usr/lib/python2.5/site-packages/django/contrib/gis/tests/ test_gdal_geom.py", line 201, in test07b_closepolygons self.assertEqual(10, poly.point_count) # Two closing points should've been added File "/usr/lib/python2.5/site-packages/django/contrib/gis/gdal/ geometries.py", line 568, in point_count return sum([self[i].point_count for i in xrange(self.geom_count)]) File "/usr/lib/python2.5/site-packages/django/contrib/gis/gdal/ geometries.py", line 549, in __getitem__ return OGRGeometry(clone_geom(get_geom_ref(self._ptr, index)), self.srs) File "/usr/lib/python2.5/site-packages/django/contrib/gis/gdal/ geometries.py", line 131, in __init__ self.__class__ = GEO_CLASSES[self.geom_type.num] File "/usr/lib/python2.5/site-packages/django/contrib/gis/gdal/ geometries.py", line 204, in geom_type return OGRGeomType(get_geom_type(self._ptr)) File "/home/terickson/eclipse_workspace/django_gis/django/contrib/ gis/gdal/geomtype.py", line 24, in __init__ raise OGRException('Invalid OGR Integer Type: %d' % type_input) OGRException: Invalid OGR Integer Type: -2147483646 ---------------------------------------------------------------------- Ran 45 tests in 0.397s FAILED (errors=1) --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com 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 -~----------~----~----~----~------~----~------~--~---