浏览代码

v.in.lidar: messages clarified

git-svn-id: https://svn.osgeo.org/grass/grass/branches/releasebranch_7_0@63381 15284696-431f-4ddb-bdfa-cd5b030d7da7
Markus Neteler 10 年之前
父节点
当前提交
bcf48323fb
共有 1 个文件被更改,包括 4 次插入4 次删除
  1. 4 4
      vector/v.in.lidar/main.c

+ 4 - 4
vector/v.in.lidar/main.c

@@ -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 @@ int main(int argc, char *argv[])
     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 @@ int main(int argc, char *argv[])
     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.                         */