소스 검색

r.compress: print which compression method is actually applied

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@74005 15284696-431f-4ddb-bdfa-cd5b030d7da7
Markus Neteler 6 년 전
부모
커밋
f8e03e1bf0
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      raster/r.compress/main.c

+ 2 - 2
raster/r.compress/main.c

@@ -252,10 +252,10 @@ static int doit(char *name, int uncompress, RASTER_MAP_TYPE map_type)
 	    G_warning(_("[%s] already compressed"), name);
 	    return 1;
 	    */
-	    G_message(_("Re-compressing <%s>"), name);
+	    G_message(_("Re-compressing <%s> with method %s..."), name, G_compressor_name(cellhd.compressed));
 	}
 	else
-	    G_message(_("Compressing <%s>"), name);
+	    G_message(_("Compressing <%s> with method %s..."), name, G_compressor_name(cellhd.compressed));
     }
 
     Rast_set_window(&cellhd);