[GRASS-SVN] r46525 - grass/trunk/vector/v.in.lidar
svn_grass at osgeo.org
svn_grass at osgeo.org
Fri Jun 3 02:29:27 EDT 2011
Author: mmetz
Date: 2011-06-02 23:29:27 -0700 (Thu, 02 Jun 2011)
New Revision: 46525
Modified:
grass/trunk/vector/v.in.lidar/main.c
Log:
code clean up
Modified: grass/trunk/vector/v.in.lidar/main.c
===================================================================
--- grass/trunk/vector/v.in.lidar/main.c 2011-06-02 22:11:28 UTC (rev 46524)
+++ grass/trunk/vector/v.in.lidar/main.c 2011-06-03 06:29:27 UTC (rev 46525)
@@ -94,7 +94,7 @@
static struct class_table class_type[] = {
{5, "Synthetic"},
{6, "Key-point"},
- {7, "withheld"},
+ {7, "Withheld"},
{0, 0}
};
@@ -601,12 +601,6 @@
Vect_reset_line(Points);
Vect_reset_cats(Cats);
-
-#if 0
- x = LASPoint_GetX(LAS_point) * scale_x + offset_x;
- y = LASPoint_GetY(LAS_point) * scale_y + offset_y;
- z = LASPoint_GetZ(LAS_point) * scale_z + offset_z;
-#endif
x = LASPoint_GetX(LAS_point);
y = LASPoint_GetY(LAS_point);
More information about the grass-commit
mailing list