RS_BandIsNoData(raster: Raster, band: Integer = 1)
true
false
WITH rast_table AS (SELECT RS_AddBandFromArray(RS_MakeEmptyRaster(1, 2, 2, 0, 0, 1), ARRAY(10d, 10d, 10d, 10d), 1, 10d) as rast) SELECT RS_BandIsNoData(rast) from rast_table
Was this page helpful?