|
@@ -467,7 +467,8 @@ int OUTGR()
|
|
|
if (Rast3d_close(cf1) == 0) {
|
|
|
sprintf(buff, "Error closing output file %s ", outz);
|
|
|
clean_fatal_error(buff);
|
|
|
- }
|
|
|
+ } else
|
|
|
+ G_message(_("3D raster map <%s> created"), outz);
|
|
|
}
|
|
|
|
|
|
/*** Write out the gradient results ***/
|
|
@@ -517,7 +518,8 @@ int OUTGR()
|
|
|
if (Rast3d_close(cf2) == 0) {
|
|
|
sprintf(buff, "Error closing output file %s ", gradient);
|
|
|
clean_fatal_error(buff);
|
|
|
- }
|
|
|
+ } else
|
|
|
+ G_message(_("3D raster map <%s> created"), gradient);
|
|
|
}
|
|
|
|
|
|
/*** Write out aspect1 results ***/
|
|
@@ -567,7 +569,8 @@ int OUTGR()
|
|
|
if (Rast3d_close(cf3) == 0) {
|
|
|
sprintf(buff, "Error closing output file %s ", aspect1);
|
|
|
clean_fatal_error(buff);
|
|
|
- }
|
|
|
+ } else
|
|
|
+ G_message(_("3D raster map <%s> created"), aspect1);
|
|
|
}
|
|
|
|
|
|
/*** Write out aspect2 results ***/
|
|
@@ -617,7 +620,8 @@ int OUTGR()
|
|
|
if (Rast3d_close(cf4) == 0) {
|
|
|
sprintf(buff, "Error closing output file %s ", aspect2);
|
|
|
clean_fatal_error(buff);
|
|
|
- }
|
|
|
+ } else
|
|
|
+ G_message(_("3D raster map <%s> created"), aspect2);
|
|
|
}
|
|
|
|
|
|
/*** Write out ncurv results ***/
|
|
@@ -667,7 +671,8 @@ int OUTGR()
|
|
|
if (Rast3d_close(cf5) == 0) {
|
|
|
sprintf(buff, "Error closing output file %s ", ncurv);
|
|
|
clean_fatal_error(buff);
|
|
|
- }
|
|
|
+ } else
|
|
|
+ G_message(_("3D raster map <%s> created"), ncurv);
|
|
|
}
|
|
|
|
|
|
/*** Write out gcurv results ***/
|
|
@@ -717,7 +722,8 @@ int OUTGR()
|
|
|
if (Rast3d_close(cf6) == 0) {
|
|
|
sprintf(buff, "Error closing output file %s ", gcurv);
|
|
|
clean_fatal_error(buff);
|
|
|
- }
|
|
|
+ } else
|
|
|
+ G_message(_("3D raster map <%s> created"), gcurv);
|
|
|
}
|
|
|
|
|
|
/*** Write mcurv results ***/
|
|
@@ -767,7 +773,8 @@ int OUTGR()
|
|
|
if (Rast3d_close(cf7) == 0) {
|
|
|
sprintf(buff, "Error closing output file %s ", mcurv);
|
|
|
clean_fatal_error(buff);
|
|
|
- }
|
|
|
+ } else
|
|
|
+ G_message(_("3D raster map <%s> created"), mcurv);
|
|
|
}
|
|
|
|
|
|
G_free(data);
|