我定义了下表,它使用PostGIS地理。
CREATE TABLE test_geog (
id SERIAL PRIMARY KEY,
boundary GEOGRAPHY(Polygon)
);
我向表中添加了以下测试多边形:
INSERT INTO test_geog VALUES (ST_GeographyFromText('SRID=4326;POLYGON((0 0, 0 5, 5 5, 5 0, 0 0))'));
我试图确定一个点是否位于这个表中的任何多边形内。我有这样的疑问:
SELECT ST_ContainsProperly(ST_GeographyFromText('Point(2 2)'), area)
FROM (SELECT boundary FROM test_geog) AS area;
这会产生以下错误:
ERROR: function st_containsproperly(geography, record) does not exist
LINE 1: SELECT ST_ContainsProperly(ST_GeographyFromText('Point(2 2)'...
^
HINT: No function matches the given name and argument types. You might need to add explicit type casts.
如何将此“记录”转换为
POLYGON
?我很困惑,因为这个列似乎已经声明为只包含POLYGON
类型,但出于某种原因,这不是我从数据库中提取的类型。我试图将该记录转换为这样的
POLYGON
:SELECT ST_ContainsProperly(ST_GeographyFromText('Point(2 2)'), CAST (boundary AS POLYGON))
FROM (SELECT boundary FROM source_imagery) AS nitf_area;
但这给了我一个错误:
ERROR: cannot cast type record to polygon
LINE 1: ...tainsProperly(ST_GeographyFromText('Point(2 2)'), CAST (boun...
我在这里不明白什么?
最佳答案
我的问题在地理信息系统论坛上得到了回答。我犯了一个愚蠢的错误,认为STúu containsproperty可以用于地理,而实际上它只支持几何。我也不需要我试图做的多余的子查询。
所以这是我的解决方案。我改用了STúu Covers,它做了我想做的,并且支持地理。这样可以避免对几何体进行强制转换。这是有效的代码:
SELECT ST_Covers(
boundary,
ST_GeographyFromText('Point(2 2)')
)
FROM source_imagery
关于database - 在PostGIS中转换地理类型,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6446742/