我的环境:具有PostGIS 2.5.2的PostgreSQL 11.4
CREATE TABLE m_polygon (id SERIAL PRIMARY KEY, bounds POLYGON);
INSERT INTO m_polygon(bounds) VALUES(
'(0.0, 0.0), (0.0, 10.0), (10.0, 0.0), (10.0, 10.0), (0,0)'
);
SELECT ST_WITHIN(m_polygon.bounds , m_polygon.bounds ) FROM m_polygon;
我收到上述SELECT语句的错误消息:
ERROR: function st_within(polygon, polygon) does not exist
HINT: No function matches the given name and argument types. You might
need to add explicit type casts
我在想错误的原因是:ST_WITHIN参数类型应该是GEOMETRY,但是我正在传递POLYGON。
但是,以下方法可行:
SELECT ST_WITHIN(ST_MakePoint(1,1), ST_MakePoint(1,1) ) ;
答案 0 :(得分:2)
POLYGON
是Postgres本机类型。 Geometry
是PostGIS中使用的类型。 ST_...
函数是Postgis函数。
请注意,您可以将PostGIS几何形状限制为特定的子类型(geometry(POLYGON)
)
如果您不想要PostGIS,则需要使用native geometry operators。
如果要使用空间数据,并且由于您已经拥有PostGIS,则最好切换到真实的几何图形:
CREATE TABLE m_polygon (id SERIAL PRIMARY KEY, bounds geometry(POLYGON));
INSERT INTO m_polygon(bounds) VALUES(
st_geomFromText('POLYGON((0.0 0.0, 0.0 10.0, 10.0 0.0, 10.0 10.0, 0 0))')
);
SELECT ST_WITHIN(m_polygon.bounds , m_polygon.bounds ) FROM m_polygon;