获取rastercatalog中的raster

方法一.
IRasterCatalog rasterCatalog= rasterWorkspaceEx.OpenRasterCatalog(RasterCatalogName)
ITable table = rasterCatalog as ITable;
ICursor cursor = table.search(null,false);
IRow row = cursor.NextRow();
While(row != null)
{
      IRasterCatalogItem rasterCatalogItem = row as IRasterCatalogItem;
      IRasterDataset rasterDataset = rasterCatalogItem.RasterDataset;
      row = cursor.NextRow();
}
原文地址:https://www.cnblogs.com/gisbase/p/1790244.html