将 PostGIS 用于基于位置的数据



我在postgresql 9.2中有一个表,它将位置的纬度和经度存储为整数值。

我打算做一些事情,例如当用户搜索某个位置时,他还会获取有关该搜索位置 7 英里半径内的其他位置的信息。

我如何使用 postGIS 为此,因为我是新手。任何想法。?

您实际上希望将纬度和经度存储为一个点。

CREATE TABLE postal_codes
(
  zip character varying(7) NOT NULL,
  state character(2) NOT NULL,
  city character varying(50) NOT NULL,
  geoloc geography(Point,4326) NOT NULL
);
INSERT INTO postal_codes
VALUES (
    '35004', 'AL', 'Moody',
    ST_GeographyFromText('SRID=4326;POINT(-86.50249 33.606379)') -- lon lat
);

然后,您可以使用STDWithin获取一定距离内的所有点。

SELECT geoloc
FROM postal_codes
WHERE ST_DWithin(
    geoloc,                            -- The current point being evaluated
    'thegeolocyoustoredawaysomewhere', -- the location of the person
                                       -- you're giving info to
    7 * 1.6 * 1000                     -- Miles to meters
);

或:

SELECT geoloc
FROM postal_codes
WHERE ST_DWithin(
    geoloc,
    (
        SELECT geoloc
        FROM postal_codes
        WHERE zip = '12345'
    ),
    7 * 1.6 * 1000
);

若要稍微提高其他类型的查询(此处未看到的任何查询)的性能,请使用 GiST 索引:

CREATE INDEX geoloc_idx
ON postal_codes
USING gist (geoloc);

相关内容

  • 没有找到相关文章

最新更新