0
votes
0answers
30 views

How to tell if Django Database is GIS capable

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 ...
1
vote
1answer
155 views

django admin to edit foreign keys inline

Is there a way to make 'GeoData' display inline in admin for 'Shop' and 'Park' objects? (One Shop/Park can contain several locations) # Location data class GeoData(models.Model): lat = ...
0
votes
0answers
75 views

GeoDjango - How do I find out if my database engine is spatially enabled?

Is there any way to find out if I my database can handle spatial models, without specifying some arbitrary list of backends, i.e. if settings.DATABASES[using]['ENGINE'] in ...
0
votes
1answer
158 views

GeoDjango distance query weighted by rating

I am using GeoDjango/PostGIS and have a model called Business that has a physical location and a rating. I would like to run a query to find 'nearest' highly rated businesses. How do I do this? To ...
1
vote
1answer
182 views

Using GeoDjango model as an abstract class

I'm playing with GeoDjango and have some doubts. I'll really appreciate any comment and suggestion. This is my problem. First, I've defined this (abstract) class: from django.contrib.gis.db import ...
0
votes
1answer
131 views

How can I create a model with compound foreign key?

anybody knows on how to create a model with compound foreign key to another model. e.g. UserInfo: userId, password, key, ... GeoInfo: id, userId, password, storeName, ... In the above sample ...
1
vote
1answer
301 views

django - multiple queries into one

I want to find the Records with a certain tag within 100 mile radius. I have two queries that work independently (see below) but I don't know how to put them together. Also Records model has a ...
3
votes
1answer
632 views

Custom latitude/longitude form field in Django

One of my models has latitude and longitude fields which are stored in the database as floating point numbers. I like to keep it this way, because it allows me to work with them most efficiently. I'd ...
3
votes
2answers
290 views

GeoDjango project missing fields from database schema

I've created a Django project, using a PostGIS backend, which all seems well as far as I can tell. I've now created an app in this project as follows: from django.contrib.gis.db import models class ...
1
vote
1answer
311 views

GeoDjango distance query for a ForeignKey Relationship

I have the following models (simplified) from django.contrib.gis.db import models as geomodels modelB (geomodels.Model): objects = geomodels.GeoManager() modelA (geomodels.Model): point = ...
0
votes
1answer
210 views

Model Manager filtering on Boolean causing IntegrityError

I am using a Manager on a model based on a Boolean field to filter the objects displayed on the site while showing all objects in the admin unfiltered. The idea is that user's are submitting Locations ...
2
votes
2answers
267 views

ManyToManyField using Through and blank=True still required in admin interface

My model (partial code): class Observation(models.Model): date = models.DateField() geom = models.PointField() values = models.ManyToManyField(Label, through='Value', null=True, ...
1
vote
3answers
547 views

Problem getting started with GeoDjango

As soon as I add "from django.contrib.gis.db import models" instead of "from django.db import models", Django stops recognizing the app and gives this error: Error: App with label location could not ...