0
votes
1answer
77 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
3answers
33 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
69 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
3answers
131 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

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
0answers
21 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
85 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
44 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
125 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
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
130 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 ...
1
vote
0answers
124 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
38 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): ...
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
613 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
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 = ...
0
votes
2answers
91 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
314 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. ...
0
votes
1answer
131 views

django-evolution doesn't work with django.contrib.gis.db.backends.postgis

I can't run "./manage.py evolve --hint --execute" for my GeoDjango project. It exits with error: File ...
0
votes
2answers
177 views

How to send json from django view and receive it on HTML

I am working on GIS project using GeoDjango and for this I have to render a map using OpenLayers. My snippet accepts JSON to create layers in OpenLayers. I want to send my "Administrative" model of ...
2
votes
2answers
503 views

How to calculate distance between points on python side of my appplication in way that is consistent in what database does

I'm writing an application that makes heavy use of geodjango (on PostGis) and spatial lookups. Distance queries on database side work great, but now I have to calculate distance between two points on ...
1
vote
1answer
651 views

Python TastyPie - Custom manager methods as filters?

I have a GeoDjango project that has a manager model like this; class AdvertManager(models.GeoManager): def within_box(self, x0, y0, x1, y1): geometry = Polygon.from_bbox((x0, y0, x1, ...
0
votes
1answer
759 views

ImportError: Could not import settings 'settings.py' (Is it on sys.path?): No module named py

Shis is the error I am getting while I'm trying to import models from django.contrib.gis.db using following command from django.contrib.gis.db import models I want to do this to define geographic ...
1
vote
0answers
72 views

GeoDjango: Sort by country of the geolocation

Hi Stackoverflow people, I have a model which contains projects with the corresponding geolocation: class Project(models.Model): name = models.CharField(_('Project Name'), max_length=100, ...
0
votes
1answer
440 views

GeoDjango + PostGIS calculates wrong Distances

I just installed PostGIS with GeoDjango. Everything worked fine, but now I have a problem and cant find out the reason for this. I have model like this: from django.contrib.gis.db import models ...
1
vote
1answer
518 views

Using Django as a map source for openlayer UI

I am thinking of creating a web application that shows a map of a city (from openstreetmaps data). I would like to create a layer on top which represents markers. I foresee that I will have a database ...
0
votes
1answer
115 views

Python/Django Beginner

I'm new to web-developing, I get: IntegrityError at /map/rebuild/ null value in column "snow_Depth" violates not-null constraint do you see anything I'm doing wrong in this function? Are my moves ...
0
votes
1answer
238 views

SELECT DISTINCT ON (geometry column) equivalent with GeoDjango

I'm trying to create a Django query that will do the equivalent of the following PostgreSQL/PostGIS query: SELECT DISTINCT ON (site) * FROM some_table; site is a POINT type geometry column. How can ...
5
votes
1answer
555 views

GeoDjango distance filter with distance value stored within model - query

I have an Order model, that has an origin PointField and a range IntegerField. Furthermore, there is an UserProfile model, which has a geo_location PointField. Now, I have an User instance, user. I ...
1
vote
3answers
111 views

Geometric calculations in a django model

I'm working on a Django web project. I have a model called Ad. I need to add coordinates to each Ad object and then query the database by the distance from a fixed point, i.e. retrieve all Ad objects ...
9
votes
1answer
3k views

How to debug: Internal Error current transaction is aborted, commands ignored until end of transaction block

Hi Stackoverflow people, I do my first steps with GeoDjango and I am looking for better options to check faulty sql statements. So far, I simply wanted to safe a lng+lat point in my postgresql ...
1
vote
0answers
169 views

representing data on world map using python

I have a data base which represent some contents according to each city and state. I want to design an interface where, when user clicks on a city/state in the map it represents the list of contents ...
3
votes
1answer
351 views

Wondering About GeoDjango and Mapping Services

I'm trying to build my first GIS app with GeoDjango and I have a few questions before I begin: First: What exactly is GeoDjango for in relation to Google Maps? Is it simply for processing the ...
1
vote
2answers
152 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. ...
3
votes
1answer
792 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 ...
0
votes
1answer
136 views

How can I create a model with compound foreign key?

anybody knows on how to create a model with compound foreign key to another model. e.g. UserInfo: userId, password, key, ... GeoInfo: id, userId, password, storeName, ... In the above sample ...
8
votes
4answers
1k 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.
1
vote
4answers
419 views

How can I query all my data within a distance of 5 meters?

I am using GeoDjango with PostGIS. Then I am into trouble on how to query my postgres db table to get all data within a distance of 5 meters. UPDATES1 I am using GeoDjango 1.2.7 I found something ...
0
votes
1answer
76 views

Does GeoDjango 1.0.2 support django.contrib.messages?

I am wondering if GeoDjango 1.0.2 supports django.contrib.messages because when I execute 'python manage.py syncdb', I am receiving the below error messages. Traceback (most recent call last): File ...
0
votes
2answers
618 views

python: GeoDjango: Eclipse: During Unit Test, raise ImportError, "Could not import settings '%s' (Is it on sys.path? Does it have syntax errors?)

I am creating unit test py file (tests.py) then i received the below error messages. Could you give me some idea on how to resolve it. pydev debugger: warning: psyco not available for speedups (the ...
1
vote
2answers
398 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') ...
0
votes
1answer
176 views

python not finding library under django that's found otherwise

I've just successfully installed GeoDjango and all the required libraries. I've set the environment variables and registry keys (yea working under Windows here) and everything works find from the ...
2
votes
1answer
379 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 ...
2
votes
1answer
83 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 ...
0
votes
2answers
258 views

Geodjango with Mysql coordinates/polygons precision

I've created a geodjango database working with MySQL. My problem is that when I add a new record with a PolygonField and then check for a point if it is inside this polygon I get a wrong results ...
4
votes
1answer
448 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 ...
1
vote
1answer
770 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
1answer
440 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
1answer
339 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 ...
0
votes
3answers
698 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 ...

1 2