Tagged Questions

0
votes
1answer
57 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 …
2
votes
4answers
136 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 fo …
0
votes
1answer
31 views

GeoDjango Point object giving different wkt than was initialized with. What am I doing wrong?

Can someone please explain why the wkt (well-known text) of a point object in geodjango would be returning what seems to be different coordinates than the object was initialized wi …
0
votes
1answer
87 views

Furthest distance between any two points with GeoDjango

I have a collection of Point objects. I want to find the furthest distance between any two points. Imagine a circle enclosing all of these points. I want to know the diameter of th …
0
votes
1answer
74 views

GeoDjango - How to present points on a map?

Simple 'Example' - have millions of points within specific geography. Have everything loaded and able to see in GeoAdmin the whole 9 yards. So. How do I show all points on a map - …
0
votes
1answer
66 views

Adding a polygon directly in Geodjango/PostGIS

I'm messing around with Geodjango, and I just want to add a simple polygon field to a database and then run a point-in-polygon on it to to make sure everything is working okay. He …
0
votes
1answer
69 views

Using UTM with geodjango

I'm looking into using the UTM coordinate system with geodjango. And I can't figure out how to get the data in properly. I've been browsing the documentation and it seems that the …
0
votes
1answer
271 views

Howto merge 2 Django QuerySets in one and make a SELECT DISTINCT

Hi, thats my code: ##### models.py ##### class SinglePoint(models.Model): attributes = models.TextField(blank=True) name = models.CharField(max_length=100) geom = mod …
2
votes
3answers
203 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 …
1
vote
1answer
195 views

3 dimension GiS data with django and postgis

I could use a third dimension in my current project, which strongly involves google-maps and django. How do I deal with this? class Waypoint(models.Model): latlng = models.Po …
0
votes
1answer
123 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 ...
2
votes
3answers
304 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 conside …
6
votes
1answer
2k 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 poin …