Пример #1
0
Файл: gdal.go Проект: kikht/gdal
// 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
}
Пример #2
0
// Initialize RAT from color table
func (rat RasterAttributeTable) FromColorTable(ct ColorTable) error {
	return C.GDALRATInitializeFromColorTable(rat.cval, ct.cval).Err()
}