// Set default Raster Attribute Table func (rasterBand RasterBand) SetDefaultRAT(rat RasterAttributeTable) error { err := C.GDALSetDefaultRAT(rasterBand.cval, rat.cval) if err != 0 { return error(err) } return nil }
// Set default Raster Attribute Table func (rasterBand RasterBand) SetDefaultRAT(rat RasterAttributeTable) error { return C.GDALSetDefaultRAT(rasterBand.cval, rat.cval).Err() }