// Initialize RAT from color table func (rat RasterAttributeTable) FromColorTable(ct ColorTable) error { err := C.GDALRATInitializeFromColorTable(rat.cval, ct.cval) if err != 0 { return error(err) } return nil }
// Initialize RAT from color table func (rat RasterAttributeTable) FromColorTable(ct ColorTable) error { return C.GDALRATInitializeFromColorTable(rat.cval, ct.cval).Err() }