Name

PostGIS_HasBBox — 如果此几何图形的BBox已缓存,则返回True,否则返回False。

Synopsis

boolean PostGIS_HasBBox(geometry geomA);

描述

如果缓存了此几何体的BBox,则返回True,否则返回False。使用 PostGIS_AddBBoxPostGIS_DropBBox 来控制缓存。

This method supports Circular Strings and Curves

示例

SELECT geom
FROM sometable WHERE PostGIS_HasBBox(geom) = false;

另请参阅

PostGIS_AddBBox, PostGIS_DropBBox