瀏覽代碼

Don't try to (un)compress GDAL-linked maps

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@49681 15284696-431f-4ddb-bdfa-cd5b030d7da7
Glynn Clements 13 年之前
父節點
當前提交
1060bf2cfd
共有 1 個文件被更改,包括 4 次插入0 次删除
  1. 4 0
      raster/r.compress/main.c

+ 4 - 0
raster/r.compress/main.c

@@ -113,6 +113,10 @@ static int process(char *name, int uncompress)
 		  name, rname, rmapset);
 	return 1;
     }
+    if (G_find_file2_misc("cell_misc", "gdal", name, G_mapset())) {
+	G_warning(_("[%s] is a GDAL-linked map - can't (un)compress"), name);
+	return 1;
+    }
 
     map_type = Rast_map_type(name, G_mapset());