我正在尝试设置一个GeoDjango应用程序来测试我正在使用的
an earlier problem.我设置了一个postgresql数据库,创建了一个新的Django项目和应用程序,但是当我尝试./manage.py syncdb我得到这个:
django.core.exceptions.ImproperlyConfigured: Cannot determine PostGIS version for database “django_geotest”. GeoDjango requires at least PostGIS version 1.3. Was the database created from a spatial database template?
我以前不了解GeoDjango的所有要求,并通过以下方式创建了django_geotest数据库:
$createdb -T template_postgis django_geotest
数据库看起来像是正确设置:
django_geotest=# SELECT PostGIS_full_version(); postgis_full_version ------------------------------------------------------------------------------------------------------- POSTGIS="1.5.3" GEOS="3.2.2-CAPI-1.6.2" PROJ="Rel. 4.7.1,23 September 2009" LIBXML="2.7.3" USE_STATS (1 row)
描述数据库,我得到这个:
django_geotest=# \d List of relations Schema | Name | Type | Owner --------+-------------------+-------+------- public | geography_columns | view | phil public | geometry_columns | table | phil public | spatial_ref_sys | table | phil (3 rows)
所以现在我被困在下一步要尝试…我对Postgresql及其模板等的了解并不是那么好.有任何想法吗?谢谢.