[Liblas-commits] hg: 3 new changesets

liblas-commits at liblas.org liblas-commits at liblas.org
Wed Dec 15 15:33:07 EST 2010


changeset 91e4ec401c2f in /Volumes/Data/www/liblas.org/hg
details: http://hg.liblas.orghg?cmd=changeset;node=91e4ec401c2f
summary: add las2txt-old to the distro build

changeset d553a311622b in /Volumes/Data/www/liblas.org/hg
details: http://hg.liblas.orghg?cmd=changeset;node=d553a311622b
summary: add usage to las2txt doc

changeset 5eb20754d00d in /Volumes/Data/www/liblas.org/hg
details: http://hg.liblas.orghg?cmd=changeset;node=5eb20754d00d
summary: add pointers to new release

diffstat:

 cmake/modules/BuildOSGeo4W.cmake |    1 +
 doc/download.txt                 |   43 +++++++---
 doc/utilities/las2txt.txt        |  154 ++++++++++++++++++++++++++++++++++++--
 3 files changed, 176 insertions(+), 22 deletions(-)

diffs (236 lines):

diff -r 9d959d9a2128 -r 5eb20754d00d cmake/modules/BuildOSGeo4W.cmake
--- a/cmake/modules/BuildOSGeo4W.cmake	Wed Dec 15 13:59:02 2010 -0600
+++ b/cmake/modules/BuildOSGeo4W.cmake	Wed Dec 15 14:32:57 2010 -0600
@@ -120,6 +120,7 @@
 copy_files(${LIBLAS_BUILD_OUTPUT_DIRECTORY}/las2ogr.exe ${OSGEO4W_BIN_DIR}/las2ogr.exe   )
 copy_files(${LIBLAS_BUILD_OUTPUT_DIRECTORY}/las2oci.exe ${OSGEO4W_BIN_DIR}/las2oci.exe  )
 copy_files(${LIBLAS_BUILD_OUTPUT_DIRECTORY}/las2txt.exe ${OSGEO4W_BIN_DIR}/las2txt.exe  )
+copy_files(${LIBLAS_BUILD_OUTPUT_DIRECTORY}/las2txt-old.exe ${OSGEO4W_BIN_DIR}/las2txt-old.exe   )
 copy_files(${LIBLAS_BUILD_OUTPUT_DIRECTORY}/lasblock.exe ${OSGEO4W_BIN_DIR}/lasblock.exe   )
 copy_files(${LIBLAS_BUILD_OUTPUT_DIRECTORY}/lasmerge.exe ${OSGEO4W_BIN_DIR}/lasmerge.exe  )
 copy_files(${LIBLAS_BUILD_OUTPUT_DIRECTORY}/txt2las.exe ${OSGEO4W_BIN_DIR}/txt2las.exe  )
diff -r 9d959d9a2128 -r 5eb20754d00d doc/download.txt
--- a/doc/download.txt	Wed Dec 15 13:59:02 2010 -0600
+++ b/doc/download.txt	Wed Dec 15 14:32:57 2010 -0600
@@ -8,6 +8,35 @@
 Current Release(s)
 ------------------------------------------------------------------------------
 
+* **2010-12-15** 
+
+  - `libLAS-1.6.0b3-src.tar.gz`_ 
+    `(md5) <http://download.osgeo.org/liblas/libLAS-1.6.0b3.tar.gz.md5>`__ 
+
+  - `libLAS-1.6.0b2-src.zip <http://download.osgeo.org/liblas/libLAS-1.6.0b3.zip>`_ 
+    `(md5) <http://download.osgeo.org/liblas/libLAS-1.6.0b3.zip.md5>`__
+
+  - See `OSGeo4W <http://trac.osgeo.org/osgeo4w>`__ for Windows release.
+  
+  - `Release Notes <http://trac.liblas.org/wiki/1.6.0b2>`__
+
+.. _`libLAS-1.6.0b2-src.tar.gz`: http://download.osgeo.org/liblas/libLAS-1.6.0b3.tar.gz
+
+.. seealso::
+    :ref:`source`
+
+.. seealso::
+    A `sample library <http://liblas.org/samples>`__ is also available to provide 
+    data to test your tools.
+
+.. seealso::
+    See :ref:`start` for information 
+    how to get started using the tools once they are installed.
+
+
+Past Releases
+------------------------------------------------------------------------------
+
 * **2010-11-05** 
 
   - `libLAS-1.6.0b2-src.tar.gz`_ 
@@ -22,21 +51,6 @@
 
 .. _`libLAS-1.6.0b2-src.tar.gz`: http://trac.liblas.org/raw-attachment/wiki/1.6.0b2/libLAS-1.6.0b2.tar.gz
 
-.. seealso::
-    :ref:`source`
-
-.. seealso::
-    A `sample library <http://liblas.org/samples>`__ is also available to provide 
-    data to test your tools.
-
-.. seealso::
-    See :ref:`start` for information 
-    how to get started using the tools once they are installed.
-
-
-Past Releases
-------------------------------------------------------------------------------
-
 * **2010-10-12** 
 
   - `libLAS-1.6.0b1-src.tar.gz`_ 
diff -r 9d959d9a2128 -r 5eb20754d00d doc/utilities/las2txt.txt
--- a/doc/utilities/las2txt.txt	Wed Dec 15 13:59:02 2010 -0600
+++ b/doc/utilities/las2txt.txt	Wed Dec 15 14:32:57 2010 -0600
@@ -25,14 +25,152 @@
 
 ::
 
-    C:\lastools\bin>las2txt -h
-    usage:
-    las2txt lidar.las
-    las2txt -parse xyziar lidar.las lidar.txt
-    las2txt -i lidar.las -o lidar.laz -parse xyz
-    las2txt -parse xyzt -verbose lidar.las
-    las2txt -parse xyz lidar.las.gz
-    las2txt -h
+    --------------------------------------------------------------------
+        las2txt (libLAS 1.6.0b3 with GeoTIFF 1.3.0 GDAL 1.8dev)
+    --------------------------------------------------------------------
+
+    las2txt options:
+      -h [ --help ]         produce help message
+      -i [ --input ] arg    input LAS file.
+      -o [ --output ] arg   output text file.  Use 'stdout' if you want it written 
+                            to the standard output stream
+      --parse arg           The '--parse txyz' flag specifies how to format each 
+                            each line of the ASCII file. For example, 'txyzia' 
+                            means that the first number of each line should be the 
+                            gpstime, the next three numbers should be the x, y, and
+                            z coordinate, the next number should be the intensity 
+                            and the next number should be the scan angle.
+                        
+                             The supported entries are:
+                               x - x coordinate as a double
+                               y - y coordinate as a double
+                               z - z coordinate as a double
+                               X - x coordinate as unscaled integer
+                               Y - y coordinate as unscaled integer
+                               Z - z coordinate as unscaled integer
+                               a - scan angle
+                               i - intensity
+                               n - number of returns for given pulse
+                               r - number of this return
+                               c - classification number
+                               C - classification name
+                               u - user data
+                               p - point source ID
+                               e - edge of flight line
+                               d - direction of scan flag
+                               R - red channel of RGB color
+                               G - green channel of RGB color
+                               B - blue channel of RGB color
+                               M - vertex index number
+                        
+      --precision arg       The number of decimal places to use for x,y,z,[t] 
+                            output.  
+                             --precision 7 7 3
+                             --precision 3 3 4 6
+                            If you don't specify any precision, las2txt uses the 
+                            implicit values defined by the header's scale value 
+                            (and a precision of 8 is used for any time values.)
+      --delimiter arg       The character to use for delimiting fields in the 
+                            output.
+                             --delimiter ","
+                             --delimiter ""
+                             --delimiter " "
+      --labels              Print row of header labels
+      --header              Print header information
+      -v [ --verbose ]      Verbose message output
+      --xml                 Output as XML -- no formatting given by --parse is 
+                            respected in this case.
+      --stdout              Output data to stdout
+
+    Filtering options:
+      -e [ --extent ] arg    Extent window that points must fall within to keep.
+                             Use a comma-separated or quoted, space-separated list,
+                             for example, 
+                              -e minx, miny, maxx, maxy
+                              or 
+                              -e minx, miny, minz, maxx, maxy, maxz
+                              -e "minx miny minz maxx maxy maxz"
+      --minx arg             Extent must be greater than or equal to minx to be 
+                             kept. 
+                              --minx 1234.0
+      --miny arg             Extent must be greater than or equal to miny to be 
+                             kept. 
+                              --miny 5678.0
+      --minz arg             Extent must be greater than or equal to minz to be 
+                             kept. If maxx and maxy are set but not minz *and maxz,
+                             all z values are kept. 
+                              --minz 0.0
+      --maxx arg             Extent must be less than or equal to maxx to be kept. 
+                              --maxx 1234.0
+      --maxy arg             Extent must be less than or equal to maxy to be kept. 
+                              --maxy 5678.0
+      --maxz arg             Extent must be less than or equal to maxz to be kept. 
+                             If maxx and maxy are set but not maxz *and minz, all z
+                             values are kept. 
+                              --maxz 10.0
+      -t [ --thin ] arg (=0) Simple decimation-style thinning.
+                             Thin the file by removing every t'th point from the 
+                             file.
+      --last-return-only     Keep last returns (cannot be used with 
+                             --first-return-only)
+      --first-return-only    Keep first returns (cannot be used with 
+                             --last-return-only
+      --keep-returns arg     A list of return numbers to keep in the output file: 
+                             --keep-returns 1 2 3
+      --drop-returns arg     Return numbers to drop.
+                             For example, --drop-returns 2 3 4 5
+      --valid_only           Keep only valid points
+      --keep-classes arg     A list of classifications to keep:
+                             --keep-classes 2 4 12
+                             --keep-classes 2
+      --drop-classes arg     A comma-separated list of classifications to drop:
+                             --drop-classes 1,7,8
+                             --drop-classes 2
+      --keep-intensity arg   Range in which to keep intensity.
+                             The following expression types are supported:  
+                             --keep-intensity 0-100 
+                             --keep-intensity <200 
+                             --keep-intensity >400 
+                             --keep-intensity >=200
+      --drop-intensity arg   Range in which to drop intensity.
+                             The following expression types are supported:  
+                             --drop-intensity <200 
+                             --drop-intensity >400 
+                             --drop-intensity >=200
+      --keep-time arg        Range in which to keep time.
+                             The following expression types are supported:  
+                             --keep-time 413665.2336-414092.8462 
+                             --keep-time <414094.8462 
+                             --keep-time >413665.2336 
+                             --keep-time >=413665.2336
+      --drop-time arg        Range in which to drop time.
+                             The following expression types are supported:  
+                             --drop-time <413666.2336 
+                             --drop-time >413665.2336 
+                             --drop-time >=413665.2336
+      --keep-scan-angle arg  Range in which to keep scan angle.
+                             The following expression types are supported:  
+                             --keep-scan-angle 0-100 
+                             --keep-scan-angle <100
+                             --keep-scan-angle <=100
+      --drop-scan-angle arg  Range in which to drop scan angle.
+                             The following expression types are supported:  
+                             --drop-scan-angle <30 
+                             --drop-scan-angle >100 
+                             --drop-scan-angle >=100
+      --keep-color arg       Range in which to keep colors.
+                             Define colors as two 3-tuples (R,G,B-R,G,B):  
+                             --keep-color '0,0,0-125,125,125'
+      --drop-color arg       Range in which to drop colors.
+                             Define colors as two 3-tuples (R,G,B-R,G,B):  
+                             --drop-color '255,255,255-65536,65536,65536'
+
+    For more information, see the full documentation for lasinfo at:
+     http://liblas.org/utilities/las2txt.html
+    ----------------------------------------------------------
+
+
+
 
 The '-parse txyz' flag specifies how to format each each line of the ASCII 
 file. For example, 'txyzia' means that the first number of each line should 


More information about the Liblas-commits mailing list