Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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"
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.