1
vote
0answers
16 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
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
34 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 ...
-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
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
63 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
124 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
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
51 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
78 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
71 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
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. ...
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 ...
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
1answer
67 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
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
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
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 ...
0
votes
1answer
102 views

Incorrect string value when running GeoDjango tutorial: “Warning: Incorrect string value”

Note: Copying and elaborating upon this question and answer from: https://groups.google.com/forum/?fromgroups=#!topic/django-users/OW_uSWCoObs: Hi, I was trying to go through the GeoDjango tutorial ...
0
votes
0answers
36 views

Aggregate/Group entries by grid location using geodjango's snap_to_grid

I'm trying to figure out the snap_to_grid() method, which appears to do what I want, but I'm not sure how to use it. I have a model with several point fields: class PointsOfInterest(models.Model): ...
4
votes
3answers
475 views

Failed to install index ( Geodjango related)

I am using geoDjango. I have installed following packages from source Gdal, proj1.4, geos3.3.5 and Postgis2.0.1. I am ubuntu user. When I run syncdb after that I am getting following error. Am I ...
1
vote
1answer
84 views

GeoDjango: Exceptions for basic geographic queries

I am having problems with geographic queries with GeoDjango running on SpatiaLite on my development environment. from django.contrib.gis.db import models class Test(models.Model): poly = ...
3
votes
2answers
54 views

return distance objects in Django

I have a small function like so: from django.contrib.gis.measure import Distance def RailTest(mod_ewdim, mod_ewspacing, cols): y = Distance(inch=mod_ewspacing) x = Distance(inch=mod_ewdim) ...
1
vote
1answer
146 views

Filtering query using django geographical span relationship is not accepted

I'm trying to filter some item using a geographical span relationship with geodjango, but I don't get why it doesn't work. Consider this example: class Location(models.Model): name = ...
0
votes
0answers
60 views

GeoDjango: Geographic query causes segmentation fault

On Django development server with SpatiaLite, I am trying to do a basic geographic query: Location.objects.filter(geom__within=loc.geom) This causes a Segmentation error and the server dies. loc is ...
1
vote
1answer
455 views

GeoDjango PointField input

It can be a stupid question, but I haven't find out the answer. I implemented GeoDjango and a PointField, so in the admin page I tried to create a new object, but it always tells me that the ...
1
vote
1answer
534 views

Python/django : Cannot import GeoIP

I cannot import GeoIP in django. I searched and tested this error two days, but still could not know problem. Surely, I installed GeoDjango. I'm on MacOS 10.8 following is log by tested by django ...
1
vote
1answer
669 views

Getting 'DatabaseOperations' object has no attribute 'geo_db_type' error when doing a syncdb

I'm attempting to run heroku run python manage.py syncdb on my GeoDjango app on Heroku, but I get the following error: AttributeError: 'DatabaseOperations' object has no attribute 'geo_db_type' All ...
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 = ...
1
vote
1answer
44 views

Aggregation on GeoDjango queries

I have the following models: from django.contrib.gis.db import models as geomodels class Shop(models.Model): objects = geomodels.GeoManager() name = models.CharField(max_length = 64) class ...
0
votes
2answers
88 views

json to geoDjango model

I am building a database using Django, geodjango and postgresql of field data. The data includes lats and lons. One of the tasks I have is to ingest data that has already been collected. I would ...
0
votes
1answer
291 views

Return Latitude and Longitude values from a PointField using tastypie

Using django-tastypie v0.9.11 django 1.4.1 and geodjango. Before geodjango I used to save my lat and lng values straight into my model. Then when I'd call the API I'd just pull my values easily. ...

1 2 3 4