[GRASS-SVN] r42119 - grass/branches/develbranch_6/raster/r.out.gdal
svn_grass at osgeo.org
svn_grass at osgeo.org
Wed May 5 09:22:33 EDT 2010
Author: mmetz
Date: 2010-05-05 09:22:33 -0400 (Wed, 05 May 2010)
New Revision: 42119
Modified:
grass/branches/develbranch_6/raster/r.out.gdal/export_band.c
grass/branches/develbranch_6/raster/r.out.gdal/main.c
Log:
human-readable numbers part2
Modified: grass/branches/develbranch_6/raster/r.out.gdal/export_band.c
===================================================================
--- grass/branches/develbranch_6/raster/r.out.gdal/export_band.c 2010-05-05 13:16:45 UTC (rev 42118)
+++ grass/branches/develbranch_6/raster/r.out.gdal/export_band.c 2010-05-05 13:22:33 UTC (rev 42119)
@@ -198,7 +198,7 @@
(int)nodataval, nodatakey);
else
G_important_message(_("Input raster map contains cells with NULL-value (no-data). "
- "The value %f will be used to represent no-data values in the input map. "
+ "The value %g will be used to represent no-data values in the input map. "
"You can specify a nodata value with the %s option."),
nodataval, nodatakey);
}
Modified: grass/branches/develbranch_6/raster/r.out.gdal/main.c
===================================================================
--- grass/branches/develbranch_6/raster/r.out.gdal/main.c 2010-05-05 13:16:45 UTC (rev 42118)
+++ grass/branches/develbranch_6/raster/r.out.gdal/main.c 2010-05-05 13:22:33 UTC (rev 42119)
@@ -629,7 +629,7 @@
G_warning(_("GDAL datatype: %s, range: %d - %d"),
GDALGetDataTypeName(datatype), TYPE_BYTE_MIN,
TYPE_BYTE_MAX);
- G_warning(_("Range to be exported: %f - %f"), min, max);
+ G_warning(_("Range to be exported: %g - %g"), min, max);
return 1;
}
else
@@ -641,7 +641,7 @@
G_warning(_("GDAL datatype: %s, range: %d - %d"),
GDALGetDataTypeName(datatype), TYPE_UINT16_MIN,
TYPE_UINT16_MAX);
- G_warning(_("Range to be exported: %f - %f"), min, max);
+ G_warning(_("Range to be exported: %g - %g"), min, max);
return 1;
}
else
@@ -654,7 +654,7 @@
G_warning(_("GDAL datatype: %s, range: %d - %d"),
GDALGetDataTypeName(datatype), TYPE_INT16_MIN,
TYPE_INT16_MAX);
- G_warning(_("Range to be exported: %f - %f"), min, max);
+ G_warning(_("Range to be exported: %g - %g"), min, max);
return 1;
}
else
@@ -667,7 +667,7 @@
G_warning(_("GDAL datatype: %s, range: %d - %d"),
GDALGetDataTypeName(datatype), TYPE_INT32_MIN,
TYPE_INT32_MAX);
- G_warning(_("Range to be exported: %f - %f"), min, max);
+ G_warning(_("Range to be exported: %g - %g"), min, max);
return 1;
}
else
@@ -679,7 +679,7 @@
G_warning(_("GDAL datatype: %s, range: %u - %u"),
GDALGetDataTypeName(datatype), TYPE_UINT32_MIN,
TYPE_UINT32_MAX);
- G_warning(_("Range to be exported: %f - %f"), min, max);
+ G_warning(_("Range to be exported: %g - %g"), min, max);
return 1;
}
else
More information about the grass-commit
mailing list