I am wondering if there is an easy way of detecting if the Django database used by a certain application is GIS capable? (and all the required softwares have been installed)
One way of doing this is to look at DATABASES / default / ENGINE:
django.contrib.gis.db.backends.postgis
v.s
django.db.backends.postgresql_psycopg2
But I am looking for something like:
from django.xzy.blabla.db.something import fomething
if something.HAS_GIS:
print "cool"