Re: optimizing a geo_distance() proximity query

Поиск
Список
Период
Сортировка
От Bruno Wolff III
Тема Re: optimizing a geo_distance() proximity query
Дата
Msg-id 20070204051644.GA3754@wolff.to
обсуждение исходный текст
Ответ на optimizing a geo_distance() proximity query  (Mark Stosberg <mark@summersault.com>)
Ответы Re: optimizing a geo_distance() proximity query  (Mark Stosberg <mark@summersault.com>)
Список pgsql-performance
On Sat, Feb 03, 2007 at 14:00:26 -0500,
  Mark Stosberg <mark@summersault.com> wrote:
>
> I'm using geo_distance() from contrib/earthdistance would like to find a
> way to spend up the geo distance calculation if possible. This is for a
> proximity search: "Show me adoptable pets within 250 miles of this
> zipcode".

If you are using the "cube" based part of the earth distance package,
then you can use gist indexes to speed those searches up. There are
functions for creating boxes that include all of the points some distance
from a fixed point. This is lossy, so you need to recheck if you don't
want some points a bit farther away returned. Also you would need to
pick a point to be where the zip code is located, rather than using area
based zip codes. However, if you have actually addresses you could use the
tiger database to locate them instead of just zip code locations.

В списке pgsql-performance по дате отправления:

Предыдущее
От: Oleg Bartunov
Дата:
Сообщение: Re: optimizing a geo_distance() proximity query
Следующее
От: Kirk Wythers
Дата:
Сообщение: Re: trouble with a join on OS X