Name

ST_IsEmpty — Returns true if the raster is empty (width = 0 and height = 0). Otherwise, returns false.

Synopsis

boolean ST_IsEmpty(raster rast);

Descripción

Returns true if the raster is empty (width = 0 and height = 0). Otherwise, returns false.

Disponibilidad: 2.0.0

Ejemplos

SELECT ST_IsEmpty(ST_MakeEmptyRaster(100, 100, 0, 0, 0, 0, 0, 0))
f
SELECT ST_IsEmpty(ST_MakeEmptyRaster(0, 0, 0, 0, 0, 0, 0, 0))
t

Ver también

ST_HasNoBand