On Mon, Jul 11, 2011 at 7:10 AM, Cal Leeming [Simplicity Media Ltd] <
[email protected]> wrote:
> +1 on raw SQL in this instance.
Not exactly, using ORM is pretty easy too. You would do something like this:
results.extra(select={
'distance':
'(acos(sin(latitude)*sin(%(latitude)f)+cos(latitude)*cos(%(latitude)f)*cos(%(longitude)f-longitude)))'
% {
'latitude': latitude,
'longitude': longitude
}
}).order_by('distance')
-V
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/django-users?hl=en.