GeoDjango intends to be a world-class geographic Web framework. Its goal is to make it as easy as possible to build GIS Web applications and harness the power of spatially enabled data.

learn more… | top users | synonyms

1
vote
1answer
725 views

Convert between coordinate systems with GeoDjango

I'm trying to add coordinate information to my database, adding django.contrib.gis support to my app. I'm writing a south data migration that takes the addresses from the database, and asks Google for ...
1
vote
2answers
239 views

GeoDjango: Speedup GEOS's Geometry operations

I'm developing a spatial ranking application using GeoDjango + PostGIS. Basically what it does is that it retrieves all geometries within the query bounding box, computes the similarity score using a ...
0
votes
1answer
140 views

An error occurred when transforming the geometry to the SRID of the geometry form field

I am working on geodjango , postgis and found a problem while saving a location from OSMGeoAdmin with open street map .The map showing accordingly but when i want to save a location it shows with red ...
1
vote
1answer
433 views

Geo Django mac OS X

I am trying to use Geodjango on mac os, i use postgresql and I installed GEOS but i got this error : dlopen(/usr/local/lib/libgeos_c.dylib, 6): no suitable image found. Did find: ...
0
votes
3answers
367 views

Integrating GeoDjango into existing Django project

I have a Django project with multiple apps. They all share a db with engine = django.db.backends.postgresql_psycopg2. Now I want some functionality of GeoDjango and decided I want to integrate it into ...
0
votes
4answers
792 views

Django : is GeoDjango a Good Fit for my Website?

I'm building a real estate site in Django and have a Home model, which stores various information including the address. Database backend is using MySQL. Want to create a Yelp like search. A search ...
1
vote
1answer
349 views

Building a geospatial querying REST api

I am trying to build an iOS app that takes the location of the user and then queries the backend for other users near him/her through a REST api.I have done some googling and my choices (given my ...
5
votes
2answers
186 views

Django and architecture : how to share a “referencial” database between projects?

I come today with a design/architecture question concerning Django. I work on several websites (hosted on the same server) which individually need geographical data (states, towns, etc.). Each ...
0
votes
1answer
322 views

Error when using GeoDjango with SpatiaLite on Ubuntu

I'm trying to get GeoDjango running on SpatiaLite on Ubuntu 11.04, and even with a very minimal setup, I'm hitting a strange error. Saving an instance of a model with geo-fields works, but loading it ...
1
vote
1answer
525 views

Google Maps location based on address in django

I am developing a web application in django and i want to build a feature where in a person can input a location name in a text box and the corresponding location is shown at the center of a google ...
1
vote
1answer
765 views

Installation error while trying to install a gis application using geodjango?

django.core.exceptions.ImproperlyConfigured: Cannot determine PostGIS version for database "geodatabase". GeoDjango requires at least PostGIS version 1.3. Was the database created from a spatial ...
1
vote
1answer
221 views

PostGIS - certain MultiPolygons cause “BOOM! Could not generate outside point!”

I'm trying to represent a rectangular area which crosses 180 degrees longitude. For more background see In PostGIS a polygon bigger than half the world is treated as it's opposite. Here's my test ...
0
votes
3answers
688 views

django - python

I am very new to django, python and ubuntu command line. I've been installing an application on PC's and this is my third one. Ive come across this error and am not sure where else to look. When I run ...
4
votes
1answer
216 views

In PostGIS a polygon bigger than half the world is treated as it's opposite

I'm using GeoDjango with PostGIS and trying to use a polygon to get records from a database which fall inside it. If I define a polygon which is bigger than half the area of the earth it assumes the ...
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 ...
0
votes
1answer
69 views

How should I set the source_srs parameter of LayerMapping() in GeoDjango for the 2000 Census data?

I've downloaded 2000 Census zipcode polygon data as a .shp file from http://www.census.gov/geo/www/cob/z52000.html#shp According to the GeoDjango docs, I need "an integer SRID, WKT or PROJ.4 string" ...
1
vote
1answer
163 views

Getting GeoDjango working on RHEL

I'm working through dependency problems while installing GeoDjango dependencies on RHEL. I would love step-by-step instructions from anyone who has done this before. I'm transferring a working app ...
1
vote
1answer
1k views

Google Maps Location and Area Fields for Django

I am looking for two Django model fields that are easy to use in admin and gives a Google maps interactive interface. LocationField Stores longitude and latitude, admin user clicks on a map to mark ...
0
votes
1answer
211 views

GeoDjango converting coordinate data to GeoManager model

is there any way converting decimal field to point field so geomaneger model? i have lots of data which include decimal field of x,y however i dont make any query with django... my problem is ...
0
votes
1answer
327 views

django point defination

my models : class Mod(models.model) name = models.CharField(max_length = 255) co_x = models.DecimalField(max_digits = 11, decimal_places = 8) co_y = models.DecimalField(max_digits = 11, ...
5
votes
3answers
1k views

How do I convert kilometres to degrees in Geodjango/GEOS?

I'm using the "buffer" method from the GEOS API to create a circle based on a point and a radius in GeoDjango, according to this answer: GeoDjango: How to create a circle based on point and radius As ...
2
votes
2answers
2k views

How To Install GEOS for GeoDjango on Windows

I'm starting a GeoDjango project using Python 2.5, Django 1.2, MySQL and Apache. The project will be uploaded to a Linux server but the development will be on a Windows. The problem is I just can't ...
0
votes
1answer
868 views

django - add a POINT in a PostgreSQL database using GeoDjango from decimal coordinates

I'm using PostGIS with django. I know how to add a "POINT" on PostgreSQL from decimal coordinates but how do I add it using GeoDjango? This is how I do it in PostgreSQL: UPDATE "my_table" SET ...
1
vote
1answer
308 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 = ...
5
votes
1answer
1k views

GeoDjango: How to create a circle based on point and radius

I have the following (simplified) Model: class Zone(gismodels.Model): name = gismodels.CharField() poly = gismodels.PolygonField() I want to create and save a polygon that represents a ...
1
vote
1answer
88 views

Telling django which db template to use

How can i tell django/geodjango which database template to use for creating test runner database?
1
vote
1answer
508 views

PostGIS+Geodjango+OpenLayer

I want create programm with map viewing. I use http://docs.djangoproject.com/en/dev/ref/contrib/gis/tutorial/. I upload data from .shp file to database now i want to display my gis data. For that i ...
0
votes
0answers
194 views

Django: Reverse lookup with spatial filter fails

I have two related models. MapUnitPolys has a 1:M relationship to DescriptionOfMapUnits. MapUnitPolys has a geometry field, DescriptionOfMapUnits does not. The query that I'm trying to accomplish is ...
1
vote
1answer
759 views

String or unicode input unrecognized as WKT EWKT, and HEXEWKB

It might be a easy problem but I don't seem to figure it out. I'm using GeoDjango and I have a latitude and a longitude that I converted into strings (see my_lat and my_long). For some reason it ...
2
votes
1answer
355 views

django admin inlines with GeoModelAdmin

I have a geodjango app that has the models Map and Point. I want to be able to add Points to the map using the admin interface. The admin interface uses a GeoModelAdmin, not the default ModelAdmin. If ...
4
votes
3answers
2k views

Django - how can I find the distance between two locations?

I have some users registered in my Django app and I want to simply be able to figure out the distance, geographically, between two users based on their zip code and then sort a list based on that. I ...
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
1answer
905 views

Django - determining if geographic coordinates are inside of an circle

Does django have anything that will look at a geographic coordinate (decimal lat/long) and determine if is inside a circle with a certain radius (let's say 100 Km)? I have certain type of data, each ...
3
votes
3answers
3k views

Problem creating PostGIS template database

I am trying to build a template geographic database for PostGIS (1.5) on Mac OS X Snow Leopard (10.6) for my GeoDjango application. I am following: ...
10
votes
3answers
2k views

geodjango using mysql

I have been working on an application using django and mysql, am trying now to work on the tutorial from this here http://docs.djangoproject.com/en/1.2/ref/contrib/gis/tutorial/ but it failed the ...
3
votes
2answers
309 views

Good tools for animated maps on a webpage

I want to present regions on a map inside a webpage. The region should be clickable and highlighted when hovered. I'am using django so I tend to orient towords matplotlib and other python tools. ...
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
1answer
238 views

Generic input element for new GeometryField in GeoDjango

I have GeoDjango and GeoAdmin up and working, no problems. I have a models that has a field geom = models.GeometryField() When I create a new record for that model in the admin interface, I get a ...
0
votes
2answers
736 views

django json serializer does not implement geojson

I am in the process of building a website on geodjango. On the front end I have a map on openlayers and I want to be able to fire ajax queries at some django url and get back geojson. The problem is ...
2
votes
1answer
1k views

Adding custom Feature attributes to ESRI Shapefile with Python

I am seeking a way to take an existing ESRI Shapefile that has a Feature set of 200 countries. Each country Feature has an attribute of "NAME." My objective is to create a Python script that adds an ...
1
vote
2answers
376 views

Installing GDAL via buildout on MacOSX

I'm trying to install GDAL via buildout on MacOSX. I have following config: [gdal] recipe = zc.recipe.cmmi url = http://download.osgeo.org/gdal/gdal-1.7.2.tar.gz extra_options = ...
3
votes
1answer
361 views

GeoDjango & MySQL: points can't be NULL, what other “empty” value should I use?

I have this Django model: from django.contrib.gis.db import models class Event(models.Model): address = models.TextField() point = models.PointField('coordinates', null=True, blank=True) ...
1
vote
2answers
189 views

geodjango access violation on vista 32 bit

Am having a real problem with the geodjango saving an entry. It produces a "Error: Access Violation reading 0x???????" The error does not indicate which file or folder it's trying to gain read/write ...
0
votes
2answers
895 views

Geodjango with Geonames

I would like to implement a location based search, based on the geonames zip code dump. For that, I want to use geodjango, but I have no idea how to implement the geonames data for lookup. I don't ...
2
votes
4answers
885 views

libgeos_c-1.dll can't be loaded by Python

I'm building my first GeoDjango project but I'm kinda desperate. I'v installed PostgreSQL 9 and PostGis 1.5 through one-click installer on Windows. So everthing is there. I set GEOS_LIBRARY_PATH to ...
1
vote
0answers
195 views

Geography mode distancies in GeoDjango - PostGIS 1.5

I store a PointField field named "coordinates" in a model. Then, I consult nearest instances from a given one, in the command interpreter, and print its name and the distance in km. [(p.name, ...
1
vote
2answers
2k views

geodjango syncdb errors. From geodjango tutorial

I have followed the geodjango installation(windows XP) and tutorial to perfection I am running django 1.2 When I get to syncdb and run I receive the following. raise ...
5
votes
3answers
1k views

Need performance on postGIS with GeoDjango

This is the first time I'm using GeoDjango with postGIS. After installation and some tests with everything running fine I am concerned about query performance when table rows will grow. I'm saving in ...
0
votes
1answer
569 views

How do I supply a British National Grid reference as WKT to GeoDjango?

I'm trying to insert some National Grid references into a Django PointField defined as follows: oscode = models.PointField(srid=27700, null=True, blank=True) However, I don't know how to format ...
0
votes
1answer
193 views

Unreadable data in Mysql from a GeoDjango PointField

I'm using GeoDjango with MySQL. I use a models.PointField(srid=4326) object, all works fine, the data is correctly saved and retrieved from the database, but when I do a select * from table from MySQL ...