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.
1
vote
0answers
17 views
How To Back Up Django PostGIS Databases
I have a GeoDjango (Django 1.5) application running with PostGIS 2. Traditionally, when backing up a PostgreSQL database without PostGIS, I would use pg_dump. The PostGIS documentation recommends to ...
0
votes
1answer
25 views
How to query points north of a certain latitude
I have a Django model with a geodjango PointField:
geopoint = gis_models.PointField(srid=4326, verbose_name='location', geography=True, null=True)
I want to query the model for all points North of ...
0
votes
0answers
6 views
floppyforms osmbasewidget disoriented
I'm using the osmbasewidget from floppyforms but there seems to be an error,
and when i check the developer tool on chrome there's this error that goes like:
is there something that im missing, im ...
0
votes
1answer
37 views
'NoneType' object has no attribute 'encode'
I'm trying to use GeoAdmin in GeoDjango.
I have a table planet_osm_point and I would like to see it in the admin interface.
I'm a beginner in django.
I have this problem :
Environment:
Request ...
0
votes
0answers
17 views
Which tools to build a complete interactive mapping application/web application?
I want too build a web application, and I am looking at the tools I will have to use.
I want to use a real time map
I'm a thinking about :
Tilemill to get .png in order to constitue the background ...
0
votes
0answers
8 views
Display result GeoQuerySet
I'm trying to query my PostGis database thanks to geoDjango but I have an error where I found no solution on the internet.
close_loc=PlanetOsmPoint.objects.get(way__distance_lte=(lePoint, ...
-2
votes
0answers
37 views
How to enable postgis on existing database? [closed]
I have an existing postgres database.
How do I enable geodjango support on that database? so that I can use it for spatial lookups.
0
votes
3answers
28 views
Colon in variable identifier
Is it possible to have a colon in a variable name ?
I already tried to backslash it but it doesn't work...
I'm using geoDjango so my identifiers in my models have to keep the same name than those ...
0
votes
1answer
28 views
Searching points inside certain radius
I've got the following Point model:
class Point(models.Model):
name = CharField(max_length=50)
location = PointField()
I'm now trying to get all the point in a distance of 5 km of that ...
0
votes
0answers
35 views
Uploading GPS data from a GPS device in django
I have a GPS Device that provides me the flexibility data to a URI i specify.
According to the device specs, it would be sending across data in a binary ascii format, what would be the best way to ...
0
votes
0answers
23 views
GEOS for django on Ubuntu 11.10
Been trying to run a Django MySQL Nginx Stack to run for GIS Support but unable to succesfully compile GEOS dependancy.
I get a make error 1
It would be great if I could get some concrete steps on ...
0
votes
1answer
64 views
Django 1.5 Geodjango pointfield as map in admin inline
I have a model
from django.contrib.gis.db import models
class Venue(models.Model):
event = models.ForeignKey(Event, verbose_name=_('Event') )
name = models.CharField(max_length=32, ...
0
votes
1answer
56 views
Fastest way to get nearest geometry to a point in GeoDjango
I've got a large number of points (~1.5 million) in the WGS84 coordinate system. The points span a large area, so I can't use a projected coordinate system. I want to find the closest point to a given ...
0
votes
0answers
31 views
django floppy forms geospatial widgets error
I'm trying to define a view that lets the user edit the data in the database, I'm using floppyforms, because of its geodjango widgets which is part of the form that i would want the user to use for ...
0
votes
3answers
125 views
Django + postgreSQL: find near points
For my app, I need to determine the nearest points to some other point and I am looking for a simple but relatively fast (in terms of performance) solution. I was thinking about using PostGIS and ...
0
votes
1answer
46 views
Error with GDAL python binding in GeoDjango Shell
I would like to use the GDAL python binding in my GeoDjango site. The aim of this is to use ogr2ogr capabilities in a script. I am on windows 7 so I have installed GDAL-1.9.2.win32-py2.7 downloaded ...
0
votes
1answer
49 views
GeoDJango: retrieve last inserted primary key from LayerMapping
I am building an application with GeoDjango and I have the following problem:
I need to read track data from a GPX file and those data should be stored in a model MultiLineStringField field.
This ...
0
votes
1answer
48 views
Problems combining (union) Multipolygons in geodjango
I'm using geodjango and postgis (1.x),
What is the best way to combine (union) a list of multipolygons.
in what i assume is rather inefficient i'm looping trough like this
combined = multipolygon
...
1
vote
1answer
43 views
Is it possible to store in a database the output of geodjango's geoqueryset.distance?
Is it possible to store the output of geodjango's queryset in a spatially enabled database?
https://docs.djangoproject.com/en/dev/ref/contrib/gis/geoquerysets/#distance-lookups
the one in this ...
1
vote
1answer
32 views
Sorting by distance with a related ManyToMany field
I have this two models.
class Store(models.Model):
coords = models.PointField(null=True,blank=True)
objects = models.GeoManager()
class Product(models.Model):
stores = ...
0
votes
1answer
47 views
Geodjango OSMGeoAdmin: how can add different layers
I noticed that maps in the Geodjango admin have a menu on the right.
How can I add more layers than just one representing the model field the map is related in admin?
This is my model (model.py):
...
0
votes
0answers
37 views
can the django-floppyforms geodjango widgets use openlayers other functions? [closed]
Can floppyforms be used with openlayers functions like the measure handler? would it be possible to use with floppyforms geodjango widgets.
EDIT:
Sorry for the erratic question sirs. I'll try to ...
0
votes
0answers
52 views
GeoDjango - Splice geometry by bounding box
I am looking for a solution to retrieve the geometry(ies) from a polygon/multipolygon within a bounding box in a GeoDjango application.
The application I am developing has a requirement to server out ...
0
votes
1answer
79 views
It is necessary to use GeoDjango to query distances in Django?
In the site i'm building, i have stored events with a Foreign Key to Cities. Like this:
class Event(models.Model):
name = models.CharField(max_length=255)
...
ciudad = ...
0
votes
0answers
19 views
Multiple DBs and SRIDs for GeoFields
I have a bunch of models with geometry fields, and now I'm splitting dbs up by location. I'd now like to assign the Field's SRID per database. (From what I can tell, the srid appears to be a static ...
0
votes
1answer
72 views
GeoDjango: keep geo data in DMS (Degrees Minutes Seconds) NOT decimal degrees
TL;DR: how do I make geodjango to keep my data in DMS format?
I'm building a simple django (GeoDjango actually) app that loads some external data source which contains coordinates in DMS format.
...
0
votes
1answer
81 views
geodjango with south causes “duplicate collumn name error” with spatialight db
I have custom field for geodjango:
from django.contrib.gis.db import models as geomodels
class PointField(geomodels.PointField):
def formfield(self, **kwargs):
defaults = {
...
0
votes
0answers
42 views
Distance query within a certain distance based on value in 'joined' table
I have a bunch of points on a map. Each point represents a User. Users has an attribute called connection_distance which basically means "I only care about other people within this number of miles ...
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 ...
0
votes
0answers
76 views
Editing MultiPolygonField in django admin with OpenLayers vs Google Maps
I have a website where we currently edit MultiPolygonFields in the Django admin using GoogleMaps V2 rather than the default OSM Open Street Maps layer.
V2 is getting shut down soon in May 2013 and ...
0
votes
0answers
121 views
Sorting points by distance on Amazon RDS with Django
Quick background, I'm trying to create a django app that sorts a bunch of locations by distance from a point. The app will be running on an EC2 server, and I would like to use RDS for the database. ...
1
vote
1answer
105 views
creating a polygon from points around a point in postgis
I have a postgresql db using postgis 2.0 and a table of thousands of points, I would like create a polygon of the furthest points originating around a particular central location.
I haven't got a clue ...
0
votes
1answer
92 views
GeoDjango bounding box filter usage
I'm having trouble figuring out how to do a bounding box query to find all UserProfile objects that are contained within a bounding box specified by (swLat, swLon, neLat, neLon). Despite setting the ...
1
vote
2answers
36 views
django list not destroyed between views
I am creating a list from some of the model data but I am not doing it correctly, it works but when I refresh the page in the broswer reportResults just gets added to. I hoped it would get garbage ...
5
votes
2answers
127 views
DJANGO_SETTINGS_MODULE is undefined with gis.db
when I use
from django.contrib.gis.db import models
I get error:
Traceback (most recent call last):
File "<pyshell#0>", line 1, in <module>
from django.contrib.gis.db import ...
0
votes
0answers
54 views
GeoDjango and Spatialite on Mac: issue with C extension Loading
I'm following the GeoDjango Tutorial to set up a dev spatial DB for my project on my home machine, a Mac Mini running OSX 10.8.2. I installed the KyngChaos packages (UnixImageIO, PROJ, GEOS, SQLite3 ...
0
votes
1answer
82 views
Migrate GeoDjango model to change projection SRID
I am attempting to use South to create a migration to convert my data from using the 4326 SRID to 900913. After the migration, the coordinates remain in their 4326 format. (It's easy to tell the ...
0
votes
0answers
16 views
Geodjango: how filter by geom_type
I have geodjango with Mysql. I use this model
class A(models.Model):
geometry = models.GeometryField(db_index=False, spatial_index=False)
How can I retrieve only 'Points' from db?
0
votes
1answer
68 views
How to make a geography field unique?
I have this model:
class Marker(models.Model):
location = models.PointField(geography=True, unique=True)
When I try to add a Marker instance through the admin interface, it raises a ValueError:
...
0
votes
0answers
36 views
Geodjango query too slow
I have a problem of slowness when running this query in django
qs = Streets.objects.distance (pnt). filter (the_geom__dwithin = (pnt, HDOP)). order_by ('distance') [1]
I have a set of points and I ...
0
votes
0answers
94 views
GeoDjango — syncdb or south migration error
Anyone ever seen this error? My migration is failing :(
django.db.utils.DatabaseError: function addgeometrycolumn(unknown, unknown, integer, unknown, integer) is not unique
LINE 1: SELECT ...
0
votes
1answer
32 views
search a point from a list of Poligon using geodjango
I am trying to develop a query builder using geodjango. I want to find out whether a point is in a given list of multipolygon. Django database API has "__in" to find data in a list. Is there any ...
0
votes
0answers
73 views
How to subclass django.contrib.gis.db.models.fields.PointField?
I have a django.contrib.gis.geos.point.Point subclass:
from django.contrib.gis.geos import Point
class Location(Point):
def __init__(self, *args, **kwargs):
lat = kwargs.get('latitude')
...
0
votes
0answers
22 views
lgdal.OGR_DS_CreateLayer() crashes on Mac OS X (segfault)
On Mac OS X Mountain Lion, using vanilla Python
Python 2.7.2 (default, Jun 20 2012, 16:23:33)
[GCC 4.2.1 Compatible Apple Clang 4.0 (tags/Apple/clang-418.0.60)] on darwin
Type "help", "copyright", ...
1
vote
2answers
122 views
Point on a polygon boundary using postgis & geodjango
I have point data and multipolygon data in tables. How can I find points lying on multipolygon boundary using postgis and in geodjango?
1
vote
0answers
115 views
GeoDjango GEOS API Abort Trap GEOS function errors
I'm running into some repeated problems in my geodjango apps that
seem to be originating with GEOS. I am receiving errors that do not include
stack trace information so I'm not sure how to go about ...
0
votes
1answer
223 views
Convert Google Maps north to Magnetic north
I'm building a Django site connected to an android app. The android part is a navigator, and the site permits to build your own maps using images.
During the construction of these maps, user can set ...
0
votes
1answer
27 views
GeoDjango Query Issue
I am newbie in using geodjango, I need to check whether a point is present in a multipolygon layer. For trial I used
x = '640744.97964'
y = '2498614.18957'
p = Point(float(x), ...
0
votes
0answers
32 views
GeoDjango: Doing a `within` query in a set of geometries
I want to make a geographical within query on a set of geometry objects. That is, I want to fetch objects that fall into a list of geometries.
In my case, a user can follow locations; and posts are ...
2
votes
1answer
164 views
GeoDjango polygon area
I have implemented GeoDjango using postgis.
Here is my model:
...
geometria = models.PolygonField(srid=4326, null=True)
...
When I call data.area it returns a float, but I don't have any ...



