[GRASS-SVN] r74372 - grass-addons/grass7/raster/r.in.pdal

svn_grass at osgeo.org svn_grass at osgeo.org
Thu Apr 11 10:49:07 PDT 2019


Author: wenzeslaus
Date: 2019-04-11 10:49:07 -0700 (Thu, 11 Apr 2019)
New Revision: 74372

Modified:
   grass-addons/grass7/raster/r.in.pdal/r.in.pdal.py
Log:
r.in.pdal: improve the PDAL not installed error message

Modified: grass-addons/grass7/raster/r.in.pdal/r.in.pdal.py
===================================================================
--- grass-addons/grass7/raster/r.in.pdal/r.in.pdal.py	2019-04-11 16:36:32 UTC (rev 74371)
+++ grass-addons/grass7/raster/r.in.pdal/r.in.pdal.py	2019-04-11 17:49:07 UTC (rev 74372)
@@ -160,7 +160,8 @@
     """
     if not grass.find_program('pdal', 'info --boundary'):
         grass.fatal(_(
-             "pdal info --boundary is not in the path and executable"))
+             "The pdal executable is not available."
+             " Install PDAL or put the pdal executable on path."))
     command_fp = ['pdal', 'info', '--boundary', infile]
     tmp_fp = grass.tempfile()
     if tmp_fp is None:



More information about the grass-commit mailing list