Tagged Questions
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
104 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 ...
2
votes
4answers
2k views
MySQL vs PostgreSQL Concerns w/ GIS & Speed
I'm aware there are a few threads out there addressing this issue, but I'm wondering if anything has changed since those have been published.
I'm looking to build a GIS webapp, and people are all ...
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 ...
3
votes
1answer
363 views
GeoDjango & MySQL: points can't be NULL, what other “empty” value should I use?
I have this Django model:
from django.contrib.gis.db import models
class Event(models.Model):
address = models.TextField()
point = models.PointField('coordinates', null=True, blank=True)
...
0
votes
1answer
193 views
Unreadable data in Mysql from a GeoDjango PointField
I'm using GeoDjango with MySQL. I use a models.PointField(srid=4326) object, all works fine, the data is correctly saved and retrieved from the database, but when I do a select * from table from MySQL ...
1
vote
2answers
171 views
How hard is it to modify the Django Models?
I am doing geolocation, and Django does not have a PointField. So, I am forced to writing in RAW SQL. GeoDjango, the Django library, does not support the following query for MYSQL databases (can ...
