[GRASS-SVN] r63381 - grass/branches/releasebranch_7_0/vector/v.in.lidar

svn_grass at osgeo.org svn_grass at osgeo.org
Fri Dec 5 09:58:54 PST 2014


Author: neteler
Date: 2014-12-05 09:58:54 -0800 (Fri, 05 Dec 2014)
New Revision: 63381

Modified:
   grass/branches/releasebranch_7_0/vector/v.in.lidar/main.c
Log:
v.in.lidar: messages clarified

Modified: grass/branches/releasebranch_7_0/vector/v.in.lidar/main.c
===================================================================
--- grass/branches/releasebranch_7_0/vector/v.in.lidar/main.c	2014-12-05 17:58:45 UTC (rev 63380)
+++ grass/branches/releasebranch_7_0/vector/v.in.lidar/main.c	2014-12-05 17:58:54 UTC (rev 63381)
@@ -8,7 +8,7 @@
  *
  * PURPOSE:      Import LiDAR LAS points
  *
- * COPYRIGHT:    (C) 2003 by the GRASS Development Team
+ * COPYRIGHT:    (C) 2011-2014 by the GRASS Development Team
  *
  *               This program is free software under the
  *               GNU General Public License (>=v2).
@@ -634,7 +634,7 @@
     Points = Vect_new_line_struct();
     Cats = Vect_new_cats_struct();
     
-    G_important_message(_("Importing %d points..."), n_features);
+    G_important_message(_("Scanning %d points..."), n_features);
     while ((LAS_point = LASReader_GetNextPoint(LAS_reader)) != NULL) {
 	double x, y, z;
 
@@ -808,9 +808,9 @@
     if (n_outside)
 	G_message(_("%d input points were outside of the selected area"), n_outside);
     if (n_filtered)
-	G_message(_("%d input points were filtered by return number"), n_filtered);
+	G_message(_("%d input points were filtered out by return number"), n_filtered);
     if (n_class_filtered)
-        G_message(_("%d input points were filtered by class number"), n_class_filtered);
+        G_message(_("%d input points were filtered out by class number"), n_class_filtered);
 
     /* -------------------------------------------------------------------- */
     /*      Extend current window based on dataset.                         */



More information about the grass-commit mailing list