[Liblas-commits] hg: suggest multiplying by 257, not 256
liblas-commits at liblas.org
liblas-commits at liblas.org
Thu Nov 11 16:14:09 EST 2010
changeset 1453239751b8 in /Volumes/Data/www/liblas.org/hg
details: http://hg.liblas.orghg?cmd=changeset;node=1453239751b8
summary: suggest multiplying by 257, not 256
diffstat:
apps/laskernel.cpp | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diffs (12 lines):
diff -r 656065985885 -r 1453239751b8 apps/laskernel.cpp
--- a/apps/laskernel.cpp Thu Nov 11 15:10:13 2010 -0600
+++ b/apps/laskernel.cpp Thu Nov 11 15:14:03 2010 -0600
@@ -290,7 +290,7 @@
("point-translate", po::value<std::string>(), "An expression to translate the X, Y, Z values of the point. For example, converting Z units that are in meters to feet: --point-translate \"x*1.0 y*1.0 z*3.2808399\"")
("color-source", po::value<std::string>(), "A string to a GDAL-openable raster data source. Use GDAL VRTs if you want to adjust the data source or set its coordinate system, etc. \n--color-source \"afile.tif\" ")
("color-source-bands", po::value< std::vector<boost::uint32_t> >()->multitoken(), "A list of three bands from the --color-source to assign to the R, G, B values for the point \n--color-source-bands 1 2 3")
- ("color-source-scale", po::value< boost::uint32_t >(), "A number used by --color-source to scale the input R, G, B values for the point. For example, to scale the 8 bit color data from an input raster to 16 bit, the 8 bit data should be multiplied by 256. \n--color-source-scale 256")
+ ("color-source-scale", po::value< boost::uint32_t >(), "A number used by --color-source to scale the input R, G, B values for the point. For example, to scale the 8 bit color data from an input raster to 16 bit, the 8 bit data should be multiplied by 257. \n--color-source-scale 256")
;
More information about the Liblas-commits
mailing list