Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6556969
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T13:00:50+00:00 2026-05-25T13:00:50+00:00

I want to be able to use django-haystack to do full text searches on

  • 0

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 point. Is this possible with Haystack? Is there a better way to do this?

from django.contrib.gis.db import models


class Listing(models.Model):
    name = models.CharField(max_length=255)
    description = models.TextField()
    location = models.PointField()
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T13:00:50+00:00Added an answer on May 25, 2026 at 1:00 pm

    It sounds like you want users to input geographic information, like an address or zipcode into the text search. This is how I did it, though I’m not sure how it scales yet. I just finished this 5 minutes ago.

    You should create a custom search form subclassed from SearchForm or one of the other options (for me it was FacetedSearchForm). Overwrite the search method.

    First turn the search string into a point. http://code.google.com/p/geopy/wiki/GettingStarted

    class MainSearchForm(FacetedSearchForm):
    
        def search(self):
    
            query = self.cleaned_data['q']
            g = geocoders.Google()
            place, (lat, lng) = g.geocode('%s' % query)
            pnt = fromstr('POINT(%s %s)' % (lng, lat), srid=4326)
    

    Then take the search query set, I used RelatedSearchQuerySet since it allows you to use load_all_queryset() which is where I filtered by distance. It’s GeoDjango to the rescue with GeoDjango Distance Queries. With the distance query, you can choose how to filter with distance less than, greater than etc. And the distance itself, in whatever units you want.

            sqs = RelatedSearchQuerySet().load_all()
            sqs = sqs.load_all_queryset(Listing, 
                                        Listing.objects.filter(location__distance_lte=(pnt, D(mi=20))))
            return sqs
    

    That should be a solid start. Hope this points you in the right direction.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm using Django and want to be able to store classes in a database
I want to be able to use mklink to create symbolic links on my
I want to be able to use the iPhones Mail.app inside my application so
I want to be able to use Python to open a .csv file like
I want to be able to use the mapfield in the same manner as
I'm developing an XBAP application in C# and want to be able to use
I'm running a LAMP environment with CodeIgniter. I want to be able to use
I want some of the goodies in a ListView, like being able to use
I want to be able to open my website and use some kind of
I am going to use forms authentication but I want to be able to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.