[GRASS-SVN] r70662 - grass/trunk/lib/gis

svn_grass at osgeo.org svn_grass at osgeo.org
Wed Feb 22 08:49:15 PST 2017


Author: mmetz
Date: 2017-02-22 08:49:15 -0800 (Wed, 22 Feb 2017)
New Revision: 70662

Modified:
   grass/trunk/lib/gis/adj_cellhd.c
Log:
libgis, G_adjust_Cell_head(): make some messages important

Modified: grass/trunk/lib/gis/adj_cellhd.c
===================================================================
--- grass/trunk/lib/gis/adj_cellhd.c	2017-02-22 16:48:17 UTC (rev 70661)
+++ grass/trunk/lib/gis/adj_cellhd.c	2017-02-22 16:49:15 UTC (rev 70662)
@@ -370,7 +370,7 @@
     }
     if (cellhd->north > 90.0) {
 	if (diff <= 0.5 + llepsilon) {
-	    G_verbose_message(_("90 degree north is exceeded by %g cells"),
+	    G_important_message(_("90 degree north is exceeded by %g cells"),
 		      diff);
 	    
 	    if (diff < llepsilon && diff > fpepsilon) {
@@ -420,7 +420,7 @@
     }
     if (cellhd->south < -90.0) {
 	if (diff <= 0.5 + llepsilon) {
-	    G_verbose_message(_("90 degree south is exceeded by %g cells"),
+	    G_important_message(_("90 degree south is exceeded by %g cells"),
 		      diff);
 	    
 	    if (diff < llepsilon && diff > fpepsilon) {
@@ -484,7 +484,7 @@
     if (cellhd->east - cellhd->west > 360.0) {
 	diff = (cellhd->east - cellhd->west - 360.0) / cellhd->ew_res;
 	if (diff > fpepsilon)
-	    G_verbose_message(_("360 degree EW extent is exceeded by %g cells"),
+	    G_important_message(_("360 degree EW extent is exceeded by %g cells"),
 		      diff);
     }
     else if (cellhd->east - cellhd->west < 360.0) {



More information about the grass-commit mailing list