input out of error with haversine formula

Поиск
Список
Период
Сортировка
От Vince Carney
Тема input out of error with haversine formula
Дата
Msg-id AANLkTikxpbeR+oNHVVQ-fTnvutr+pGxMmP5N7Z7TJNEO@mail.gmail.com
обсуждение исходный текст
Ответы Re: input out of error with haversine formula  (Dean Rasheed <dean.a.rasheed@gmail.com>)
Список pgsql-general
The following will return an input out of error as the acos() function cannot be -1 <= x <= 1.

SELECT * FROM
                (SELECT *, (3959 * acos(cos(radians(37.7438640)) * cos(radians(37.7438640)) * cos(radians(-97.4631299) - 
                radians(-97.4631299)) + sin(radians(37.7438640)) * sin(radians(37.7438640))))
                AS distance
                FROM foo) AS distances
                WHERE distance < 10
                ORDER BY distance

If I break this down the following returns 1:
SELECT (cos(radians(37.7438640)) * cos(radians(37.7438640)) * cos(radians(-97.4631299) - radians(-97.4631299)) + sin(radians(37.7438640)) * sin(radians(37.743864000)));

acos(1) would give me 0.

Thoughts or workaround suggestions?

Thanks.
--Vince--

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

Предыдущее
От: Guy Rouillier
Дата:
Сообщение: Re: It it possible to get this result in one query?
Следующее
От: Dean Rasheed
Дата:
Сообщение: Re: input out of error with haversine formula