Using geoDjango, what is the difference between
myObj.objects.filter(point__dwithin(...etc.))
and
myObj.objects.filter(point__distance_lt(...etc.))
?
Are they the same thing, or are they doing subtly different things?
|
Using geoDjango, what is the difference between
and
?
| ||||
|
feedback
|
|
Ok, I did some research but I don't know if the results are of any use ;)
I have already a geo application using a PostgreSQL databse. When I perform this query with
I get this generated SQL:
When I try to use do to the same with
So I had to change the query to no use a
which results in
Summary:
Btw, I get different results with both queries but I guess this is mostly due the fact that I don't know which "degree" value to use. | ||||
|
feedback
|