私は geodjango を初めて使用します。次の設定があります。
DATABASES = {
"default" : {
'ENGINE': 'django.contrib.gis.db.backends.postgis', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
'NAME': 'dbname', # Or path to database file if using sqlite3.
'USER': 'django', # Not used with sqlite3.
'PASSWORD': 'somepass', # Not used with sqlite3.
'HOST': '127.0.0.1', # Set to empty string for localhost. Not used with sqlite3.
'PORT': '', # Set to empty string for default. Not used with sqlite3.
}
}
INSTALLED_APPS = (
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
'django.contrib.messages',
'django.contrib.staticfiles',
'django.contrib.gis',
'django.contrib.admin',
'django.contrib.admindocs',
'django.contrib.gis',
"app.core",
)
次のコマンドでデータベースを作成しました。
postgres@rewitaqia:~$ createdb -U postgres -T template_postgis -O django dbname
しかし、データベースを同期しようとすると、次のように表示されます。
django.core.exceptions.ImproperlyConfigured: Cannot determine PostGIS version for database "dbname". GeoDjango requires at least PostGIS version 1.3. Was the database created from a spatial database template?
また、psqlでこれを試すと、db tasがpostgisテンプレートから実際に作成されていないようです:
db_name=# select postgis_lib_version();
ERROR: no existe la función postgis_lib_version()
ŘÁDKA 1: select postgis_lib_version();
^
DOPORUČENÍ: Ninguna función coincide en el nombre y tipos de argumentos. Puede desear agregar conversión explícita de tipos.
とにかく読んでくれてありがとう。