[GRASS-SVN] r63380 - grass/trunk/vector/v.in.lidar
svn_grass at osgeo.org
svn_grass at osgeo.org
Fri Dec 5 09:58:45 PST 2014
Author: neteler
Date: 2014-12-05 09:58:45 -0800 (Fri, 05 Dec 2014)
New Revision: 63380
Modified:
grass/trunk/vector/v.in.lidar/main.c
Log:
v.in.lidar: messages clarified
Modified: grass/trunk/vector/v.in.lidar/main.c
===================================================================
--- grass/trunk/vector/v.in.lidar/main.c 2014-12-05 17:50:24 UTC (rev 63379)
+++ grass/trunk/vector/v.in.lidar/main.c 2014-12-05 17:58:45 UTC (rev 63380)
@@ -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).
@@ -635,7 +635,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;
@@ -809,9 +809,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