I'm trying to run DJango with postgresql and postgis
for Django & postgresql I configures the setting.py
file as follows
DATABASES = {
'default': {
'ENGINE':'django.db.backends.postgresql_psycopg2',
'NAME': 'myDatabaseName',
'USER': 'postgres',
'PASSWORD': 'MyPassword',
'HOST': '',
'PORT': '5432',
}
}
but looking at the tutorial of Django geo example shows to use this
DATABASES = {
'default': {
'ENGINE': 'django.contrib.gis.db.backends.postgis',
'NAME': 'geodjango',
'USER': 'geo',
}
}
The Problem: I need both engines to work on the same database as I'm using postgresql with the postgis extension and I'd like to define a table with a geographic column like this:
MapLocation GEOGRAPHY(POINT)
and refer to it from Django like this maplocation = models.PointField()
obviously i need a mash of both engines with the rest as mentioned above in 'default' I just don't know how to make it work
In Django, you may define multiple database connections:
Reference: https://docs.djangoproject.com/en/dev/topics/db/multi-db/#defining-your-databases