Is it possible to tile a raster but only export those tiles that actually contain data?
i have a DTM which when tiled produces many empty ascii grid files which i don't want.
ASCII Grid > Raster Tiler > RasterMinMaxExtractor > Tiled_X.asc
Is it possible to tile a raster but only export those tiles that actually contain data?
i have a DTM which when tiled produces many empty ascii grid files which i don't want.
ASCII Grid > Raster Tiler > RasterMinMaxExtractor > Tiled_X.asc
Hi
You can use the RasterBandMinMaxExtractor:
If _band{n}.min = _band{n}.max then that band could be considered empty.
David
Hi
You can use the RasterBandMinMaxExtractor:
If _band{n}.min = _band{n}.max then that band could be considered empty.
David
@david_r Thanks i was almost there had been playing with a tester.