| 721 | } |
| 722 | |
| 723 | GDALError Raster::addMetadata(std::string name, |
| 724 | std::string value, |
| 725 | std::string domain) |
| 726 | { |
| 727 | CPLErr e = m_ds->SetMetadataItem(name.c_str(), |
| 728 | value.c_str(), |
| 729 | domain.c_str()); |
| 730 | return GDALError(e); |
| 731 | } |
| 732 | |
| 733 | void Raster::getBlockSize(int band, int &xSize, int &ySize) const |
| 734 | { |