Tagged Questions

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

9
votes
1answer
631 views

Error Saving geodjango PointField

I have a geo model with a PointField property. Everything works perfectly locally, but when I try to save an instance on the server, I get the following error: django.db.utils.DatabaseError: invalid ...
8
votes
4answers
9k views

How to display data using openlayers with OpenStreetMap in geodjango?

I've got geodjango running using openlayers and OpenStreetMaps with the admin app. Now I want to write some views to display the data. Basically, I just want to add a list of points (seen in the ...
7
votes
4answers
5k views

How do you know what SRID to use for a shp file?

I am trying to put a SHP file into my PostGIS database, the the data is just a little off. I think this is because I am using the wrong SRID. The contents of the PRJ file are as follows: ...
5
votes
2answers
111 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 ...
5
votes
1answer
516 views

GeoDjango, difference between dwithin and distance_lt?

Using geoDjango, what is the difference between myObj.objects.filter(point__dwithin(...etc.)) and myObj.objects.filter(point__distance_lt(...etc.)) ? Are they the same thing, or are they ...
5
votes
2answers
681 views

Using Python simplejson to return pregenerated json

I have a GeoDjango model object that I want't to serialize to json. I do this in my view: lat = float(request.GET.get('lat')) lng = float(request.GET.get('lng')) a = ...
5
votes
4answers
1k views

Does anyone know of any good open source Geodjango apps to dig through?

I'm looking to build a small GIS in my spare time and have been digging into Geodjango. I've been trying to find examples of open source Geodjango projects to look through, but I have had little ...
4
votes
1answer
171 views

GeoDjango distance queries returning incorrect results

I just got GeoDjango up and running on my development machine. Problem is that I can't get a distance query to work correctly. No matter what SRID I use, the distance results are totally off. Here's ...
4
votes
3answers
437 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 ...
4
votes
2answers
557 views

Split or save a subset of a ESRI Shape SHP file to a new file?

I'm working with shape files in GeoDjango. Right now I'm trying to write a test for code that loads in a shape file and saves it to a database. The shape file currently has a feature count of ...
4
votes
3answers
802 views

Should I use GeoDjango for mapping a floor plan?

I want to create a floor plan map of an interior space that has clickable regions. My first thought was to investigate GeoDjango since its the mapping app for Django. But considering the ...
3
votes
4answers
203 views

How can I query the nearest record in a given coordinates(latitude and longitude of string type)?

I am using GeoDjango with PostGIS. Then I am into trouble on how to get the nearest record from the given coordinates from my postgres db table.
3
votes
1answer
93 views

What is ST in PostGIS?

Almost all the functions in PostGIS start with ST. e.g. ST_Distance_Sphere, ST_GeomFromText, ST_Intersection, etc. What does ST mean? ...
3
votes
3answers
326 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 ...
3
votes
1answer
553 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 ...
3
votes
3answers
925 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 ...
3
votes
2answers
336 views

django, location based searches

Excuse my ignorance, I am not even sure of the correct term for this. What I want to do is search by city and state or zip code in my django application and also include results within certain ...
2
votes
1answer
48 views

what is the python(2.5.2)'s logging mechanism? is there log4j look a like library or standard class of python/geodjango will do?

I am planning to add logging mechanism in my python&geodjango web service. Is there log4j look a like logging mechanism in python/geodjango? I am looking for log4j's dailyrollingfileappender ...
2
votes
2answers
52 views

Is there a PostGIS IDE to execute postgres gis spatial functions?

Is there a PostGIS IDE to execute postgres gis spatial functions? samples sql SELECT ST_Distance(gg1, gg2) As spheroid_dist, ST_Distance(gg1, gg2, false) As sphere_dist FROM (SELECT ...
2
votes
1answer
48 views

How to measure width in KMs with geos

I've got a bounding box, and I want to adjust it so it's not less than, say, 2km across. I get the bounding box from google's geolocate service, and then I search for stuff that's inside that in my ...
2
votes
1answer
90 views

Do I need specific configuration for Spatialite with GeoDjango?

According to https://docs.djangoproject.com/en/1.3/ref/contrib/gis/db-api/, Spatialite supports GeoQuerySet.distance(). However, having imported an area list (MultiPolygon as mpoly attribute), I'm ...
2
votes
1answer
110 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 ...
2
votes
1answer
500 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 ...
2
votes
3answers
1k 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: ...
2
votes
2answers
163 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
3answers
464 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 ...
2
votes
1answer
745 views

How to efficiently query large multi-polygons with PostGIS

I am working with radio maps that seem to be too fragmented to query efficiently. The response time is 20-40 seconds when I ask if a single point is within the multipolygon (I have tested ...
2
votes
1answer
1k views

GeoDjango setup: ERROR: could not access file “$libdir/postgis-1.5”: No such file or directory

Update: thought I'd solved it, but I hadn't... please see below. I'm installing GeoDjango on Mac OSX. I've followed the Mac install instructions, which all went smoothly, and am now creating a ...
2
votes
1answer
1k views

Rendering spatial data of GeoQuerySet in a custom view on GeoDjango

I have just started my first project on GeoDjango. As a matter of fact, with GeoDjango powered Admin application we all have a great possibility to view/edit spatial data, associated with the current ...
2
votes
1answer
264 views

Break up a polygon into smaller ones

I am working with geodjango and I want to breakup a 2D Rectangular Polygon into smaller ones. My input is a big rectangle and I want to subdivide it in smaller rectangles. The sum of the smaller ...
2
votes
2answers
1k views

Getting GeoDjango + Spatialite running on Windows

I continue to have problems setting up a GeoDjango installation that uses Spatialite as a backend on a Windows machine. I used the GeoDjango installer and downloaded the precompiled libraries from ...
2
votes
1answer
707 views

retrieve bounding box of a geodjango multipolygon object

How can I get the bounding box of a MultiPolygon object in geodjango? Can't find anything in the API http://geodjango.org/docs/geos.html ...
1
vote
1answer
43 views

First steps with PostgreSQL + Django + South

Hi Stackoverflow people, In the past, I always developed my Django projects locally with sqlite as database platform. Now, I wanted to move to PostgreSQL to take advantage of GIS features, but the ...
1
vote
1answer
43 views

vector projection in OpenLayers

I am building a GIS app in geoDjango with OpenLayers and using data from PostGIS in projection EPSG:3908. The base layer is OSM. When I add vector data I got it rendered near Brazil instead of Bosnia. ...
1
vote
0answers
27 views

Finding min distance between several points, or merging querysets with extra selects

I have a bunch of objects with location attributes (PointFields). I have two special locations, and I want to know which of those locations each object is closest to and how far that is. That is, I'd ...
1
vote
1answer
28 views

geoDjango - ImportError: cannot import name SpatialBackend

Im trying to make an app with geoDjango but I'm actually having some problem to put it running. When I excecute the "python manage.py syncdb" command, I have the following error: File ...
1
vote
2answers
124 views

Change LC_CTYPE for PostgreSQL and PostGIS use

So I'm walking through the GeoDjango tutorial and I'm stuck on this error message: postgres@lucid32:~$ createdb -E UTF8 template_postgis createdb: database creation failed: ERROR: encoding UTF8 does ...
1
vote
4answers
224 views

MySQL vs PostgreSQL Concerns w/ GIS & Speed

I'm aware there are a few threads out there addressing this issue, but I'm wondering if anything has changed since those have been published. I'm looking to build a GIS webapp, and people are all ...
1
vote
2answers
66 views

how to read japanese characters from request?

I have the below url which is already encoded to pass japanese characters into browser's URL address bar. ...
1
vote
1answer
34 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 ...
1
vote
2answers
103 views

get Well Known Text from lat long

I can get easily a lat,long pair from the Google Maps API: from googlemaps import GoogleMaps gmaps = GoogleMaps(GOOGLEMAPS_API_KEY) gmaps.address_to_latlng('Jose Javier Diaz 440 Cordoba Argentina') ...
1
vote
1answer
77 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 ...
1
vote
1answer
144 views

Postgis / Geodjango: Cannot determine PostGIS version for database

I'm attempting to launch a GeoDjango app. I've installed Postgres & PostGIS using brew on Lion. I created a database using template_postgis: createdb -T template_postgis test. When I run python ...
1
vote
1answer
130 views

Can Haystack filter by a geodjango PointField?

I want to be able to use django-haystack to do full text searches on a model. This model uses a PointField to store coordinates. I want to filter the results of a search based on the distance from a ...
1
vote
1answer
186 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 ...
1
vote
2answers
110 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 ...
1
vote
1answer
196 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: ...
1
vote
1answer
171 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 ...
1
vote
1answer
198 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
107 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 ...

1 2 3