[GRASS-SVN] r54376 - grass/trunk/vector/v.to.rast

svn_grass at osgeo.org svn_grass at osgeo.org
Sun Dec 23 06:28:32 PST 2012


Author: martinl
Date: 2012-12-23 06:28:31 -0800 (Sun, 23 Dec 2012)
New Revision: 54376

Modified:
   grass/trunk/vector/v.to.rast/do_areas.c
   grass/trunk/vector/v.to.rast/do_lines.c
   grass/trunk/vector/v.to.rast/vect2rast.c
Log:
v.to.rast: progress message should be printed on verbosity level 1


Modified: grass/trunk/vector/v.to.rast/do_areas.c
===================================================================
--- grass/trunk/vector/v.to.rast/do_areas.c	2012-12-23 12:23:49 UTC (rev 54375)
+++ grass/trunk/vector/v.to.rast/do_areas.c	2012-12-23 14:28:31 UTC (rev 54376)
@@ -31,7 +31,7 @@
     if (nareas <= 0)
 	return 0;
 
-    G_message(_("Reading areas..."));
+    G_important_message(_("Reading areas..."));
     for (i = 0; i < nareas; i++) {
 	/* Note: in old version (grass5.0) there was a check here if the current area 
 	 *        is identical to previous one. I don't see any reason for this in topological vectors */

Modified: grass/trunk/vector/v.to.rast/do_lines.c
===================================================================
--- grass/trunk/vector/v.to.rast/do_lines.c	2012-12-23 12:23:49 UTC (rev 54375)
+++ grass/trunk/vector/v.to.rast/do_lines.c	2012-12-23 14:28:31 UTC (rev 54376)
@@ -33,7 +33,7 @@
     count = 0;
     *count_all = 0;
 
-    G_message(_("Reading features..."));
+    G_important_message(_("Reading features..."));
     for (index = 1; index <= nlines; index++) {
 	G_percent(index, nlines, 2);
 	type = Vect_read_line(Map, Points, Cats, index);

Modified: grass/trunk/vector/v.to.rast/vect2rast.c
===================================================================
--- grass/trunk/vector/v.to.rast/vect2rast.c	2012-12-23 12:23:49 UTC (rev 54375)
+++ grass/trunk/vector/v.to.rast/vect2rast.c	2012-12-23 14:28:31 UTC (rev 54376)
@@ -178,7 +178,7 @@
 	    }
 	}
 
-	G_message(_("Writing raster map..."));
+	G_important_message(_("Writing raster map..."));
 
 	stat = output_raster(fd);
     } while (stat == 0);



More information about the grass-commit mailing list