0
votes
0answers
34 views

Where can I find some good online resources on learning how to port from Coldfusion MX7 to Django (specifically, GeoDjango, Postgis)? [closed]

I am applying for a position and would like to read up on this. Have been searching in vain. And, this is all the info I have about the role. Thanks in advance for all your help.
2
votes
0answers
41 views

heroku PostGIS syncdb error

I am having trouble getting a simple GeoDjango app running on heroku. I have created the postgis extension for my database but I am not able to run syncdb without getting the following error: from ...
1
vote
0answers
26 views

How to get Django to put tables in different schema

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
34 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
15 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, ...
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
35 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
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
70 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 ...
0
votes
0answers
57 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
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 ...
1
vote
1answer
125 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
107 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 ...
0
votes
1answer
74 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
100 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
35 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 ...
1
vote
2answers
144 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?
0
votes
1answer
132 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 ...
2
votes
1answer
431 views

geodjango with postgis would not work

I am new to geodjango, I have the following settings: DATABASES = { "default" : { 'ENGINE': 'django.contrib.gis.db.backends.postgis', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', ...
2
votes
2answers
504 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
216 views

Store a Circle in Geodjango + Postgres

Looking to store a circle in a geodjango field so I can use the geodjango query __contains to find out if a point is in the circle (similar to what can be done with a PolygonField). Currently have it ...
0
votes
1answer
216 views

GeoDjango: 'No such file or directory' when creating PostGIS spatial database template

I am working on MacOS Lion. I have successfully set up the KyngChaos libraries for Postgres and PostGIS, as per the official instructions with no problems. I've reached the section on creating a ...
3
votes
1answer
469 views

My PostGIS database looks fine but GeoDjango thinks otherwise… why?

I'm trying to set up a GeoDjango app to test an earlier problem I was having. I've set up a postgresql database, created a new Django project and app, but when I try ./manage.py syncdb I get this: ...
1
vote
2answers
375 views

How do I satisfy “enforce_srid_coordinate” constraint with GeoDjango/PostGIS?

I'm using GeoDjango and have a Django model with a PointField: class ArchivrItem(models.Model): ... coordinate = models.PointField(srid=4326) When I try to insert a new ArchivrItem, using ...
3
votes
1answer
2k views

Unable to syncdb in GeoDjango App

I am having a real trouble in setting up spatial database and syncing it with GeoDjango. I was able to setup the spatial database as per the geodjango documentation and create a django app but when i ...
0
votes
1answer
222 views

Unable to create spatial database for geodjango on Mac OS X

I am trying to install PostGIS for MacOS X and uptil now this is what i got PostGIS is now configured for x86_64-apple-darwin10.8.0 -------------- Compiler Info ------------- C compiler: ...
0
votes
1answer
441 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 ...
2
votes
1answer
129 views

How to use Geodjango snap_to_grid on geography Field (not geometry)

I create a table using geodjango with a column location = models.PointField(geography=True). class Point(models.Model): location = models.PointField(geography=True) Later I want to use ...
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 ...
0
votes
1answer
160 views

GeoDjango distance query weighted by rating

I am using GeoDjango/PostGIS and have a model called Business that has a physical location and a rating. I would like to run a query to find 'nearest' highly rated businesses. How do I do this? To ...
2
votes
1answer
388 views

GeoDjango within a NE, SW box

I'm creating a geo app with Google Maps and I receive bounding box as 2 coordinates: north east south west I have a model with PointField. from django.contrib.gis.db import models class ...
0
votes
1answer
167 views

GeoDjango/PostGIS/Concept: How to connect user entries to shapefile information?

Hi Stackoverflow people, I am working on an organisation registration, in which orgs can register their project areas (like all Nevada, entire US, or simply a city e.g. Boston) and users should find ...
0
votes
2answers
228 views

PostgreSQL + GeoDjango: Better understanding how POINTS are translated

Hi Stackoverflow people, I am having trouble to understand how POINT references in GeoDjango are translated to query statements. jpic's advice helped me very much to capture the query statements ...
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 ...
4
votes
3answers
4k 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 ...
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 ...
2
votes
2answers
196 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 ...
1
vote
1answer
271 views

How to create a polygon from a central point with GeoDjango

I want to create a polygon from a point and a radius. For example, I want to be able to give a point (latitude, longitude) with a given radius (ex. 10km) and calculate the circle and store it as ...
0
votes
1answer
678 views

Password authentication failed- postgis/postgresql database to use geodjango

I'm following the geodjango tutorial here: https://docs.djangoproject.com/en/dev/ref/contrib/gis/tutorial/#introduction I successfully completed the installation/setup. When I try entering the ...
22
votes
1answer
3k 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 ...
1
vote
2answers
401 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') ...
5
votes
1answer
2k 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 ...
6
votes
1answer
454 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? ...
4
votes
1answer
449 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 ...
0
votes
1answer
146 views

An error occurred when transforming the geometry to the SRID of the geometry form field

I am working on geodjango , postgis and found a problem while saving a location from OSMGeoAdmin with open street map .The map showing accordingly but when i want to save a location it shows with red ...
1
vote
1answer
230 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 ...
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 ...
4
votes
1answer
220 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 ...

1 2