ST_IsEmpty — 如果栅格为空(宽度 = 0 且高度 = 0),则返回 true。否则,返回 false。
boolean ST_IsEmpty(
栅格 rast)
;
如果栅格为空(宽度 = 0 且高度 = 0),则返回 true。否则,返回 false。
可用性:2.0.0
SELECT ST_IsEmpty(ST_MakeEmptyRaster(100, 100, 0, 0, 0, 0, 0, 0)) st_isempty | -----------+ f | SELECT ST_IsEmpty(ST_MakeEmptyRaster(0, 0, 0, 0, 0, 0, 0, 0)) st_isempty | -----------+ t |