名称

ST_ClipByBox2D — 计算几何图形落在矩形内的部分。

概要

geometry ST_ClipByBox2D(geometry geom, box2d box);

描述

通过一个 2D 框快速且容错地裁剪几何图形,但结果可能无效。拓扑无效的输入几何图形不会导致抛出异常。不保证输出几何图形是有效的(特别是,可能会为多边形引入自相交)。

由 GEOS 模块执行。

可用性: 2.2.0

示例

-- Rely on implicit cast from geometry to box2d for the second parameter
SELECT ST_ClipByBox2D(geom, ST_MakeEnvelope(0,0,10,10)) FROM mytab;